From 7666f724dfb0e4fb0804f91c7f1f89b9904d6909 Mon Sep 17 00:00:00 2001
From: 愿丶 <1319542051@qq.com>
Date: 星期二, 12 三月 2024 23:48:42 +0800
Subject: [PATCH] update 调整导入模型选择流程类别方式(改为表单内下拉框)

---
 src/views/workflow/task/taskFinish.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/views/workflow/task/taskFinish.vue b/src/views/workflow/task/taskFinish.vue
index 3e8adba..fd9ce6e 100644
--- a/src/views/workflow/task/taskFinish.vue
+++ b/src/views/workflow/task/taskFinish.vue
@@ -41,7 +41,7 @@
             </el-tag>
           </template>
         </el-table-column>
-        <el-table-column align="center" prop="createTime" label="鍒涘缓鏃堕棿" width="160"></el-table-column>
+        <el-table-column align="center" prop="startTime" label="鍒涘缓鏃堕棿" width="160"></el-table-column>
         <el-table-column label="鎿嶄綔" align="center" width="160" class-name="small-padding fixed-width">
           <template #default="scope">
             <el-button link type="primary" size="small" icon="Document" @click="handleApprovalRecord(scope.row)">瀹℃壒璁板綍</el-button>
@@ -62,7 +62,7 @@
 </template>
 
 <script lang="ts" setup>
-import { getTaskFinishByPage } from '@/api/workflow/task';
+import { getPageByTaskFinish } from '@/api/workflow/task';
 import ApprovalRecord from '@/components/Process/approvalRecord.vue';
 import { TaskQuery, TaskVO } from '@/api/workflow/task/types';
 //瀹℃壒璁板綍缁勪欢
@@ -119,7 +119,7 @@
 };
 const getFinishList = () => {
   loading.value = true;
-  getTaskFinishByPage(queryParams.value).then((resp) => {
+  getPageByTaskFinish(queryParams.value).then((resp) => {
     taskList.value = resp.rows;
     total.value = resp.total;
     loading.value = false;

--
Gitblit v1.9.3