From 2a38cf0b87a71be22c8317e0320da7d3cf25e3b7 Mon Sep 17 00:00:00 2001 From: Saisai Liu <1374434128@qq.com> Date: Sun, 25 Feb 2024 20:45:53 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC3=E5=A4=A9=E8=B5=8B=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/book/index.vue | 47 ++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 18 deletions(-) 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`) }