兰宝车间质量管理系统-前端
LiuHao
2024-04-15 40a75dae3182cb55b30a2e8093c5eed82465f59c
src/views/workflow/task/myDocument.vue
@@ -71,22 +71,14 @@
            <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"
                >
@@ -264,6 +256,6 @@
    taskId: row.id,
    type: type
  });
  workflowCommon.routerJump(routerJumpVo,proxy)
  workflowCommon.routerJump(routerJumpVo, proxy);
};
</script>