diff --git a/src/views/system/book/index.vue b/src/views/system/book/index.vue index a692d06..c612343 100644 --- a/src/views/system/book/index.vue +++ b/src/views/system/book/index.vue @@ -25,13 +25,25 @@ @keyup.enter.native="handleQuery" /> - - + +
+ + +
+
+ +
+ + +
搜索 @@ -47,7 +59,7 @@ icon="el-icon-plus" size="mini" @click="handleAdd" - v-hasPermi="['system:book:add']" + v-hasPermi="['system:info:add']" >新增 @@ -58,7 +70,7 @@ size="mini" :disabled="single" @click="handleUpdate" - v-hasPermi="['system:book:edit']" + v-hasPermi="['system:info:edit']" >修改 @@ -69,7 +81,7 @@ size="mini" :disabled="multiple" @click="handleDelete" - v-hasPermi="['system:book:remove']" + v-hasPermi="['system:info:remove']" >删除 @@ -79,7 +91,7 @@ icon="el-icon-download" size="mini" @click="handleExport" - v-hasPermi="['system:book:export']" + v-hasPermi="['system:info:export']" >导出 @@ -96,7 +108,6 @@ - @@ -107,14 +118,14 @@ type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" - v-hasPermi="['system:book:edit']" + v-hasPermi="['system:info:edit']" >修改 删除 @@ -128,7 +139,7 @@ @pagination="getList" /> - + @@ -195,7 +206,7 @@ export default { showSearch: true, // 总条数 total: 0, - // 【请填写功能名称】表格数据 + // system:info:表格数据 bookList: [], // 弹出层标题 title: "", @@ -242,7 +253,7 @@ export default { this.getList(); }, methods: { - /** 查询【请填写功能名称】列表 */ + /** 查询system:info:列表 */ getList() { this.loading = true; listInfo(this.queryParams).then(response => { @@ -338,7 +349,7 @@ export default { }, /** 导出按钮操作 */ handleExport() { - this.download('system/book/export', { + this.download('system/info/export', { ...this.queryParams }, `book_${new Date().getTime()}.xlsx`) }