Browse Source

feat: update 齐套检查

master
TengXF 4 months ago
parent
commit
0e2b3d400a
  1. 9
      src/pages/mes/workScheduling/inspectionItems.vue

9
src/pages/mes/workScheduling/inspectionItems.vue

@ -188,13 +188,15 @@ onLoad((option) => {
completeInspectStatus.value = false completeInspectStatus.value = false
} }
} }
// //
workSchedulingListApi.getCompleteInspectionMark("complete_inspect").then((res) => { workSchedulingListApi.getCompleteInspectionMark("complete_inspect").then((res) => {
quaifyFormNo.value = res.data.remark quaifyFormNo.value = res.data.remark
getList()
console.log("11111",res.data)
}).catch(() => { }).catch(() => {
proxy.$modal.closeLoading() proxy.$modal.closeLoading()
}) })
}) })
// //
@ -217,13 +219,16 @@ onLoad((option) => {
// } // }
onShow(() => { onShow(() => {
})
function getList(){
list.value = [] list.value = []
workSchedulingListApi.getQualityformInfo(quaifyFormNo.value).then((res) => { workSchedulingListApi.getQualityformInfo(quaifyFormNo.value).then((res) => {
list.value = list.value.concat(res.data.itemCode.split(',')) list.value = list.value.concat(res.data.itemCode.split(','))
}).catch(() => { }).catch(() => {
proxy.$modal.closeLoading() proxy.$modal.closeLoading()
}) })
}) }
</script> </script>

Loading…
Cancel
Save