|
|
@ -1,22 +1,27 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<el-card>
|
|
|
|
<el-card>
|
|
|
|
<el-form :inline="true" :model="query" class="query-form" size="mini">
|
|
|
|
<el-form :model="query" size="mini" label-width="100px" v-show="showSearch">
|
|
|
|
<el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-input v-model="filterQuery.genKey" placeholder="请输入记录ID"></el-input>
|
|
|
|
<el-form-item label="记录ID:">
|
|
|
|
|
|
|
|
<el-input v-model="filterQuery.genKey" style="width: 90%" placeholder="请输入记录ID"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-select v-model="filterQuery.status" placeholder="请选择处理状态">
|
|
|
|
<el-form-item label="处理状态:">
|
|
|
|
|
|
|
|
<el-select v-model="filterQuery.status" style="width: 90%" placeholder="请选择处理状态">
|
|
|
|
<el-option label="全部" value=""></el-option>
|
|
|
|
<el-option label="全部" value=""></el-option>
|
|
|
|
<el-option label="正在处理" value="0"></el-option>
|
|
|
|
<el-option label="正在处理" value="0"></el-option>
|
|
|
|
<el-option label="处理完成" value="3"></el-option>
|
|
|
|
<el-option label="处理完成" value="3"></el-option>
|
|
|
|
<el-option label="处理异常" value="2"></el-option>
|
|
|
|
<el-option label="处理异常" value="2"></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
</el-col>
|
|
|
|
<el-select v-model="filterQuery.thirdSysFk" placeholder="请选择第三方系统" @change="sysChange">
|
|
|
|
<el-col :span="6">
|
|
|
|
|
|
|
|
<el-form-item label="外部系统:">
|
|
|
|
|
|
|
|
<el-select v-model="filterQuery.thirdSysFk" style="width: 90%" placeholder="请选择第三方系统"
|
|
|
|
|
|
|
|
@change="sysChange">
|
|
|
|
<el-option
|
|
|
|
<el-option
|
|
|
|
v-for="item in thirdSys"
|
|
|
|
v-for="item in thirdSys"
|
|
|
|
:key="item.value"
|
|
|
|
:key="item.value"
|
|
|
@ -27,10 +32,14 @@
|
|
|
|
</el-option>
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item>
|
|
|
|
<div class="top-right-btn">
|
|
|
|
<el-button-group style="display:flex;">
|
|
|
|
<el-button-group style="display:flex;">
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
<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-search" @click="getList">查询</el-button>
|
|
|
|
<el-upload
|
|
|
|
<el-upload
|
|
|
|
v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==1"
|
|
|
|
v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==1"
|
|
|
@ -52,10 +61,8 @@
|
|
|
|
下载往来单位
|
|
|
|
下载往来单位
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
</el-button-group>
|
|
|
|
</el-button-group>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
</el-row>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
<el-table
|
|
|
|
v-loading="loading"
|
|
|
|
v-loading="loading"
|
|
|
|
:data="list"
|
|
|
|
:data="list"
|
|
|
@ -107,18 +114,16 @@
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" width="160">
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="text"
|
|
|
|
type="text"
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
@click.native.stop="handleDetailClick(scope.row)"
|
|
|
|
@click.native.stop="handleDetailClick(scope.row)"
|
|
|
|
>详情
|
|
|
|
>详情
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="text"
|
|
|
|
type="text"
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
@click.native.stop="deleteDialog(scope.row.id)"
|
|
|
|
@click.native.stop="deleteDialog(scope.row.id)"
|
|
|
|
>删除
|
|
|
|
>删除
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
@ -129,7 +134,7 @@
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
|
title="导入往来单位详情"
|
|
|
|
title="导入往来单位详情"
|
|
|
|
:visible.sync="udiImportDetailVisible"
|
|
|
|
:visible.sync="udiImportDetailVisible"
|
|
|
|
width="85%"
|
|
|
|
width="80%"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
v-if="udiImportDetailVisible"
|
|
|
|
v-if="udiImportDetailVisible"
|
|
|
@ -141,7 +146,7 @@
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
|
title="下载往来单位信息"
|
|
|
|
title="下载往来单位信息"
|
|
|
|
:visible.sync="thrCorpSelectVisible"
|
|
|
|
:visible.sync="thrCorpSelectVisible"
|
|
|
|
width="85%"
|
|
|
|
width="80%"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
v-if="thrCorpSelectVisible"
|
|
|
|
v-if="thrCorpSelectVisible"
|
|
|
@ -172,6 +177,7 @@ import axios from "axios";
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
|
|
|
|
showSearch: true,
|
|
|
|
filterQuery: {
|
|
|
|
filterQuery: {
|
|
|
|
genKey: null,
|
|
|
|
genKey: null,
|
|
|
|
status: null,
|
|
|
|
status: null,
|
|
|
@ -225,6 +231,10 @@ export default {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
hideSearch() {
|
|
|
|
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
this.loading = true;
|
|
|
|
filterLog(this.filterQuery)
|
|
|
|
filterLog(this.filterQuery)
|
|
|
@ -422,7 +432,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
<style scoped>
|
|
|
|
.itemTag {
|
|
|
|
.itemTag {
|
|
|
|
float: left;
|
|
|
|
float: left;
|
|
|
|
text-align: left;
|
|
|
|
text-align: left;
|
|
|
@ -430,6 +440,7 @@ export default {
|
|
|
|
width: 100px;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
.text {
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: "Microsoft YaHei";
|
|
|
|
font-family: "Microsoft YaHei";
|
|
|
|