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

purchase^2
zhengmingliang 2 years ago
parent 1758480b35
commit bd20bdff93

@ -393,6 +393,7 @@ export default {
key: query, key: query,
onlyMain: true, onlyMain: true,
} }
getOriginBusType(tQuery) getOriginBusType(tQuery)
.then((response) => { .then((response) => {
this.originTypes = response.data.list || []; this.originTypes = response.data.list || [];

@ -49,7 +49,7 @@
<el-table-column label="联系电话" prop="mobile" show-overflow-tooltip></el-table-column> <el-table-column label="联系电话" prop="mobile" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" fixed="right" v-if="thirdSysDetail.fromType!=0"> <el-table-column label="操作" fixed="right" v-if="thirdSysDetail.fromType!=0">
<template slot-scope="scope"> <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> </el-button>
</template> </template>
@ -73,6 +73,7 @@ import {
import {getBasicThirdSys, filterDetailByKey} from "../../api/basic/basicThirdSys"; import {getBasicThirdSys, filterDetailByKey} from "../../api/basic/basicThirdSys";
import {ucloudUnit} from "../../api/basic/basicUnitMaintain"; import {ucloudUnit} from "../../api/basic/basicUnitMaintain";
import {selectIp} from "../../api/param/systemParamConfig"; import {selectIp} from "../../api/param/systemParamConfig";
import {findConfig} from "../../api/thrsys/spsSyncStatus";
export default { export default {
data() { data() {
@ -88,6 +89,7 @@ export default {
list: [], list: [],
thirdSys: [], thirdSys: [],
thirdSysDetail: null, thirdSysDetail: null,
delFalg:true,
uploadFileUrl: null, uploadFileUrl: null,
fileList: [], fileList: [],
uploadData: { 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() { downloadDatas() {
let query = { let query = {
thirdSysFk: this.filterQuery.thirdSys thirdSysFk: this.filterQuery.thirdSys
@ -270,6 +281,7 @@ export default {
mounted() { mounted() {
}, },
created() { created() {
this.getConFig();
this.getBasicThirdSys(); this.getBasicThirdSys();
}, },
}; };

Loading…
Cancel
Save