兰宝车间质量管理系统-前端
gssong
2024-03-24 cd129aa949dff285cda41080523eb89b1f7b68be
src/views/workflow/task/taskFinish.vue
@@ -44,7 +44,7 @@
        <el-table-column align="center" prop="startTime" label="创建时间" width="160"></el-table-column>
        <el-table-column label="操作" align="center" width="200">
          <template #default="scope">
              <el-button type="primary" size="small" icon="View" @click="handleView(scope.row)">查看</el-button>
            <el-button type="primary" size="small" icon="View" @click="handleView(scope.row)">查看</el-button>
          </template>
        </el-table-column>
      </el-table>
@@ -114,8 +114,18 @@
};
/** 查看按钮操作 */
const handleView = (row) => {
  proxy.$tab.closePage(proxy.$route);
  proxy.$router.push(`/demo/leaveEdit/index/${row.id}/view`);
  if(row.wfFormDefinitionVo){
    proxy.$tab.closePage(proxy.$route);
    proxy.$router.push({
      path: `${row.wfFormDefinitionVo.path}`,
      query: {
        id: row.businessKey,
        type: 'view'
      }
    })
  }else{
    proxy?.$modal.msgError('请到流程定义菜单配置路由!');
  }
};
onMounted(() => {