|
|
@ -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 {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() {
|
|
|
@ -89,6 +90,7 @@
|
|
|
|
thirdSys: [],
|
|
|
|
thirdSys: [],
|
|
|
|
thirdSysDetail: null,
|
|
|
|
thirdSysDetail: null,
|
|
|
|
uploadFileUrl: null,
|
|
|
|
uploadFileUrl: null,
|
|
|
|
|
|
|
|
delFalg:true,
|
|
|
|
fileList: [],
|
|
|
|
fileList: [],
|
|
|
|
uploadData: {
|
|
|
|
uploadData: {
|
|
|
|
thirdSys: "thirdId",
|
|
|
|
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() {
|
|
|
|
downloadDatas() {
|
|
|
|
let query = {
|
|
|
|
let query = {
|
|
|
|
thirdSysFk: this.filterQuery.thirdSys
|
|
|
|
thirdSysFk: this.filterQuery.thirdSys
|
|
|
@ -266,7 +277,9 @@
|
|
|
|
mounted() {
|
|
|
|
mounted() {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
|
|
|
|
this.getConFig();
|
|
|
|
this.getBasicThirdSys();
|
|
|
|
this.getBasicThirdSys();
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|