工单小程序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.

42 lines
530 B

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