添加流转接口 设计流转表

This commit is contained in:
pixel
2020-11-12 18:21:03 +08:00
parent 86afc0ddf4
commit 4863b2c5be
10 changed files with 85 additions and 18 deletions

View File

@@ -56,7 +56,7 @@
<el-table-column label="按钮组">
<template slot-scope="scope">
<el-button class="table-button" @click="useWorkflowProcess(scope.row)" size="success" >使用</el-button>
<el-button class="table-button" @click="useWorkflowProcess(scope.row)" size="success" >启动</el-button>
<el-button class="table-button" @click="updateWorkflowProcess(scope.row)" size="small" type="primary">变更</el-button>
<el-button class="table-button" @click="viewWorkflowProcess(scope.row)" size="small" type="warning">查看</el-button>
<el-popover placement="top" width="160" v-model="scope.row.visible">
@@ -164,7 +164,8 @@ export default {
this.$router.push({
name: "workflowUse",
query: {
id: row.id
workflowId: row.id,
activeId:0,
}
});
},