From 9051500acc8f29bf7854176c61be332a02a525eb Mon Sep 17 00:00:00 2001 From: baoyu <102349094+Bytq@users.noreply.github.com> Date: Fri, 7 Jun 2024 18:33:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E6=9C=AC=E5=9C=B0?= =?UTF-8?q?=E5=B7=A5=E5=85=B7-=E6=A0=87=E5=87=86=E6=8B=86=E5=88=86-?= =?UTF-8?q?=E5=AF=BC=E5=85=A5=E6=8B=86=E5=88=86=E7=BB=93=E6=9E=9C-?= =?UTF-8?q?=E6=A0=87=E5=87=86=E7=8A=B6=E6=80=81=20=E4=B8=8B=E6=8B=89?= =?UTF-8?q?=E6=A1=86=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/localTool/standAutoSplit/index.vue | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/pages/localTool/standAutoSplit/index.vue b/src/pages/localTool/standAutoSplit/index.vue index f83d87da2..ca1373305 100644 --- a/src/pages/localTool/standAutoSplit/index.vue +++ b/src/pages/localTool/standAutoSplit/index.vue @@ -1681,7 +1681,25 @@ export default { _this: this }, res => { if (res.ok) { - this.standFileClassifyOptions = res.data + let standFileClassifyOptions = res.data + this.standFileClassifyOptions.map(item => { + switch (item) { + case item.sarType === 'STAND' || item.sarType === 'INLAND_STAND': + item.label += '(国内标准)' + break + case item.sarType === 'FOREIGN_STAND': + item.label += '(海外标准)' + break + case item.sarType === 'FOREIGN_LAWS': + item.label += '(国外政策)' + break + case item.sarType === 'BUSS': + item.label += '(企业标准)' + break + } + }) + console.log(standFileClassifyOptions) + this.standFileClassifyOptions = standFileClassifyOptions } }, e => {}) },