This commit is contained in:
shijingjing
2022-04-01 18:21:35 +08:00
parent 8911edde23
commit 6294795ab5
6 changed files with 88 additions and 42 deletions

View File

@@ -29,7 +29,7 @@
</el-col>
<el-col :span="20">
<el-form-item label="履行情况" prop="executionSituation">
<ai-select v-model="forms.executionSituation" @change="onChange" placeholder="请选择文档类型" :selectList="$dict.getDict('dishonestPersonSituation')"></ai-select>
<ai-select v-model="forms.executionSituation" placeholder="请选择文档类型" :selectList="$dict.getDict('dishonestPersonSituation')"></ai-select>
</el-form-item>
</el-col>
</el-row>

View File

@@ -8,7 +8,8 @@
<el-button type="primary" icon="iconfont iconAdd" @click="toAdd('')">添加</el-button>
</template>
<template #right>
<el-input size="small" placeholder="许可文书号/许可对象" v-model="search.name" clearable v-throttle="() => {(page.current = 1), getTableData();}"/>
<el-input size="small" placeholder="许可文书号/许可对象" v-model="search.name" clearable @clear="page.current = 1, searchObj.name = '',getTableData()"
suffix-icon="iconfont iconSearch" v-throttle="() => {(page.current = 1), getTableData();}"/>
<el-button size="small">导入</el-button>
<el-button size="small">导出</el-button>
</template>
@@ -45,13 +46,13 @@ export default {
computed: {
colConfigs() {
return [
{ prop: "position", label: '被执行号', align: "center", width: "200px", },
{ prop: "position", label: '执行时间', align: "center", width: "200px", },
{ prop: "position", label: '失信被执行主体', align: "center", width: "200px", },
{ prop: "position", label: '证件号码', align: "center", width: "200px", },
{ prop: "position", label: '失信事实', align: "center", width: "200px", },
{ prop: "position", label: '更新时间', align: "center", width: "200px", },
{ prop: "position", label: '操作人', align: "center", width: "200px", },
{ prop: "executionCode", label: '被执行号', align: "center", width: "200px", },
{ prop: "executionTime", label: '执行时间', align: "center", width: "200px", },
{ prop: "enterpriseName", label: '失信被执行主体', align: "center", width: "200px", },
{ prop: "unifiedCode", label: '统一信用代码', align: "center", width: "200px", },
{ prop: "dishonestFact", label: '失信事实', align: "center", width: "200px", },
{ prop: "createTime", label: '更新时间', align: "center", width: "200px", },
{ prop: "createUserName", label: '操作人', align: "center", width: "200px", },
{ slot: "options" ,},
]
}
@@ -62,7 +63,7 @@ export default {
methods: {
getTableData() {
this.instance.post("/appcreditdishonestperson/list", null, {
params: {...this.page, ...this.search, status: 1,...this.select}
params: {...this.page, ...this.search,...this.select}
}).then(res => {
if (res?.data) {
this.tableData = res.data?.records