往来信息代码提交
parent
33d5b25841
commit
b8d07e31f9
@ -0,0 +1,33 @@
|
||||
import axios from "@/utils/request";
|
||||
|
||||
|
||||
export function filterLog(query) {
|
||||
return axios({
|
||||
url: "/udiwms/corps/exportLog/filter",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
export function deleteLog(query) {
|
||||
return axios({
|
||||
url: "/udiwms/corps/exportLog/deleteLog",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
||||
export function downloadLog(query) {
|
||||
return axios({
|
||||
url: "/udiwms/corps/exportLog/download",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
export function exportExcel(query) {
|
||||
return axios({
|
||||
url: "/udiwms/corps/importLog/export",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
@ -0,0 +1,25 @@
|
||||
import axios from "@/utils/request";
|
||||
|
||||
export function filterDetail(query) {
|
||||
return axios({
|
||||
url: "/udiwms/corps/importLog/filterDetail",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
export function filterLog(query) {
|
||||
return axios({
|
||||
url: "/udiwms/corps/importLog/filter",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
export function deleteLog(query) {
|
||||
return axios({
|
||||
url: "/udiwms/corps/importLog/deleteLog",
|
||||
method: "post",
|
||||
data: query
|
||||
});
|
||||
}
|
||||
|
@ -0,0 +1,264 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-form :model="query" class="query-form" size="mini" label-width="100px" v-show="showSearch">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="记录ID:">
|
||||
<el-input v-model="filterQuery.genKey" style="width: 90%" placeholder="请输入记录ID"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="getList">查询</el-button>
|
||||
<el-button type="primary" icon="el-icon-upload2" @click="exportExcel">导出往来单位信息</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
<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-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column label="记录ID" prop="genKey" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column l abel="更新日期" prop="updateTime" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="状态" prop="status" show-overflow-tooltip>
|
||||
<template slot-scope="scope">
|
||||
<el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag >
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="下载次数" prop="dlCount" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="操作" width="120">
|
||||
<template slot-scope="scope">
|
||||
<el-button type="text" size="small" @click.native.stop="downloadExcel(scope.row)">下载</el-button>
|
||||
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row.id)">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<el-dialog
|
||||
title="导出往来单位信息"
|
||||
:visible.sync="corpImportDetailVisible"
|
||||
width="80%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
v-if="corpImportDetailVisible"
|
||||
>
|
||||
<corpSelect :selectType="selectType" v-on:cancelDialog="cancelDialog"
|
||||
></corpSelect>
|
||||
</el-dialog>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="filterQuery.page"
|
||||
:limit.sync="filterQuery.limit"
|
||||
@pagination="handleCurrentChange"
|
||||
|
||||
></pagination>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {filterLog, deleteLog} from "@/api/basic/corpExport";
|
||||
import corpSelect from "./corpSelect";
|
||||
import axios from "axios";
|
||||
import {formatDate} from "@/utils/date";
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
showSearch: true,
|
||||
filterQuery: {
|
||||
genKey: null,
|
||||
status: null,
|
||||
fromType: null,
|
||||
page: 1,
|
||||
limit: 20,
|
||||
type: 3,
|
||||
thirdSysFk: null,
|
||||
},
|
||||
selectType: 0,
|
||||
corpImportDetailVisible: false,
|
||||
list: [],
|
||||
detailList: [],
|
||||
thirdSys: [],
|
||||
thirdSysDetail: null,
|
||||
total: 0,
|
||||
editQuery: null,
|
||||
fromStatus: {
|
||||
0: "产品信息",
|
||||
1: "库存信息",
|
||||
2: "异常第三方上传"
|
||||
},
|
||||
status: {
|
||||
0: "等待处理",
|
||||
1: "正在处理",
|
||||
2: "处理异常",
|
||||
3: "处理完成"
|
||||
},
|
||||
uploadFileUrl: null,
|
||||
uploadData: {
|
||||
thirdSys: "thirdId",
|
||||
},
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
fromType: null,
|
||||
genKey: null,
|
||||
status: null,
|
||||
page: 1,
|
||||
type: 1,
|
||||
limit: 20,
|
||||
thirdSysFk: null,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
filterLog(this.filterQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.list = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
exportExcel() {
|
||||
this.selectType = 0;
|
||||
this.corpImportDetailVisible = true;
|
||||
},
|
||||
uploadSmp() {
|
||||
this.selectType = 1;
|
||||
this.corpImportDetailVisible = true;
|
||||
},
|
||||
downloadExcel(row) {
|
||||
axios.get("./config.json").then(res => {
|
||||
let baseUrl = res.data.BASE_URL;
|
||||
let href = baseUrl + "/udiwms/corps/exportLog/download" +
|
||||
"?genKey=" + row.genKey;
|
||||
console.log("href = " + href);
|
||||
let a = document.createElement("a");
|
||||
var timestamp = formatDate(new Date(), "yyyyMMddhhmmss")
|
||||
fetch(href)
|
||||
.then((res) => res.blob())
|
||||
.then((blob) => {
|
||||
a.href = URL.createObjectURL(blob);
|
||||
console.log(a.href);
|
||||
a.download = "BaseCorp_" + timestamp + ".UpperIn";
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
this.getList();
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
},
|
||||
|
||||
cancelDialog(val) {
|
||||
this.corpImportDetailVisible = false;
|
||||
if (val) {
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.filterQuery.page = val.page;
|
||||
this.getList();
|
||||
},
|
||||
deleteDialog(rowId) {
|
||||
this.$confirm("此操作将删除该往来单位信息, 是否继续?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
let dQuery = {
|
||||
id: rowId,
|
||||
};
|
||||
deleteLog(dQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("删除成功");
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
handleChange(response, files, fileList) {
|
||||
console.log(response);
|
||||
if (response.code != 20000) {
|
||||
this.$message.error(response.message);
|
||||
} else {
|
||||
console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
|
||||
this.$message.success("文件上传成功,请稍后刷新查看!");
|
||||
}
|
||||
},
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
0: "warning",
|
||||
1: "warning",
|
||||
2: "danger",
|
||||
3: "success",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
components: {corpSelect},
|
||||
created() {
|
||||
// this.getBasicThirdSys();
|
||||
this.getList();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
.itemTag {
|
||||
float: left;
|
||||
text-align: left;
|
||||
margin-top: 10px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 13px;
|
||||
font-family: "Microsoft YaHei";
|
||||
}
|
||||
|
||||
.el-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
}
|
||||
|
||||
.el-col {
|
||||
border-radius: 4px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,267 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-form :model="query" label-width="100px" v-show="showSearch" size="mini">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="记录ID:">
|
||||
<el-input v-model="filterQuery.genKey" placeholder="请输入记录ID"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="getList">查询</el-button>
|
||||
<el-button type="primary" icon="el-icon-share" @click="uploadSmp">同步至自助平台</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
<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-column label="序号" type="index"></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="status" show-overflow-tooltip>
|
||||
<template slot-scope="scope">
|
||||
<el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" prop="remark" show-overflow-tooltip>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" fixed="right" width="60">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
@click.native.stop="deleteDialog(scope.row.id)"
|
||||
>删除
|
||||
</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<el-dialog
|
||||
title="导出往来单位信息"
|
||||
:visible.sync="corpImportDetailVisible"
|
||||
width="80%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
v-if="corpImportDetailVisible"
|
||||
>
|
||||
<corpSelect :selectType="selectType" v-on:cancelDialog="cancelDialog"
|
||||
></corpSelect>
|
||||
</el-dialog>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="filterQuery.page"
|
||||
:limit.sync="filterQuery.limit"
|
||||
@pagination="handleCurrentChange"
|
||||
></pagination>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import axios from "axios";
|
||||
import {filterLog, deleteLog} from "@/api/basic/corpExport";
|
||||
import corpSelect from "./corpSelect";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
showSearch: true,
|
||||
filterQuery: {
|
||||
genKey: null,
|
||||
status: null,
|
||||
fromType: null,
|
||||
type:2,
|
||||
page: 1,
|
||||
limit: 20,
|
||||
thirdSysFk: null,
|
||||
},
|
||||
selectType: 0,
|
||||
corpImportDetailVisible: false,
|
||||
list: [],
|
||||
detailList: [],
|
||||
thirdSys: [],
|
||||
thirdSysDetail: null,
|
||||
total: 0,
|
||||
editQuery: null,
|
||||
fromStatus: {
|
||||
0: "产品信息",
|
||||
1: "库存信息",
|
||||
2: "异常第三方上传"
|
||||
},
|
||||
status: {
|
||||
0: "等待处理",
|
||||
1: "正在处理",
|
||||
2: "处理异常",
|
||||
3: "处理完成"
|
||||
},
|
||||
uploadFileUrl: null,
|
||||
uploadData: {
|
||||
thirdSys: "thirdId",
|
||||
},
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
fromType: null,
|
||||
genKey: null,
|
||||
status: null,
|
||||
page: 1,
|
||||
type:2,
|
||||
limit: 20,
|
||||
thirdSysFk: null,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
filterLog(this.filterQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.list = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
exportExcel() {
|
||||
this.selectType = 0;
|
||||
this.corpImportDetailVisible = true;
|
||||
},
|
||||
uploadSmp() {
|
||||
this.selectType = 1;
|
||||
this.corpImportDetailVisible = true;
|
||||
},
|
||||
downloadExcel(row) {
|
||||
let href =
|
||||
"http://127.0.0.1:9991" +
|
||||
"/udiwms/corps/exportLog/download" +
|
||||
"?genKey=" +row.genKey;
|
||||
let a = document.createElement("a");
|
||||
fetch(href)
|
||||
.then((res) => res.blob())
|
||||
.then((blob) => {
|
||||
// 将链接地址字符内容转变成blob地址
|
||||
a.href = URL.createObjectURL(blob);
|
||||
console.log(a.href);
|
||||
// a.download = ""; // 下载文件的名字
|
||||
a.download =
|
||||
row.filePath.split("/")[
|
||||
row.filePath.split("/").length - 1
|
||||
]; // // 下载文件的名字
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
this.getList();
|
||||
});
|
||||
},
|
||||
|
||||
cancelDialog(val) {
|
||||
this.corpImportDetailVisible = false;
|
||||
if (val) {
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.filterQuery.page = val;
|
||||
this.getList();
|
||||
},
|
||||
deleteDialog(rowId) {
|
||||
this.$confirm("此操作将删除该往来单位信息, 是否继续?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
let dQuery = {
|
||||
id: rowId,
|
||||
};
|
||||
deleteLog(dQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("删除成功");
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
handleChange(response, files, fileList) {
|
||||
console.log(response);
|
||||
if (response.code != 20000) {
|
||||
this.$message.error(response.message);
|
||||
} else {
|
||||
console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
|
||||
this.$message.success("文件上传成功,请稍后刷新查看!");
|
||||
}
|
||||
},
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
0: "warning",
|
||||
1: "warning",
|
||||
2: "danger",
|
||||
3: "success",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
components: {corpSelect},
|
||||
created() {
|
||||
// this.getBasicThirdSys();
|
||||
this.getList();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
.itemTag {
|
||||
float: left;
|
||||
text-align: left;
|
||||
margin-top: 10px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 13px;
|
||||
font-family: "Microsoft YaHei";
|
||||
}
|
||||
|
||||
.el-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
}
|
||||
|
||||
.el-col {
|
||||
border-radius: 4px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,279 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-form :model="query" label-width="100px" v-show="showSearch" size="mini">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="记录ID:">
|
||||
<el-input v-model="filterQuery.genKey" style="width: 90%" placeholder="请输入记录ID"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="处理状态:">
|
||||
<el-select v-model="filterQuery.status" style="width: 90%" placeholder="请选择处理状态">
|
||||
<el-option label="全部" value=""></el-option>
|
||||
<el-option label="处理中" value="0"></el-option>
|
||||
<el-option label="已处理" value="1"></el-option>
|
||||
<el-option label="异常" value="2"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="getList">查询</el-button>
|
||||
<el-upload
|
||||
:action="uploadFileUrl"
|
||||
multiple
|
||||
:limit="1"
|
||||
:data="uploadData"
|
||||
:show-file-list="false"
|
||||
:on-success="handleChange"
|
||||
:file-list="fileList"
|
||||
>
|
||||
<el-button icon="el-icon-upload2" size="mini" type="primary">导入往来单位信息</el-button>
|
||||
</el-upload>
|
||||
</el-button-group>
|
||||
</div>
|
||||
<el-divider style="margin: 15px"></el-divider>
|
||||
|
||||
|
||||
<el-table v-loading="loading" :data="list" style="width: 100%" @selection-change="handleSelectionChange" border highlight-current-row>
|
||||
<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="来源" prop="fromType" 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>
|
||||
<template slot-scope="scope">
|
||||
<el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="120">
|
||||
<template slot-scope="scope">
|
||||
<el-button type="text" @click.native.stop="handleDetailClick(scope.row)">详情</el-button>
|
||||
<el-button type="text" @click.native.stop="deleteDialog(scope.row.id)"></el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
|
||||
<el-dialog
|
||||
title="往来单位信息导入详情"
|
||||
:visible.sync="corpImportDetailVisible"
|
||||
width="80%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
v-if="corpImportDetailVisible"
|
||||
>
|
||||
<corpImportDetail :currentRow="currentRow" :closeDialog="corpImportDetail"></corpImportDetail>
|
||||
</el-dialog>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="filterQuery.page"
|
||||
:limit.sync="filterQuery.limit"
|
||||
@pagination="handleCurrentChange"
|
||||
|
||||
></pagination>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import axios from "axios";
|
||||
import {filterLog, deleteLog} from "@/api/basic/corpImport";
|
||||
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
|
||||
import corpImportDetail from "./corpImportDetail";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
showSearch: true,
|
||||
filterQuery: {
|
||||
genKey: null,
|
||||
status: null,
|
||||
fromType: null,
|
||||
page: 1,
|
||||
limit: 20,
|
||||
thirdSysFk: null,
|
||||
},
|
||||
corpImportDetailVisible: false,
|
||||
checked: false,
|
||||
list: [],
|
||||
detailList: [],
|
||||
thirdSys: [],
|
||||
thirdSysDetail: null,
|
||||
total: 0,
|
||||
currentRow: null,
|
||||
status: {
|
||||
0: "等待处理",
|
||||
1: "正在处理",
|
||||
2: "处理异常",
|
||||
3: "处理完成"
|
||||
},
|
||||
uploadFileUrl: null,
|
||||
uploadData: {
|
||||
thirdSys: "thirdId",
|
||||
},
|
||||
templateDlUrl: null,
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
fromType: null,
|
||||
genKey: null,
|
||||
status: null,
|
||||
page: 1,
|
||||
limit: 20,
|
||||
thirdSysFk: null,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
filterLog(this.filterQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.list = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
handleDetailClick(row) {
|
||||
this.currentRow = row;
|
||||
console.log(this.currentRow.genKey)
|
||||
this.corpImportDetailVisible = true;
|
||||
|
||||
},
|
||||
cancelDialog() {
|
||||
this.corpImportDetailVisible = false;
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.filterQuery.page = val;
|
||||
this.getList();
|
||||
},
|
||||
deleteDialog(rowId) {
|
||||
this.$confirm("此操作将删除该往来单位信息, 是否继续?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
let dQuery = {
|
||||
id: rowId,
|
||||
};
|
||||
deleteLog(dQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("删除成功");
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
getBasicThirdSys() {
|
||||
let query = {
|
||||
enabled: true,
|
||||
};
|
||||
getBasicThirdSys(query)
|
||||
.then((response) => {
|
||||
this.thirdSys = response.data.list || [];
|
||||
// this.filterQuery.thirdSysFk = this.thirdSys[0].thirdId;
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
});
|
||||
axios.get("./config.json").then(res => {
|
||||
// 基础地址
|
||||
let response = res.data.BASE_URL;
|
||||
this.uploadFileUrl = response + "/udiwms/corps/importLog/upload";
|
||||
});
|
||||
axios.get("./config.json").then(res => {
|
||||
let response = res.data.SERVER_IP;
|
||||
this.templateDlUrl = response + "/已对照往来单位模板.xlsx";
|
||||
});
|
||||
},
|
||||
jumpDl() {
|
||||
window.open(this.templateDlUrl, '_blank');
|
||||
},
|
||||
handleChange(response, files, fileList) {
|
||||
console.log(response);
|
||||
if (response.code != 20000) {
|
||||
this.$message.error(response.message);
|
||||
} else {
|
||||
// console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
|
||||
this.$message.success(response.data);
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
0: "warning",
|
||||
1: "warning",
|
||||
2: "danger",
|
||||
3: "success",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
components: {corpImportDetail},
|
||||
created() {
|
||||
this.getBasicThirdSys();
|
||||
this.getList();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
.itemTag {
|
||||
float: left;
|
||||
text-align: left;
|
||||
margin-top: 10px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 13px;
|
||||
font-family: "Microsoft YaHei";
|
||||
}
|
||||
|
||||
.el-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
}
|
||||
|
||||
.el-col {
|
||||
border-radius: 4px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,173 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-form :model="query" size="mini" label-width="100px" v-show="showSearch">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="往来单位编码:">
|
||||
<el-input v-model="filterQuery.erpId" style="width: 90%" placeholder="请输入往来单位编码"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="处理状态:">
|
||||
<el-select v-model="filterQuery.status" style="width: 90%" placeholder="请选择处理状态">
|
||||
<el-option label="全部" value=""></el-option>
|
||||
<el-option label="未处理" value="0"></el-option>
|
||||
<el-option label="已完成" value="1"></el-option>
|
||||
<el-option label="异常" value="2"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="getList">查询</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
<el-divider style="margin: 15px"></el-divider>
|
||||
|
||||
<el-table v-loading="loading" :data="list" style="width: 100%" @selection-change="handleSelectionChange" border highlight-current-row>
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column label="往来单位编码" prop="erpId" show-overflow-tooltip width="100"></el-table-column>
|
||||
<el-table-column label="名称" prop="name" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="简写" prop="spell" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="社会信用号" prop="creditNo" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="地址" prop="addr" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="状态" prop="status" show-overflow-tooltip>
|
||||
<template slot-scope="scope">
|
||||
<el-tag :type="statusFilterType(scope.row.importStatus)">{{ status[scope.row.importStatus] }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" prop="remark" show-overflow-tooltip></el-table-column>
|
||||
</el-table>
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="filterQuery.page"
|
||||
:limit.sync="filterQuery.limit"
|
||||
@pagination="handleCurrentChange"
|
||||
|
||||
></pagination>
|
||||
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
filterDetail,
|
||||
} from "@/api/basic/corpImport";
|
||||
|
||||
export default {
|
||||
name: "corpImportDetail",
|
||||
props: {
|
||||
currentRow: {
|
||||
type: Object,
|
||||
required: true,
|
||||
},
|
||||
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
showSearch: true,
|
||||
filterQuery: {
|
||||
erpId:null,
|
||||
status:null,
|
||||
page: 1,
|
||||
limit: 10,
|
||||
},
|
||||
list: [],
|
||||
detailList: [],
|
||||
total: 0,
|
||||
status: {
|
||||
0: "未处理",
|
||||
2: "已完成",
|
||||
1: "异常"
|
||||
},
|
||||
};
|
||||
},
|
||||
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
genKey: null,
|
||||
udiCode:null,
|
||||
status:null,
|
||||
page: 1,
|
||||
limit: 10,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
console.log(" this.genKeyFk = "+ this.currentRow.genKey)
|
||||
this.filterQuery.genKey = this.currentRow.genKey;
|
||||
filterDetail(this.filterQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.list = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
0: "warning",
|
||||
1: "danger",
|
||||
2: "success",
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.filterQuery.page = val;
|
||||
this.getList();
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
filters: {
|
||||
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
.itemTag {
|
||||
float: left;
|
||||
text-align: left;
|
||||
margin-top: 10px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 13px;
|
||||
font-family: "Microsoft YaHei";
|
||||
}
|
||||
|
||||
.el-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
}
|
||||
|
||||
.el-col {
|
||||
border-radius: 4px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,131 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-form :model="query"label-width="100px" v-show="showSearch" size="mini">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="搜索:">
|
||||
<el-input v-model="query.key" placeholder="搜索" style="90%" clearable="true"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="getList">查询</el-button>
|
||||
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combine" :loading="combineLoading">选入</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
|
||||
<el-table v-loading="loading" :data="list" highlight-current-row @current-change="handleSelectChange" style="width: 100%">
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column label="往来单位编码" prop="erpId" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="第三方主系统ID" prop="thirdId" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="名称" prop="name" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="简写" prop="spell" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="社会信用号" prop="creditNo" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="地址" prop="addr" show-overflow-tooltip></el-table-column>
|
||||
</el-table>
|
||||
</el-card>
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="query.page"
|
||||
:limit.sync="query.limit"
|
||||
@pagination="handleCurrentChange"
|
||||
></pagination>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {combineSingle, getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
|
||||
|
||||
export default {
|
||||
name: "combinType",
|
||||
props: {
|
||||
closeDialog: {
|
||||
type: Function,
|
||||
required: true,
|
||||
},
|
||||
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
showSearch: true,
|
||||
query: {
|
||||
key: "",
|
||||
page: 1,
|
||||
limit: 20,
|
||||
},
|
||||
total: 0,
|
||||
loading: false,
|
||||
list: [],
|
||||
currentRow: null,
|
||||
combineLoading: false,
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
handlepageChange(val) {
|
||||
this.unitQuery.page = val;
|
||||
this.getList();
|
||||
},
|
||||
handleErppageChange(val) {
|
||||
this.erpQuery.page = val.page;
|
||||
this.getErpList();
|
||||
},
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.query = {
|
||||
key: "",
|
||||
page: 1,
|
||||
limit: 20,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
getBasicUnitMaintains(this.query)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.list = response.data.page.list || [];
|
||||
this.total = response.data.page.total || 0;
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
handleSelectChange(val) {
|
||||
this.currentRow = val;
|
||||
},
|
||||
|
||||
handleCurrentChange(val) {
|
||||
this.query.page = val;
|
||||
this.getList();
|
||||
},
|
||||
combine() {
|
||||
this.closeDialog(this.currentRow);
|
||||
},
|
||||
handleSelectionUdiChange(val) {
|
||||
console.log("----" + val[0].id);
|
||||
this.multipleUdiSelection = val;
|
||||
},
|
||||
},
|
||||
created() {
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
@ -0,0 +1,267 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card" v-if="checked">
|
||||
<el-form size="mini" :model="erpQuery" label-width="100px" v-show="showSearch">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="往来单位ID:">
|
||||
<el-input v-model="erpQuery.unitId" placeholder="请输入往来单位ID" style="width: 90%" clearable></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="往来单位:">
|
||||
<el-input v-model="erpQuery.name" placeholder="往来单位" style="width: 90%" clearable></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="getErpList">查询</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
|
||||
<el-divider style="margin: 15px"></el-divider>
|
||||
<el-table :data="erpList" style="width: 100%" border highlight-current-row @current-change="handleCurrentChange">
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column label="第三方往来单位ID" prop="customid" width="200"></el-table-column>
|
||||
<el-table-column label="往来单位名称" prop="customname" width="400"></el-table-column>
|
||||
</el-table>
|
||||
<pagination
|
||||
v-show="erpTotal>0"
|
||||
:total="erpTotal"
|
||||
:page.sync="erpQuery.page"
|
||||
:limit.sync="erpQuery.limit"
|
||||
@pagination="handleErppageChange"
|
||||
></pagination>
|
||||
</el-card>
|
||||
|
||||
<el-card class="el-card">
|
||||
<el-form :model="unitQuery" size="mini" label-width="100px" v-show="showSearch">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="往来单位编码:">
|
||||
<el-input v-model="unitQuery.unitId" style="width: 90%" placeholder="请输入往来单位编码" clearable></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="请设置主系统:">
|
||||
<el-select v-model="thirdSysFk" style="width: 90%" placeholder="请设置主系统" disabled>
|
||||
<el-option
|
||||
v-for="item in thirdSys"
|
||||
:key="item.value"
|
||||
:label="item.thirdName"
|
||||
:value="item.thirdId">
|
||||
<span style="float: left">{{ item.thirdName }}</span>
|
||||
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.thirdId }}</span>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="search">查询</el-button>
|
||||
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combine">选入</el-button>
|
||||
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combineAll">结果全部选入</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
<el-divider style="margin: 15px"></el-divider>
|
||||
<el-table :data="unitlList" style="width: 100%" @selection-change="handleSelectionUdiChange" border highlight-current-row>
|
||||
<el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column label="往来单位编码" prop="id"></el-table-column>
|
||||
<el-table-column label="往来单位名称"prop="name" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="往来单位简写" show-overflow-tooltip prop="spell"></el-table-column>
|
||||
<el-table-column label="地址" prop="addr" show-overflow-tooltip></el-table-column>
|
||||
</el-table>
|
||||
</el-card>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="unitQuery.page"
|
||||
:limit.sync="unitQuery.limit"
|
||||
@pagination="handlepageChange"
|
||||
|
||||
></pagination>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {combine, ucloudUnit, combineAll} from "@/api/basic/basicUnitMaintain";
|
||||
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
|
||||
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
showSearch: true,
|
||||
unitQuery: {
|
||||
page: 1,
|
||||
limit: 10,
|
||||
key: "",
|
||||
thirdSys: null,
|
||||
},
|
||||
combineQuery: {
|
||||
thirdSys: "",
|
||||
keys: [],
|
||||
custmandocResponses: [],
|
||||
},
|
||||
total: 0,
|
||||
erpTotal: 0,
|
||||
checked: false,
|
||||
unitlList: [],
|
||||
erpList: [],
|
||||
currentRow: null,
|
||||
multipleUdiSelection: [],
|
||||
thirdSys: [],
|
||||
thirdSysFk: null,
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.unitQuery = {
|
||||
key: "",
|
||||
page: 1,
|
||||
limit: 10,
|
||||
thirdSys: null,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
handlepageChange(val) {
|
||||
this.unitQuery.page = val.page;
|
||||
this.getList();
|
||||
},
|
||||
handleErppageChange(val) {
|
||||
this.erpQuery.page = val;
|
||||
this.getErpList();
|
||||
},
|
||||
checkSelectable(row) {
|
||||
return !row.checked;
|
||||
},
|
||||
search() {
|
||||
this.unitQuery.page = 1;
|
||||
this.getList();
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
this.unitQuery.thirdSys = this.thirdSysFk;
|
||||
ucloudUnit(this.unitQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
|
||||
if (response.code == 20000) {
|
||||
this.unitlList = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
this.unitlList = [];
|
||||
this.total = 0;
|
||||
}
|
||||
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.unitlList = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
intentBack() {
|
||||
this.$router.go(-1);
|
||||
},
|
||||
getBasicThirdSys() {
|
||||
let query = {
|
||||
enabled: true,
|
||||
mainSys: true,
|
||||
};
|
||||
getBasicThirdSys(query)
|
||||
.then((response) => {
|
||||
this.thirdSys = response.data.list || [];
|
||||
this.thirdSysFk = this.thirdSys[0].thirdId;
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
});
|
||||
},
|
||||
combine() {
|
||||
let selectData = this.multipleUdiSelection;
|
||||
var ids = [];
|
||||
selectData.forEach((obj) => {
|
||||
ids.push(obj);
|
||||
});
|
||||
if (ids.length == 0) {
|
||||
this.$message.warning("请选择往来单位信息!");
|
||||
return;
|
||||
}
|
||||
this.combineQuery.thirdSys = this.thirdSysFk;
|
||||
this.combineQuery.custmandocResponses = ids;
|
||||
combine(this.combineQuery)
|
||||
.then((response) => {
|
||||
if (response.code == 20000) {
|
||||
this.$emit("closeMain", true);
|
||||
} else {
|
||||
this.$emit("closeMain", false);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.$emit("closeMain", false);
|
||||
});
|
||||
},
|
||||
combineAll() {
|
||||
|
||||
this.$confirm("此操作将在后台自动选入所有查询结果, 是否继续?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
this.unitQuery.thirdSys = this.thirdSysFk;
|
||||
combineAll(this.unitQuery)
|
||||
.then((response) => {
|
||||
if (response.code == 20000) {
|
||||
this.$emit("closeMain", true);
|
||||
} else {
|
||||
this.$emit("closeMain", false);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.$emit("closeMain", false);
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
|
||||
|
||||
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.currentRow = val;
|
||||
this.unitQuery.key = this.currentRow.name;
|
||||
},
|
||||
|
||||
handleSelectionUdiChange(val) {
|
||||
this.multipleUdiSelection = val;
|
||||
},
|
||||
},
|
||||
created() {
|
||||
this.getBasicThirdSys();
|
||||
},
|
||||
};
|
||||
</script>
|
@ -0,0 +1,260 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card" v-if="checked">
|
||||
<el-form :inline="true" :model="erpQuery" size="mini" label-width="100px" v-show="showSearch">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item label="单位编码:">
|
||||
<el-input v-model="erpQuery.customname" placeholder="搜索" style="width: 90%"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="getErpList">查询</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
<el-divider style="margin: 15px"></el-divider>
|
||||
|
||||
<el-table :data="erpList" style="width: 100%" border highlight-current-row @current-change="handleCurrentChange">
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column label="第三方往来单位ID" prop="customid" width="200"></el-table-column>
|
||||
<el-table-column label="往来单位名称" prop="customname" width="400"></el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="erpTotal>0"
|
||||
:total="erpTotal"
|
||||
:page.sync="erpQuery.page"
|
||||
:limit.sync="erpQuery.limit"
|
||||
@pagination="handleErppageChange"
|
||||
></pagination>
|
||||
</el-card>
|
||||
|
||||
<el-card class="el-card">
|
||||
<el-form :model="unitQuery" label-width="100px" v-show="showSearch" size="mini">
|
||||
<el-form-item label="往来单位编码:">
|
||||
<el-input v-model="unitQuery.unitId" style="width: 90%" placeholder="往来单位编码" clearable></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="往来单位:">
|
||||
<el-input v-model="unitQuery.name" style="width: 90%" placeholder="往来单位" clearable></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="外部系统:">
|
||||
<el-select v-model="thirdSysFk" style="width: 90%" placeholder="请选择第三方系统" disabled="true">
|
||||
<el-option
|
||||
v-for="item in thirdSys"
|
||||
:key="item.value"
|
||||
:label="item.thirdName"
|
||||
:value="item.thirdId">
|
||||
<span style="float: left">{{ item.thirdName }}</span>
|
||||
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.thirdId }}</span>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<div class="top-right-btn">
|
||||
<el-button-group style="display:flex;">
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
||||
<el-button type="primary" icon="el-icon-search" @click="searchList">查询</el-button>
|
||||
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combine" :loading="combineLoading">选入</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
|
||||
<el-divider style="margin: 15px"></el-divider>
|
||||
<el-table border highlight-current-row @current-change="handleCurrentChange" :data="unitlList" :row-class-name="tableRowClassName" style="width: 100%">
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column label="往来单位编码" prop="id"></el-table-column>
|
||||
<el-table-column label="往来单位名称" prop="name" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="往来单位简写" show-overflow-tooltip prop="spell"></el-table-column>
|
||||
<el-table-column label="地址" prop="addr"></el-table-column>
|
||||
</el-table>
|
||||
</el-card>
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="unitQuery.page"
|
||||
:limit.sync="unitQuery.limit"
|
||||
@pagination="handlepageChange"
|
||||
|
||||
></pagination>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {combineSingle, ucloudUnit, removeRl} from "@/api/basic/basicUnitMaintain";
|
||||
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
|
||||
|
||||
export default {
|
||||
name: "combinType",
|
||||
props: {
|
||||
corpData: {
|
||||
type: Object,
|
||||
required: true,
|
||||
},
|
||||
defaultSys: {
|
||||
type: Object,
|
||||
required: true,
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
showSearch: true,
|
||||
unitQuery: {
|
||||
page: 1,
|
||||
limit: 10,
|
||||
key: "",
|
||||
thirdSys: null,
|
||||
},
|
||||
combineQuery: {
|
||||
thirdSys: "",
|
||||
key: null,
|
||||
erpUnitsResponse: [],
|
||||
},
|
||||
total: 0,
|
||||
erpTotal: 0,
|
||||
checked: false,
|
||||
unitlList: [],
|
||||
erpList: [],
|
||||
currentRow: null,
|
||||
multipleUdiSelection: [],
|
||||
thirdSys: [],
|
||||
thirdSysFk: null,
|
||||
combineLoading: false,
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
handlepageChange(val) {
|
||||
this.unitQuery.page = val;
|
||||
this.getList();
|
||||
},
|
||||
handleErppageChange(val) {
|
||||
this.erpQuery.page = val;
|
||||
this.getErpList();
|
||||
},
|
||||
searchList() {
|
||||
this.unitQuery.page = 1;
|
||||
this.getList();
|
||||
},
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
onReset() {
|
||||
this.unitQuery = {
|
||||
page: 1,
|
||||
limit: 10,
|
||||
key: "",
|
||||
thirdSys: null,
|
||||
}
|
||||
this.total = 0;
|
||||
this.getList();
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
this.unitQuery.thirdSys = this.thirdSysFk;
|
||||
ucloudUnit(this.unitQuery)
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
this.loading = false;
|
||||
|
||||
if (response.code == 20000) {
|
||||
this.unitlList = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
this.unitlList = [];
|
||||
this.total = 0;
|
||||
}
|
||||
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.unitlList = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
|
||||
intentBack() {
|
||||
this.$router.go(-1);
|
||||
},
|
||||
getBasicThirdSys() {
|
||||
let query = {
|
||||
enabled: true,
|
||||
};
|
||||
getBasicThirdSys(query)
|
||||
.then((response) => {
|
||||
this.thirdSys = response.data.list || [];
|
||||
this.thirdSysFk = this.thirdSys[0].thirdId;
|
||||
if (this.defaultSys != null) {
|
||||
this.thirdSysFk = this.defaultSys;
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
});
|
||||
},
|
||||
|
||||
handleCurrentChange(val) {
|
||||
console.log(val);
|
||||
this.combineQuery.thirdSys = this.thirdSysFk;
|
||||
this.combineQuery.key = this.corpData.id;
|
||||
this.combineQuery.erpUnitsResponse = val;
|
||||
},
|
||||
combine() {
|
||||
|
||||
if (this.combineQuery.key == null) {
|
||||
this.$message.warning("未选择往来单位!");
|
||||
return;
|
||||
}
|
||||
if (this.combineQuery.erpUnitsResponse.checked == true) {
|
||||
this.$message.warning("该往来单位已被关联,不能重复选入!");
|
||||
return;
|
||||
}
|
||||
|
||||
this.combineLoading = true;
|
||||
combineSingle(this.combineQuery)
|
||||
.then((response) => {
|
||||
this.combineLoading = false;
|
||||
this.$emit("cancelDialog", true);
|
||||
if (response.code == 20000) {
|
||||
this.$message.success("关联成功!");
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.combineLoading = false;
|
||||
this.$emit("cancelDialog", false);
|
||||
});
|
||||
},
|
||||
tableRowClassName({row}) {
|
||||
if (row.checked) return "warning-row";
|
||||
return "";
|
||||
},
|
||||
handleSelectionUdiChange(val) {
|
||||
console.log("----" + val[0].id);
|
||||
this.multipleUdiSelection = val;
|
||||
},
|
||||
|
||||
},
|
||||
created() {
|
||||
this.getBasicThirdSys();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
div /deep/ .el-table .warning-row {
|
||||
background: #bebebe;
|
||||
}
|
||||
|
||||
div /deep/ .el-table .success-row {
|
||||
background: #ffffff;
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue