<el-table-column type="selection" width="40" align="center" v-if="auth('productCategory:batchDelete') || auth('productCategory:export')" />
  1. v-if="auth('productCategory:batchDelete') || auth('productCategory:export')": 这是一个Vue.js指令,用于条件渲染。只有当满足以下任一条件时,才会显示这一列:
    • auth('productCategory:batchDelete') 返回 true:表示当前用户有批量删除产品类别的权限。
    • auth('productCategory:export') 返回 true:表示当前用户有导出产品类别的权限。

 

posted on 2025-08-30 09:04  小石头的一天  阅读(8)  评论(0)    收藏  举报