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