From d5a1a4409643c894c22eea9fb879e2bede868dd4 Mon Sep 17 00:00:00 2001
From: fengyuan_yang <1976974459@qq.com>
Date: Fri, 27 Feb 2026 15:57:11 +0800
Subject: [PATCH] =?UTF-8?q?2026-02-27=20=E8=AF=A2=E4=BB=B7=E7=94=B3?=
=?UTF-8?q?=E8=AF=B7=E3=80=81=E6=B5=8B=E8=AF=95=E7=94=B3=E8=AF=B7=E3=80=81?=
=?UTF-8?q?=E6=89=93=E6=A0=B7=E7=94=B3=E8=AF=B7=E4=BB=A5=E5=8F=8A=E5=88=80?=
=?UTF-8?q?=E5=85=B7=E7=94=B3=E8=AF=B7=E8=AE=B0=E5=BD=95OA=E6=B5=81?=
=?UTF-8?q?=E7=A8=8B=E6=94=BE=E9=87=8D=E5=A4=8D=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/modules/proofing/requestForProofing.vue | 10 +++++++---
src/views/modules/quotation/requestForQuote.vue | 10 +++++++---
src/views/modules/test/requestForTest.vue | 10 +++++++---
src/views/modules/tooling/searchToolApply.vue | 10 +++++++---
4 files changed, 28 insertions(+), 12 deletions(-)
diff --git a/src/views/modules/proofing/requestForProofing.vue b/src/views/modules/proofing/requestForProofing.vue
index 97a797d..f0b95d2 100644
--- a/src/views/modules/proofing/requestForProofing.vue
+++ b/src/views/modules/proofing/requestForProofing.vue
@@ -396,7 +396,7 @@
关闭
- 同意
+ 同意
@@ -826,8 +826,8 @@
- 确定
- 取消
+ 确定
+ 取消
@@ -2273,6 +2273,7 @@ export default {
],
rejectVisible: false,
rejectOpinion: '',
+ submitLoading: false,
detailVisible: false,
no: 1,
size: 20,
@@ -3823,6 +3824,7 @@ export default {
userName: this.$store.state.user.name,
menuId: this.$route.meta.menuId,
}
+ this.submitLoading = true
submitChange(tempData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
@@ -3835,6 +3837,8 @@ export default {
confirmButtonText: '确定'
})
}
+ }).finally(() => {
+ this.submitLoading = false
})
},
diff --git a/src/views/modules/quotation/requestForQuote.vue b/src/views/modules/quotation/requestForQuote.vue
index f766663..aa0ead1 100644
--- a/src/views/modules/quotation/requestForQuote.vue
+++ b/src/views/modules/quotation/requestForQuote.vue
@@ -398,7 +398,7 @@
关闭
- 同意
+ 同意
@@ -586,8 +586,8 @@
- 确定
- 取消
+ 确定
+ 取消
@@ -2101,6 +2101,7 @@ export default {
],
rejectVisible: false,
rejectOpinion: '',
+ submitLoading: false,
detailVisible: false,
no: 1,
size: 20,
@@ -3531,6 +3532,7 @@ export default {
}
this.modalData.userName = this.$store.state.user.name
this.modalData.menuId = this.$route.meta.menuId
+ this.submitLoading = true
submitChange(this.modalData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
@@ -3543,6 +3545,8 @@ export default {
confirmButtonText: '确定'
})
}
+ }).finally(() => {
+ this.submitLoading = false
})
},
diff --git a/src/views/modules/test/requestForTest.vue b/src/views/modules/test/requestForTest.vue
index be17c60..f073b3a 100644
--- a/src/views/modules/test/requestForTest.vue
+++ b/src/views/modules/test/requestForTest.vue
@@ -426,7 +426,7 @@
关闭
- 同意
+ 同意
@@ -932,8 +932,8 @@
- 确定
- 取消
+ 确定
+ 取消
@@ -2423,6 +2423,7 @@ export default {
],
rejectVisible: false,
rejectOpinion: "",
+ submitLoading: false,
partPageNo: 1,
partPageSize: 20,
partPageTotal: 0,
@@ -3874,6 +3875,7 @@ export default {
}
this.modalData.userName = this.$store.state.user.name
this.modalData.menuId = this.$route.meta.menuId
+ this.submitLoading = true
submitChange(this.modalData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
@@ -3886,6 +3888,8 @@ export default {
confirmButtonText: '确定'
})
}
+ }).finally(() => {
+ this.submitLoading = false
})
},
diff --git a/src/views/modules/tooling/searchToolApply.vue b/src/views/modules/tooling/searchToolApply.vue
index c842ed4..4a1c064 100644
--- a/src/views/modules/tooling/searchToolApply.vue
+++ b/src/views/modules/tooling/searchToolApply.vue
@@ -621,7 +621,7 @@
{{ '取消' }}
- 同意
+ 同意
@@ -688,8 +688,8 @@
- 确定
- 取消
+ 确定
+ 取消
@@ -2075,6 +2075,7 @@ export default {
],
approvalList: [],
rejectOpinion: '',
+ submitLoading: false,
submitModalFlag: false,
processField: '',
sp: this.$store.state.user.name,
@@ -2895,6 +2896,7 @@ export default {
this.dataForm.userName = this.$store.state.user.name
this.dataForm.menuId = this.$route.meta.menuId
this.dataForm.detailList = this.toolData
+ this.submitLoading = true
submitChange(this.dataForm).then(({data}) => {
if (data && data.code === 0) {
this.saveHeaderMessage2()
@@ -2921,6 +2923,8 @@ export default {
confirmButtonText: '确定'
})
}
+ }).finally(() => {
+ this.submitLoading = false
})
},