工单小程序2024-11-20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
604 B

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="工序卡1" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="">
  5. {{StepOne.operator}}
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. id: 0,
  14. StepOne: {},
  15. }
  16. },
  17. onLoad(arg) {
  18. this.id = arg.id
  19. console.log(arg);
  20. this.queryStepOne()
  21. },
  22. methods: {
  23. queryStepOne() {
  24. this.$api('queryStepOne', {
  25. templateId: this.id
  26. }, res => {
  27. if (res.code == 200) {
  28. this.StepOne = res.result.workorderGeneralStepone
  29. }
  30. })
  31. },
  32. }
  33. }
  34. </script>
  35. <style>
  36. </style>