From 0e2b3d400a9f7600faa65644ab576ddef7855180 Mon Sep 17 00:00:00 2001 From: TengXF <302828528@qq.com> Date: Fri, 24 May 2024 09:16:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20update=20=E9=BD=90=E5=A5=97=E6=A3=80?= =?UTF-8?q?=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/mes/workScheduling/inspectionItems.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/pages/mes/workScheduling/inspectionItems.vue b/src/pages/mes/workScheduling/inspectionItems.vue index 81a524f..00b5241 100644 --- a/src/pages/mes/workScheduling/inspectionItems.vue +++ b/src/pages/mes/workScheduling/inspectionItems.vue @@ -188,13 +188,15 @@ onLoad((option) => { completeInspectStatus.value = false } } - //获取质检模板单号 workSchedulingListApi.getCompleteInspectionMark("complete_inspect").then((res) => { quaifyFormNo.value = res.data.remark + getList() + console.log("11111",res.data) }).catch(() => { proxy.$modal.closeLoading() }) + }) //刷新页面 @@ -217,13 +219,16 @@ onLoad((option) => { // } onShow(() => { + +}) +function getList(){ list.value = [] workSchedulingListApi.getQualityformInfo(quaifyFormNo.value).then((res) => { list.value = list.value.concat(res.data.itemCode.split(',')) }).catch(() => { proxy.$modal.closeLoading() }) -}) +}