Commit 6a0d702e authored by 张伯涛's avatar 张伯涛

字典类型传参修改

parent c971c490
...@@ -116,8 +116,8 @@ ...@@ -116,8 +116,8 @@
<pagination <pagination
v-show="total>0" v-show="total>0"
:total="total" :total="total"
:page.sync="queryParams.pageNum" :page.sync="queryParams.page"
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.rows"
@pagination="getList" @pagination="getList"
/> />
...@@ -257,8 +257,8 @@ export default { ...@@ -257,8 +257,8 @@ export default {
importLoading: false, importLoading: false,
// 查询参数 // 查询参数
queryParams: { queryParams: {
pageNum: 1, page: 1,
pageSize: 10, rows: 10,
dictName: '', dictName: '',
dictType: '', dictType: '',
status: '', status: '',
...@@ -373,7 +373,7 @@ export default { ...@@ -373,7 +373,7 @@ export default {
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
this.queryParams.pageNum = 1 this.queryParams.page = 1
this.getList() this.getList()
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment