fix: 列表按钮权限问题,统一修复。

This commit is contained in:
tianyongbao
2024-12-16 17:39:44 +08:00
parent 043fc38432
commit 3a9c69c61c
25 changed files with 29 additions and 29 deletions

View File

@@ -42,7 +42,7 @@
<template v-slot="scope">
<div class="ctrl-btn d-flex">
<el-tooltip v-for="item in operateList" :key="item.id" class="item" effect="dark" :content="item.title" placement="top">
<el-button :v-hasPermi="item.hasPermi" @click="handleOperate(item.id, scope.row)">{{ item.name }}</el-button>
<el-button v-hasPermi="item.hasPermi" @click="handleOperate(item.id, scope.row)">{{ item.name }}</el-button>
</el-tooltip>
</div>
</template>