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