From 450f68c1ee4fd4adc6725fba71d20e1fc166a3f2 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Fri, 14 Nov 2025 19:12:49 +0800
Subject: [PATCH] feat:更换发起任务时间

---
 src/views/tickets/ticket.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/views/tickets/ticket.vue b/src/views/tickets/ticket.vue
index 57987b3..9909e85 100644
--- a/src/views/tickets/ticket.vue
+++ b/src/views/tickets/ticket.vue
@@ -1114,7 +1114,7 @@
           { label: '工单编号', prop: 'orderNumber', width: 170 },
           { label: '工单名称', prop: 'orderName', width: 150, overHidden: true, tooltip: true },
           { label: '所属部门', prop: 'department', overHidden: true, tooltip: true },
-          { label: '发起时间', prop: 'startTime', width: 160, overHidden: true },
+          { label: '发起任务时间', prop: 'startTime', width: 160, overHidden: true },
           { label: '关联算法', prop: 'aiType', overHidden: true, tooltip: true },
           {
             label: '工单类型',
@@ -1845,7 +1845,7 @@
             orderName: item.event_name,
             department:
               this.departments.find(d => d.value === item.dept_id)?.label || item.dept_name,
-            startTime: item.create_time,
+            startTime: item.job_create_time || '/',
             aiType: item.ai_types,
             content: item.content, // 将后端返回的 content 映射为 content
             type: item.work_order_type_dict_key,

--
Gitblit v1.9.3