From ece02de07ff272e954824e19d9269946899c17a6 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Thu, 14 Aug 2025 17:32:28 +0800
Subject: [PATCH] style: 表格列宽度调整

---
 src/views/tickets/orderLog.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/views/tickets/orderLog.vue b/src/views/tickets/orderLog.vue
index e0b350d..d2b8c70 100644
--- a/src/views/tickets/orderLog.vue
+++ b/src/views/tickets/orderLog.vue
@@ -598,7 +598,7 @@
             showOverflowTooltip: true,
           },
           {
-            label: '所属单位', prop: 'dept_name', width: 100, ellipsis: true,
+            label: '所属单位', prop: 'dept_name', ellipsis: true,
             showOverflowTooltip: true,
           },
           {
@@ -614,7 +614,7 @@
             showOverflowTooltip: true,
           },
           {
-            label: '关联航线', prop: 'wayline_name', width: 100, ellipsis: true, overHidden: true,
+            label: '关联航线', prop: 'wayline_name', ellipsis: true, overHidden: true,
             showOverflowTooltip: true,
           },
           {
@@ -698,7 +698,7 @@
     this.fetchTableData()
     const id = this.$route.query.id
     console.log('idddddd',id);
-    
+
     if (id) {
       // 确保 id 存在
       this.handleViewDetail({ id })
@@ -706,7 +706,7 @@
         find && (find.query = {})
     } else {
       console.error('工单ID不存在!')
-           
+
     }
   },
   computed: {
@@ -874,7 +874,7 @@
 
           this.form.begin_time = this.formatDate(dateRange[0])
           this.form.end_time = this.formatDate(dateRange[1])
-          
+
           // 如果选中日期包含当前天,那么选中的时间点不能小于当前时间
           if (this.form.deal_time) {
             const selectedDate = dayjs(this.form.date_range[0]).format('YYYY-MM-DD')

--
Gitblit v1.9.3