From ded59b7414ae4b3181c212c069cd9b49d42cdaec Mon Sep 17 00:00:00 2001 From: zhangyichen <5277314+zacty@user.noreply.gitee.com> Date: Wed, 27 Apr 2022 15:56:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2052682=20=E4=BC=81?= =?UTF-8?q?=E6=A0=87=E7=BC=96=E8=BE=91=20=E9=80=89=E6=8B=A9=E9=83=A8?= =?UTF-8?q?=E9=97=A8=E6=97=B6=20=E5=87=BA=E7=8E=B0=E4=BA=86=E8=8B=B1?= =?UTF-8?q?=E6=96=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/EnterpriseStandardDatabase.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue index e4a63f07e..110e4db60 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue @@ -5132,6 +5132,15 @@ export default { } }, watch: { + 'sarBussionessStandEO.QCDW'(val) { + let arr = val.split(',') + arr.forEach((item, index) => { + if (item === undefined || item === 'undefined') { + arr.splice(index, 1) + } + }) + return arr.toString() + }, filterText(val) { this.$refs.tree.filter(val); },