This commit is contained in:
shijingjing
2022-04-08 21:10:11 +08:00
parent db814b24de
commit bf8bd66b85

View File

@@ -8,7 +8,7 @@
<el-button type="primary" icon="iconfont iconAdd" @click="toAdd('')">添加</el-button>
</template>
<template #right>
<el-input size="small" placeholder="欠费主/统一信用社会代码" v-model="search.arrearsSubject" clearable @clear="page.current = 1, search.arrearsSubject = '',getTableData()"
<el-input size="small" placeholder="欠费主/统一信用社会代码" v-model="search.arrearsSubject" clearable @clear="page.current = 1, search.arrearsSubject = '',getTableData()"
suffix-icon="iconfont iconSearch" v-throttle="() => {(page.current = 1), getTableData();}"/>
<ai-import :instance="instance" :dict="dict" importUrl="/appcreditpublicutilitiesarrears/import" url="/appcreditpublicutilitiesarrears/downloadTemplate" name="公共事业欠费信息" @success="getTableData(), $message.success('导入成功!')">
<el-button size="small">导入</el-button>
@@ -51,14 +51,14 @@ export default {
computed: {
colConfigs() {
return [
{ prop: "arrearsSubject", label: '欠费主体', align: "center", width: "200px", },
{ prop: "unifiedCode", label: '统一信用代码', align: "center", width: "150px", },
{ prop: "arrearsType", label: '欠费类型名称', align: "center", width: "150px", dict: 'arrearsType'},
{ prop: "arrearsAmount", label: '欠费金额(万元)', align: "center", width: "150px", },
{ prop: "dishonestySeverity", label: '失信严重程度', align: "center", width: "150px", dict:"dishonestySeverity"},
{ prop: "cognizanceDate", label: '认定日期', align: "center", width: "150px", },
{ prop: "createTime", label: '更新时间', align: "center", width: "150px", },
{ prop: "createUserName", label: '操作人', align: "center", width: "150px", },
{ prop: "arrearsSubject", label: '欠费主体', align: "center", width: "180px", },
{ prop: "unifiedCode", label: '统一信用代码', align: "center", width: "180px", },
{ prop: "arrearsType", label: '欠费类型名称', align: "center", width: "180px", dict: 'arrearsType'},
{ prop: "arrearsAmount", label: '欠费金额(万元)', align: "center", width: "180px", },
{ prop: "dishonestySeverity", label: '失信严重程度', align: "center", width: "180px", dict:"dishonestySeverity"},
{ prop: "cognizanceDate", label: '认定日期', align: "center", width: "180px", },
{ prop: "createTime", label: '更新时间', align: "center", width: "180px", },
{ prop: "createUserName", label: '操作人', align: "center", width: "180px", },
{ slot: "options" ,},
]
}