This commit is contained in:
曹辉 2023-02-09 14:25:13 +08:00
parent 949833165c
commit 8e4390ad37

View File

@ -54,7 +54,7 @@
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['classify:info:add']"
v-hasPermi="['system:classifyItem:add']"
>新增</el-button
>
</el-col>
@ -66,7 +66,7 @@
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['classify:info:edit']"
v-hasPermi="['system:classifyItem:edit']"
>修改</el-button
>
</el-col>
@ -78,7 +78,7 @@
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['classify:info:remove']"
v-hasPermi="['system:classifyItem:remove']"
>删除</el-button
>
</el-col>
@ -125,7 +125,7 @@
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['classify:info:edit']"
v-hasPermi="['system:classifyItem:edit']"
>修改</el-button
>
<el-button
@ -133,7 +133,7 @@
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['classify:info:remove']"
v-hasPermi="['system:classifyItem:remove']"
>删除</el-button
>
</template>