From 7bbc86dabbfdc4863ba322d883026c2fafce55c1 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Tue, 17 Jun 2025 15:14:45 +0800 Subject: [PATCH] =?UTF-8?q?2025-06-17=20=E6=B5=81=E7=A8=8B=E5=B9=B2?= =?UTF-8?q?=E9=A2=84=E5=92=8C=E6=8A=80=E6=9C=AF=E5=8F=82=E6=95=B0=E5=8D=A1?= =?UTF-8?q?=E6=8F=90=E4=BA=A4=E5=A2=9E=E5=8A=A0=E8=BD=AC=E5=9C=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../processManagement/processFlowInfo.vue | 15 ++++- .../com_bm_bom.vue | 55 +++++++++++++------ .../com_bm_customerInformation.vue | 21 +++++-- .../com_bm_demoSlot.vue | 17 +++++- .../com_bm_routing.vue | 15 +++-- .../com_tsd_basicInformation.vue | 17 ++++-- 6 files changed, 104 insertions(+), 36 deletions(-) diff --git a/src/views/modules/processManagement/processFlowInfo.vue b/src/views/modules/processManagement/processFlowInfo.vue index a97a0b6..bd4c969 100644 --- a/src/views/modules/processManagement/processFlowInfo.vue +++ b/src/views/modules/processManagement/processFlowInfo.vue @@ -57,8 +57,8 @@ class="el-button el-button--primary el-button--medium"> {{ "导出" }} - 节点更新 - 流程干预 + 节点更新 + 流程干预 @@ -390,6 +390,7 @@ export default { columnWidth: 100 }, ], + processLoading: false } }, @@ -480,10 +481,12 @@ export default { userId: this.$store.state.user.name, informationList: this.processSelections } + this.processLoading = true processIntervention(tempData).then(({data}) => { if (data && data.code === 0) { this.getDataList() this.processSelections = [] + this.processLoading = false this.$message({ message: '操作成功', type: 'success', @@ -491,10 +494,13 @@ export default { onClose: () => {} }) } else { + this.processLoading = false this.$alert(data.msg, '错误', { confirmButtonText: '确定' }) } + }).catch(()=>{ + this.processLoading = false }) }) }, @@ -522,10 +528,12 @@ export default { userId: this.$store.state.user.name, informationList: this.processSelections } + this.processLoading = true processIntervention(tempData).then(({data}) => { if (data && data.code === 0) { this.getDataList() this.processSelections = [] + this.processLoading = false this.$message({ message: '操作成功', type: 'success', @@ -533,10 +541,13 @@ export default { onClose: () => {} }) } else { + this.processLoading = false this.$alert(data.msg, '错误', { confirmButtonText: '确定' }) } + }).catch(()=>{ + this.processLoading = false }) }) }, diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue index 890928f..c9d5f80 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_bom.vue @@ -1,6 +1,6 @@