| | |
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
| | | <template #default="scope"> |
| | | <el-tooltip |
| | | v-if=" |
| | | scope.row.businessStatus === 'draft' || |
| | | scope.row.businessStatus === 'cancel' || |
| | | scope.row.businessStatus === 'back' |
| | | " |
| | | v-if="scope.row.businessStatus === 'draft' || scope.row.businessStatus === 'cancel' || scope.row.businessStatus === 'back'" |
| | | content="修改" |
| | | placement="top" |
| | | > |
| | | <el-button v-hasPermi="['demo:leave:edit']" link type="primary" icon="Edit" @click="handleOpen(scope.row,'update')"></el-button> |
| | | </el-tooltip> |
| | | <el-tooltip |
| | | v-if=" |
| | | scope.row.businessStatus === 'draft' || |
| | | scope.row.businessStatus === 'cancel' || |
| | | scope.row.businessStatus === 'back' |
| | | " |
| | | v-if="scope.row.businessStatus === 'draft' || scope.row.businessStatus === 'cancel' || scope.row.businessStatus === 'back'" |
| | | content="删除" |
| | | placement="top" |
| | | > |
| | |
| | | taskId: row.id, |
| | | type: type |
| | | }); |
| | | workflowCommon.routerJump(routerJumpVo,proxy) |
| | | workflowCommon.routerJump(routerJumpVo, proxy); |
| | | }; |
| | | </script> |