|
|
|
@ -86,6 +86,13 @@
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
:formatter="formatterThirdSys"
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="备注"
|
|
|
|
|
prop="remark"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="状态"
|
|
|
|
|
prop="status"
|
|
|
|
@ -151,15 +158,15 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {filterLog, deleteLog} from "../../api/thrsys/thrCorpsImport";
|
|
|
|
|
import {getBasicThirdSys, filterDetailByKey} from "../../api/basic/basicThirdSys";
|
|
|
|
|
import {downloadAll} from "../../api/thrsys/thrCorps";
|
|
|
|
|
import {selectIp} from "../../api/param/systemParamConfig";
|
|
|
|
|
import thrCorpsImportDetail from "./ThrCorpsImportDetail";
|
|
|
|
|
import thrCorpSelect from "./ThrCorpSelect";
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
import {filterLog, deleteLog} from "../../api/thrsys/thrCorpsImport";
|
|
|
|
|
import {getBasicThirdSys, filterDetailByKey} from "../../api/basic/basicThirdSys";
|
|
|
|
|
import {downloadAll} from "../../api/thrsys/thrCorps";
|
|
|
|
|
import {selectIp} from "../../api/param/systemParamConfig";
|
|
|
|
|
import thrCorpsImportDetail from "./ThrCorpsImportDetail";
|
|
|
|
|
import thrCorpSelect from "./ThrCorpSelect";
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
filterQuery: {
|
|
|
|
@ -174,7 +181,7 @@
|
|
|
|
|
thrCorpSelectVisible: false,
|
|
|
|
|
checked: false,
|
|
|
|
|
list: [],
|
|
|
|
|
fileList:[],
|
|
|
|
|
fileList: [],
|
|
|
|
|
detailList: [],
|
|
|
|
|
thirdSys: [],
|
|
|
|
|
thirdSysDetail: null,
|
|
|
|
@ -416,29 +423,29 @@
|
|
|
|
|
this.getBasicThirdSys();
|
|
|
|
|
// this.getList();
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style>
|
|
|
|
|
.itemTag {
|
|
|
|
|
.itemTag {
|
|
|
|
|
float: left;
|
|
|
|
|
text-align: left;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
width: 100px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
.text {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-family: "Microsoft YaHei";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-row {
|
|
|
|
|
.el-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-col {
|
|
|
|
|
.el-col {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|