fix: 修改轮播图权限标识

pull/13/head
TianYu 2023-06-02 11:26:49 +08:00
parent 488f0166be
commit 38209dd485
1 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
v-hasPermi="['system:banner:create']">新增
v-hasPermi="['market:banner:create']">新增
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
@ -39,10 +39,10 @@
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template v-slot="scope">
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
v-hasPermi="['system:banner:update']">修改
v-hasPermi="['market:banner:update']">修改
</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
v-hasPermi="['system:banner:delete']">删除
v-hasPermi="['market:banner:delete']">删除
</el-button>
</template>
</el-table-column>