From bdec0484b6fc63bf9fdc970b4b3b87753c442005 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sun, 23 Nov 2025 18:29:08 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E3=80=90bpm=E3=80=91bpmn=20?= =?UTF-8?q?=E8=AE=BE=E8=AE=A1=E5=99=A8=EF=BC=9A=E5=B7=A5=E4=BD=9C=E6=B5=81?= =?UTF-8?q?=E8=8A=82=E7=82=B9=E6=93=8D=E4=BD=9C=E6=8C=89=E9=92=AE=E7=9A=84?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E4=B8=8D=E8=B5=B7=E4=BD=9C=E7=94=A8=EF=BC=8C?= =?UTF-8?q?=E5=AF=B9=E5=BA=94=20https://t.zsxq.com/XtLYq?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/bpm/model/CategoryDraggableModel.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/views/bpm/model/CategoryDraggableModel.vue b/src/views/bpm/model/CategoryDraggableModel.vue index 21020b78..003e46f3 100644 --- a/src/views/bpm/model/CategoryDraggableModel.vue +++ b/src/views/bpm/model/CategoryDraggableModel.vue @@ -178,8 +178,7 @@ link type="primary" @click="openModelForm('update', scope.row.id)" - v-if="hasPermiUpdate" - :disabled="!isManagerUser(scope.row)" + :disabled="!isManagerUser(scope.row) && !hasPermiUpdate" > 修改 @@ -187,8 +186,7 @@ link type="primary" @click="openModelForm('copy', scope.row.id)" - v-if="hasPermiUpdate" - :disabled="!isManagerUser(scope.row)" + :disabled="!isManagerUser(scope.row) && !hasPermiUpdate" > 复制 @@ -197,8 +195,7 @@ class="!ml-5px" type="primary" @click="handleDeploy(scope.row)" - v-if="hasPermiDeploy" - :disabled="!isManagerUser(scope.row)" + :disabled="!isManagerUser(scope.row) && !hasPermiDeploy" > 发布