From 2370a673138be5d77d71abeb5681b34e35fba12d Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 06 May 2025 15:41:19 +0800
Subject: [PATCH] 智飞工单序号显示有问题处理 “工单状态”调整到“工单名称”后面
---
src/views/tickets/orderLog.vue | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/views/tickets/orderLog.vue b/src/views/tickets/orderLog.vue
index 1264790..415355d 100644
--- a/src/views/tickets/orderLog.vue
+++ b/src/views/tickets/orderLog.vue
@@ -530,6 +530,9 @@
tableData: [],
option: {
+ index: true,
+ indexWidth: 66,
+ indexLabel: '序号',
indexFixed: true,
align: 'center',
@@ -550,12 +553,12 @@
menuWidth: 210,
menuClassName: 'cur-menu',
column: [
- { label: '序号', prop: 'id', width: 72, ellipsis: true },
{ label: '工单编号', prop: 'job_info_num', width: 100, ellipsis: true, overHidden: true },
{ label: '工单名称', prop: 'name', width: 100, ellipsis: true, overHidden: true },
+ { label: '工单状态', prop: 'status', width: 88 },
{ label: '所属单位', prop: 'dept_name', width: 100, ellipsis: true },
{ label: '发起时间', prop: 'create_time', width: 144, ellipsis: true },
- { label: '工单内容', prop: 'content', width: 160, ellipsis: true, overHidden: true },
+ { label: '工单内容', prop: 'content', ellipsis: true, overHidden: true },
{ label: '关联航线', prop: 'wayline_name', width: 100, ellipsis: true, overHidden: true },
{ label: '关联算法', prop: 'ai_type_str', width: 100, ellipsis: true, overHidden: true },
{ label: '关联机巢', prop: 'device_names', width: 100, ellipsis: true, overHidden: true },
@@ -571,7 +574,6 @@
ellipsis: true,
// overHidden: true
},
- { label: '工单状态', prop: 'status', width: 96 },
],
},
--
Gitblit v1.9.3