Browse Source

🪄修正动态插件中的权限字符串

Signed-off-by: KaneLeung <kk.xiaolan@gmail.com>
KaneLeung 2 years ago
parent
commit
da8369b973
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Web/src/views/system/plugin/index.vue

+ 2 - 2
Web/src/views/system/plugin/index.vue

@@ -33,8 +33,8 @@
 				<el-table-column prop="remark" label="备注" header-align="center" show-overflow-tooltip />
 				<el-table-column label="操作" width="140" fixed="right" align="center" show-overflow-tooltip>
 					<template #default="scope">
-						<el-button icon="ele-Edit" size="small" text type="primary" @click="openEditPlugin(scope.row)" v-auth="'sysPrint:update'"> 编辑 </el-button>
-						<el-button icon="ele-Delete" size="small" text type="danger" @click="delPlugin(scope.row)" v-auth="'sysPrint:delete'"> 删除 </el-button>
+						<el-button icon="ele-Edit" size="small" text type="primary" @click="openEditPlugin(scope.row)" v-auth="'sysPlugin:update'"> 编辑 </el-button>
+						<el-button icon="ele-Delete" size="small" text type="danger" @click="delPlugin(scope.row)" v-auth="'sysPlugin:delete'"> 删除 </el-button>
 					</template>
 				</el-table-column>
 			</el-table>