Commit d49d2383 authored by 高宇's avatar 高宇

删除菜单

parent 744c33ed
......@@ -84,12 +84,12 @@
</el-table-column>
<el-table-column label="psm" prop="psm" :show-overflow-tooltip="true">
<template slot-scope="scope">
{{ scope.row.prank || '-' }}
{{ scope.row.psm || '-' }}
</template>
</el-table-column>
<el-table-column label="psy" prop="psy" :show-overflow-tooltip="true">
<template slot-scope="scope">
{{ scope.row.prank || '-' }}
{{ scope.row.psy || '-' }}
</template>
</el-table-column>
<el-table-column label="操作员" prop="createName">
......
......@@ -129,8 +129,8 @@
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
:page.sync="queryParams.page"
:limit.sync="queryParams.rows"
@pagination="getList"
/>
......@@ -230,8 +230,8 @@ export default {
typeOptions: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
page: 1,
rows: 10,
dictName: undefined,
dictType: undefined,
status: '',
......@@ -332,7 +332,7 @@ export default {
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1
this.queryParams.page = 1
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