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