|
@@ -17,7 +17,7 @@
|
17
|
17
|
</el-form-item>
|
18
|
18
|
<el-form-item>
|
19
|
19
|
<el-button type="info" class="filter-item" @click="handleFilter">清空</el-button>
|
20
|
|
- <el-button type="primary" @click="dataQuery">查询</el-button>
|
|
20
|
+ <el-button type="primary" @click="search">查询</el-button>
|
21
|
21
|
</el-form-item>
|
22
|
22
|
</el-form>
|
23
|
23
|
<el-table
|
|
@@ -131,7 +131,7 @@ export default {
|
131
|
131
|
this.$store.dispatch('UserPassCertification', this.listQuery).then((res) => {
|
132
|
132
|
const resData = res.data
|
133
|
133
|
this.userPassCertification = resData.list
|
134
|
|
- this.listQuery.pageNum = 1
|
|
134
|
+ this.listQuery.pageNum = resData.pageNum
|
135
|
135
|
this.listQuery.pageSize = 10
|
136
|
136
|
this.total = resData.total
|
137
|
137
|
this.listLoading = false
|
|
@@ -142,6 +142,10 @@ export default {
|
142
|
142
|
},
|
143
|
143
|
handleSelectionChange(data) {
|
144
|
144
|
|
|
145
|
+ },
|
|
146
|
+ search(){
|
|
147
|
+ this.listQuery.pageNum = 1
|
|
148
|
+ this.dataQuery()
|
145
|
149
|
},
|
146
|
150
|
handleFilter() {
|
147
|
151
|
this.listQuery.pageNum = 1
|