From fab75ef79a77525e1f0732e3226022a38da755ed Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期五, 10 十一月 2023 17:24:39 +0800
Subject: [PATCH] 11
---
src/views/project/fundcheck/expertFeeCheck/index.vue | 15 +++++++++++++--
1 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/src/views/project/fundcheck/expertFeeCheck/index.vue b/src/views/project/fundcheck/expertFeeCheck/index.vue
index c1215b4..db33367 100644
--- a/src/views/project/fundcheck/expertFeeCheck/index.vue
+++ b/src/views/project/fundcheck/expertFeeCheck/index.vue
@@ -1316,9 +1316,20 @@
this.ids.forEach(item => {
if (xuanzlist.includes(item)) {
} else {
+ if (this.overallids.length == 1) {
+ this.overallids = [];
+ } else {
+ this.overallids.splice(this.overallids.indexOf(item), 1);
+ }
+ if (this.overallidsvalue.length == 1) {
+ this.overallidsvalue = [];
+ } else {
+ this.overallidsvalue.splice(
+ this.overallidsvalue.indexOf(item),
+ 1
+ );
+ }
this.ids.splice(this.ids.indexOf(item), 1);
- this.overallids.splice(this.overallids.indexOf(item), 1);
- this.overallidsvalue.splice(this.overallidsvalue.indexOf(item), 1);
}
});
}
--
Gitblit v1.9.3