| | |
| | | icon="el-icon-plus" |
| | | size="mini" |
| | | @click="handleLoadXml" |
| | | v-hasPermi="['flow:img:add']" |
| | | >新增</el-button> |
| | | </el-col> |
| | | <el-col :span="1.5"> |
| | |
| | | size="mini" |
| | | :disabled="multiple" |
| | | @click="handleDelete" |
| | | v-hasPermi="['system:deployment:remove']" |
| | | v-hasPermi="['flow:img:del']" |
| | | >删除</el-button> |
| | | </el-col> |
| | | <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
| | |
| | | <el-table-column label="部署时间" align="center" prop="deploymentTime" width="180"/> |
| | | <el-table-column label="操作" width="250" fixed="right"class-name="small-padding fixed-width"> |
| | | <template slot-scope="scope"> |
| | | <el-button @click="handleLoadXml(scope.row)" icon="el-icon-edit-outline" type="text" size="small">设计</el-button> |
| | | <el-button @click="handleLoadXml(scope.row)" icon="el-icon-edit-outline" type="text" size="small" v-hasPermi="['flow:img:add']">设计</el-button> |
| | | <el-button @click="handleConfig(scope.row)" icon="el-icon-edit-outline" type="text" size="small">流程配置</el-button> |
| | | <el-button @click="handleAddForm(scope.row)" icon="el-icon-edit-el-icon-s-promotion" type="text" size="small" v-if="scope.row.formId == null">配置主表单</el-button> |
| | | <el-button @click="handleUpdateSuspensionState(scope.row)" icon="el-icon-video-pause" type="text" size="small" v-if="scope.row.suspensionState === 1">挂起</el-button> |
| | | <el-button @click="handleUpdateSuspensionState(scope.row)" icon="el-icon-video-pause" type="text" size="small" v-hasPermi="['flow:img:hangup']" v-if="scope.row.suspensionState === 1">挂起</el-button> |
| | | <el-button @click="handleUpdateSuspensionState(scope.row)" icon="el-icon-video-play" type="text" size="small" v-if="scope.row.suspensionState === 2">激活</el-button> |
| | | <el-button @click="handleDelete(scope.row)" icon="el-icon-delete" type="text" size="small" v-hasPermi="['system:deployment:remove']">删除</el-button> |
| | | <el-button @click="handleDelete(scope.row)" icon="el-icon-delete" type="text" size="small" v-hasPermi="['flow:img:del']">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |