From bd20bdff93e34d5a6fefd2b367948a3eb45b4c87 Mon Sep 17 00:00:00 2001 From: zhengmingliang Date: Tue, 1 Nov 2022 17:15:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=90=8C=E6=AD=A5=E5=8B=BE?= =?UTF-8?q?=E9=80=89=E7=AC=AC=E4=B8=89=E6=96=B9=E5=BE=80=E6=9D=A5=E5=8D=95?= =?UTF-8?q?=E4=BD=8D=E6=97=B6=E5=80=99=E5=8F=96=E6=B6=88=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/BussinessTypeLoclModify.vue | 1 + src/views/thrsys/ThrCorps.vue | 14 +++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/views/basic/BussinessTypeLoclModify.vue b/src/views/basic/BussinessTypeLoclModify.vue index 9ed4991..1c2a262 100644 --- a/src/views/basic/BussinessTypeLoclModify.vue +++ b/src/views/basic/BussinessTypeLoclModify.vue @@ -393,6 +393,7 @@ export default { key: query, onlyMain: true, } + getOriginBusType(tQuery) .then((response) => { this.originTypes = response.data.list || []; diff --git a/src/views/thrsys/ThrCorps.vue b/src/views/thrsys/ThrCorps.vue index a17f2d9..926f1f8 100644 --- a/src/views/thrsys/ThrCorps.vue +++ b/src/views/thrsys/ThrCorps.vue @@ -49,7 +49,7 @@ @@ -73,6 +73,7 @@ import { import {getBasicThirdSys, filterDetailByKey} from "../../api/basic/basicThirdSys"; import {ucloudUnit} from "../../api/basic/basicUnitMaintain"; import {selectIp} from "../../api/param/systemParamConfig"; +import {findConfig} from "../../api/thrsys/spsSyncStatus"; export default { data() { @@ -88,6 +89,7 @@ export default { list: [], thirdSys: [], thirdSysDetail: null, + delFalg:true, uploadFileUrl: null, fileList: [], uploadData: { @@ -252,6 +254,15 @@ export default { }); }, + getConFig(){ + findConfig().then((response) =>{ + if (response.code == 20000) { + this.delFalg=response.data.basicThirdCorp; + } else { + this.$message.error(response.message); + } + }); + }, downloadDatas() { let query = { thirdSysFk: this.filterQuery.thirdSys @@ -270,6 +281,7 @@ export default { mounted() { }, created() { + this.getConFig(); this.getBasicThirdSys(); }, };