diff --git a/src/views/bpm/model/CategoryDraggableModel.vue b/src/views/bpm/model/CategoryDraggableModel.vue index 9c5b9b13..43aa5193 100644 --- a/src/views/bpm/model/CategoryDraggableModel.vue +++ b/src/views/bpm/model/CategoryDraggableModel.vue @@ -158,7 +158,7 @@ link type="primary" @click="openModelForm('update', scope.row.id)" - v-hasPermi="['bpm:model:update']" + v-if="hasPermiUpdate" :disabled="!isManagerUser(scope.row)" > 修改 @@ -167,7 +167,7 @@ link type="primary" @click="openModelForm('copy', scope.row.id)" - v-hasPermi="['bpm:model:update']" + v-if="hasPermiUpdate" :disabled="!isManagerUser(scope.row)" > 复制 @@ -177,7 +177,7 @@ class="!ml-5px" type="primary" @click="handleDeploy(scope.row)" - v-hasPermi="['bpm:model:deploy']" + v-if="hasPermiDeploy" :disabled="!isManagerUser(scope.row)" > 发布 @@ -185,20 +185,20 @@ 更多