diff --git a/src/views/basic/basicProductEdit.vue b/src/views/basic/basicProductEdit.vue
index 20b23d2..acad32c 100644
--- a/src/views/basic/basicProductEdit.vue
+++ b/src/views/basic/basicProductEdit.vue
@@ -952,6 +952,9 @@ export default {
},
created() {
this.relId = this.editQuery.rlId;
+ if(this.editQuery.isUseDy==1){
+ this.checked=true
+ }
this.findBasicProductSet();
},
components: {
diff --git a/src/views/thrsys/ThrCorps.vue b/src/views/thrsys/ThrCorps.vue
index 2c46de8..9098fff 100644
--- a/src/views/thrsys/ThrCorps.vue
+++ b/src/views/thrsys/ThrCorps.vue
@@ -49,7 +49,7 @@
- 删除
@@ -73,6 +73,7 @@
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() {
@@ -89,6 +90,7 @@
thirdSys: [],
thirdSysDetail: null,
uploadFileUrl: null,
+ delFalg:true,
fileList: [],
uploadData: {
thirdSys: "thirdId",
@@ -248,6 +250,15 @@
});
},
+ 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
@@ -266,7 +277,9 @@
mounted() {
},
created() {
+ this.getConFig();
this.getBasicThirdSys();
+
},
};