修改同步勾选第三方往来单位时候取消删除功能

featFunction
zhengmingliang 2 years ago
parent d931bb5cf6
commit dfa73e1e29

@ -952,6 +952,9 @@ export default {
},
created() {
this.relId = this.editQuery.rlId;
if(this.editQuery.isUseDy==1){
this.checked=true
}
this.findBasicProductSet();
},
components: {

@ -49,7 +49,7 @@
<el-table-column label="联系电话" prop="mobile" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" fixed="right" v-if="thirdSysDetail.fromType!=0">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)"
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)" :disabled="!delFalg"
>删除
</el-button>
</template>
@ -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();
},
};

Loading…
Cancel
Save