|
|
|
@ -36,17 +36,17 @@
|
|
|
|
|
:action="uploadFileUrl"
|
|
|
|
|
multiple
|
|
|
|
|
:limit="3"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:data="uploadData"
|
|
|
|
|
:show-file-list="false"
|
|
|
|
|
:on-success="handleChange"
|
|
|
|
|
|
|
|
|
|
:file-list="fileList"
|
|
|
|
|
>
|
|
|
|
|
<el-button size="mini" type="primary">导入往来单位</el-button>
|
|
|
|
|
</el-upload>
|
|
|
|
|
<!-- <el-button type="primary" icon="search" @click="jumpDl"-->
|
|
|
|
|
<!-- v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==1">模板下载-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <el-button type="primary" icon="search" @click="jumpDl"-->
|
|
|
|
|
<!-- v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==1">模板下载-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<el-button type="primary" icon="search" @click="downloadCorps"
|
|
|
|
|
v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==3">
|
|
|
|
|
下载往来单位
|
|
|
|
@ -151,15 +151,16 @@
|
|
|
|
|
</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";
|
|
|
|
|
import store from "@/store";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
filterQuery: {
|
|
|
|
@ -174,6 +175,7 @@
|
|
|
|
|
thrCorpSelectVisible: false,
|
|
|
|
|
checked: false,
|
|
|
|
|
list: [],
|
|
|
|
|
headers: {},
|
|
|
|
|
detailList: [],
|
|
|
|
|
thirdSys: [],
|
|
|
|
|
thirdSysDetail: null,
|
|
|
|
@ -416,32 +418,36 @@
|
|
|
|
|
},
|
|
|
|
|
components: {thrCorpsImportDetail, thrCorpSelect},
|
|
|
|
|
created() {
|
|
|
|
|
this.headers = {
|
|
|
|
|
ADMIN_ID: store.getters.adminId,
|
|
|
|
|
ADMIN_TOKEN: store.getters.token,
|
|
|
|
|
};
|
|
|
|
|
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>
|
|
|
|
|