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();
},
};