|
|
@ -22,13 +22,14 @@
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row @selection-change="handleSelectionChange">
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
|
|
|
|
|
|
|
|
@selection-change="handleSelectionChange">
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="记录ID" prop="genKey" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="记录ID" prop="genKey" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="更新日期" prop="updateTime" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="更新日期" prop="updateTime" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="状态" prop="status" show-overflow-tooltip>
|
|
|
|
<el-table-column label="状态" prop="status" show-overflow-tooltip>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag >
|
|
|
|
<el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="下载次数" prop="dlCount" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="下载次数" prop="dlCount" show-overflow-tooltip></el-table-column>
|
|
|
@ -66,13 +67,15 @@
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import {filterLog, deleteLog} from "@/api/basic/corpExport";
|
|
|
|
import {filterLog, deleteLog} from "@/api/basic/corpExport";
|
|
|
|
import corpSelect from "./corpSelect";
|
|
|
|
import corpSelect from "./corpSelect";
|
|
|
|
import axios from "axios";
|
|
|
|
import axios from "axios";
|
|
|
|
import {formatDate} from "@/utils/date";
|
|
|
|
import {formatDate} from "@/utils/date";
|
|
|
|
export default {
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
|
|
|
|
BASE_URL: process.env.VUE_APP_BASE_API,
|
|
|
|
showSearch: true,
|
|
|
|
showSearch: true,
|
|
|
|
filterQuery: {
|
|
|
|
filterQuery: {
|
|
|
|
genKey: null,
|
|
|
|
genKey: null,
|
|
|
@ -152,10 +155,8 @@
|
|
|
|
this.corpImportDetailVisible = true;
|
|
|
|
this.corpImportDetailVisible = true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
downloadExcel(row) {
|
|
|
|
downloadExcel(row) {
|
|
|
|
axios.get("./config.json").then(res => {
|
|
|
|
let baseUrl = this.BASE_URL
|
|
|
|
let baseUrl = res.data.BASE_URL;
|
|
|
|
let href = baseUrl + "/udiwms/corps/exportLog/download" + "?genKey=" + row.genKey;
|
|
|
|
let href = baseUrl + "/udiwms/corps/exportLog/download" +
|
|
|
|
|
|
|
|
"?genKey=" + row.genKey;
|
|
|
|
|
|
|
|
console.log("href = " + href);
|
|
|
|
console.log("href = " + href);
|
|
|
|
let a = document.createElement("a");
|
|
|
|
let a = document.createElement("a");
|
|
|
|
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
|
|
|
|
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
|
|
|
@ -169,9 +170,6 @@
|
|
|
|
a.click();
|
|
|
|
a.click();
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
cancelDialog(val) {
|
|
|
|
cancelDialog(val) {
|
|
|
@ -237,29 +235,29 @@
|
|
|
|
// this.getBasicThirdSys();
|
|
|
|
// this.getBasicThirdSys();
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
<style scoped>
|
|
|
|
.itemTag {
|
|
|
|
.itemTag {
|
|
|
|
float: left;
|
|
|
|
float: left;
|
|
|
|
text-align: left;
|
|
|
|
text-align: left;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 100px;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
.text {
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: "Microsoft YaHei";
|
|
|
|
font-family: "Microsoft YaHei";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-row {
|
|
|
|
.el-row {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-col {
|
|
|
|
.el-col {
|
|
|
|
border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|