fix:【bpm】bpmn 设计器:工作流节点操作按钮的操作不起作用,对应 https://t.zsxq.com/XtLYq
parent
9f1c4f2578
commit
bdec0484b6
|
|
@ -178,8 +178,7 @@
|
||||||
link
|
link
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="openModelForm('update', scope.row.id)"
|
@click="openModelForm('update', scope.row.id)"
|
||||||
v-if="hasPermiUpdate"
|
:disabled="!isManagerUser(scope.row) && !hasPermiUpdate"
|
||||||
:disabled="!isManagerUser(scope.row)"
|
|
||||||
>
|
>
|
||||||
修改
|
修改
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
@ -187,8 +186,7 @@
|
||||||
link
|
link
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="openModelForm('copy', scope.row.id)"
|
@click="openModelForm('copy', scope.row.id)"
|
||||||
v-if="hasPermiUpdate"
|
:disabled="!isManagerUser(scope.row) && !hasPermiUpdate"
|
||||||
:disabled="!isManagerUser(scope.row)"
|
|
||||||
>
|
>
|
||||||
复制
|
复制
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
@ -197,8 +195,7 @@
|
||||||
class="!ml-5px"
|
class="!ml-5px"
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="handleDeploy(scope.row)"
|
@click="handleDeploy(scope.row)"
|
||||||
v-if="hasPermiDeploy"
|
:disabled="!isManagerUser(scope.row) && !hasPermiDeploy"
|
||||||
:disabled="!isManagerUser(scope.row)"
|
|
||||||
>
|
>
|
||||||
发布
|
发布
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue