From 0ba48acf41de849f004171046eb5927325775230 Mon Sep 17 00:00:00 2001
From: 快乐的昕的电脑 <快乐的昕的电脑@DESKTOP-C2BQPQU>
Date: 星期一, 20 十月 2025 16:42:18 +0800
Subject: [PATCH] 当outSum === "1"允许继续后续逻辑
---
components/mold.vue | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/components/mold.vue b/components/mold.vue
index b1139c9..80e9cf3 100644
--- a/components/mold.vue
+++ b/components/mold.vue
@@ -279,10 +279,11 @@
title: res.data.outMsg || '',
icon: 'error'
});
- return;
- }
- if (res.status === 0) {
- await this.fetchFormData();
+ if (res.data.outSum === "1") {
+ // 鍏佽缁х画鍚庣画閫昏緫
+ } else {
+ return;
+ }
}
if (res.status === 0) {
await this.fetchFormData();
@@ -326,7 +327,11 @@
title: res.data.outMsg || '',
icon: 'error'
});
- return;
+ if (res.data.outSum === "1") {
+ // 鍏佽缁х画鍚庣画閫昏緫
+ } else {
+ return;
+ }
}
if (res.status === 0) {
await this.fetchFormData();
--
Gitblit v1.9.3