deploy type
This commit is contained in:
@ -105,7 +105,7 @@
|
||||
:show-overflow-tooltip="true"
|
||||
>
|
||||
<template #default="{ row }">
|
||||
<el-button link @click="handleProcessView(row)">
|
||||
<el-button type="primary" link @click="handleProcessView(row)">
|
||||
<span>{{ row.processName }}</span>
|
||||
</el-button>
|
||||
</template>
|
||||
@ -229,6 +229,7 @@
|
||||
<el-button
|
||||
link
|
||||
size="small"
|
||||
type="warning"
|
||||
icon="video-pause"
|
||||
v-if="!row.suspended"
|
||||
@click.native="handleChangeState(row, 'suspended')"
|
||||
@ -237,6 +238,7 @@
|
||||
>
|
||||
<el-button
|
||||
link
|
||||
type="success"
|
||||
size="small"
|
||||
icon="video-play"
|
||||
v-if="row.suspended"
|
||||
@ -247,6 +249,7 @@
|
||||
<el-button
|
||||
link
|
||||
size="small"
|
||||
type="danger"
|
||||
icon="delete"
|
||||
@click="handleDelete(row)"
|
||||
v-hasPermi="['flowable:deploy:remove']"
|
||||
|
Reference in New Issue
Block a user