From 39d909d61970dbb1e676efceeba8757ab5aa92a5 Mon Sep 17 00:00:00 2001 From: hanshaozhuang Date: Wed, 20 Jul 2022 14:17:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2056660=20=E6=9C=AC?= =?UTF-8?q?=E5=9C=B0=E5=B7=A5=E5=85=B7-=E6=A0=87=E5=87=86=E6=8B=86?= =?UTF-8?q?=E5=88=86=EF=BC=8C=E6=96=87=E6=9C=AC=E7=8A=B6=E6=80=81=E7=9A=84?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E9=80=89=E9=A1=B9=E6=9C=89=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/localTool/standAutoSplit/index.vue | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/pages/localTool/standAutoSplit/index.vue b/src/pages/localTool/standAutoSplit/index.vue index 8381243f2..989497922 100644 --- a/src/pages/localTool/standAutoSplit/index.vue +++ b/src/pages/localTool/standAutoSplit/index.vue @@ -1518,15 +1518,22 @@ export default { }) }, getFileSel () { - this.$http.get('lawss/sarStandAttrDetails/getFileFieldForSel1', {}, { + this.$http.get('sys/dictype/getDicTypeListCode', {}, { _this: this }, res => { if (res.ok) { const standFileClassifyOptions = [] - res.data.map(item => { - if (item.label !== '相关资料') { - standFileClassifyOptions.push(item) - } + res.data.lawsTextState.map(item => { + item.label += '(政策)' + standFileClassifyOptions.push(item) + }) + res.data.TEXTSTATUSBUSS.map(item => { + item.label += '(企标)' + standFileClassifyOptions.push(item) + }) + res.data.WBZTCLASS.map(item => { + item.label += '(国内外)' + standFileClassifyOptions.push(item) }) this.standFileClassifyOptions = standFileClassifyOptions }