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

44 lines
533 B

<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>