|
|
- <template>
- <view>
- <navbar
- title="工序卡3"
- leftClick
-
- @leftClick="$utils.navigateBack"/>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
- StepThree :{}
- }
- },
- onLoad(arg) {
- this.id = arg.id
- console.log(arg);
- this.queryStepThree()
- },
- methods: {
- queryStepThree() {
- this.$api('queryStepThree', {
- templateId: this.id
- }, res => {
-
- if (res.code == 200) {
- this.StepThree = res.result
-
-
- }
- })
- },
- }
- }
- </script>
-
- <style>
-
- </style>
|