统一信息维护页面头部按钮布局

This commit is contained in:
wkc
2026-04-23 16:07:17 +08:00
parent 129e44c808
commit 0b2571b962
14 changed files with 256 additions and 52 deletions

View File

@@ -7,6 +7,12 @@
/>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
</el-col>
<el-col :span="1.5">
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="primary"
@@ -356,6 +362,17 @@ export default {
this.queryParams.pageNum = 1;
this.getList();
},
resetQuery() {
this.queryParams = {
pageNum: 1,
pageSize: 10,
name: null,
certificateNo: null,
recordType: null,
relatedIntermediaryKeyword: null
};
this.getList();
},
handleSelectionChange(selection) {
this.ids = selection.map(item => item.recordId);
},