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

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