From 7033fa158e4f62fbb756344f6c359c93750e7a34 Mon Sep 17 00:00:00 2001 From: fujunling <2984387807@qq.com> Date: 星期五, 07 七月 2023 10:51:36 +0800 Subject: [PATCH] 批量带入 --- Source/UBCS-WEB/src/components/BatchImport/ShowImportData.vue | 35 +++++++++++++++++++++-------------- 1 files changed, 21 insertions(+), 14 deletions(-) diff --git a/Source/UBCS-WEB/src/components/BatchImport/ShowImportData.vue b/Source/UBCS-WEB/src/components/BatchImport/ShowImportData.vue index c25342c..b4ebd93 100644 --- a/Source/UBCS-WEB/src/components/BatchImport/ShowImportData.vue +++ b/Source/UBCS-WEB/src/components/BatchImport/ShowImportData.vue @@ -164,8 +164,8 @@ <script> import { - getHistorySuccessTable, - getHistoryResembleTable, + getSuccessTable, + getResembleTable, getFormTemplate, getCurretnSelectedRowResemble, submitHistoryimport, @@ -220,7 +220,7 @@ return { isExpand: true, filterText: "", - leftWidth: "200", + leftWidth: 200, templateOid: null, tab1Name: "鐩镐技椤�", tab2Name: "姝g‘鏁版嵁", @@ -249,9 +249,9 @@ }, hideTree() { if (this.isExpand) { - this.leftWidth = "50"; + this.leftWidth = 50; } else { - this.leftWidth = "200"; + this.leftWidth = 200; } this.isExpand = !this.isExpand; }, @@ -260,17 +260,18 @@ this.localCodeClassifyOid = data.codeclassifyoid; this.cloNamesList = data.cloNamesList; this.templateOid = data.oid; - getHistorySuccessTable({ - codeClassifyOid: this.templateOid, - redisOid: this.redisOid + "-ok", - }).then((res) => { - this.tab2Table = res.data.data; - }); - getHistoryResembleTable({ + getResembleTable({ codeClassifyOid: this.templateOid, redisOid: this.redisOid + "-resemble", }).then((res) => { this.tab1Table = res.data.data; + }); + // 鑾峰彇姝g‘鏁版嵁 + getSuccessTable({ + codeClassifyOid: this.templateOid, + redisOid: this.redisOid + "-ok", + }).then((res) => { + this.tab2Table = res.data.data; }); getFormTemplate({ templateOid: data.oid, @@ -332,9 +333,15 @@ immediate: true, deep: true, handler(arr) { - if (arr.length > 0 && this.type === 'batchImportApply') { + if (arr.length > 0 ) { this.treeNodeClick(arr[0]) - this.leftWidth = 0 + if (this.type === 'batchImportApply') { + this.tab1Name = '鏈夌浉浼奸」鎴栭敊璇暟鎹�' + this.tab2Name = '姝g‘鏁版嵁' + this.leftWidth = 0 + } else { + this.leftWidth = 200 + } } } } -- Gitblit v1.9.3