Commit d49d2383 authored by 高宇's avatar 高宇

删除菜单

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