From e52521dc7a3e52cf53e2ab2b4e1c71cfe0b4a10d Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Fri, 15 Aug 2025 16:48:28 +0800
Subject: [PATCH] feat:更换接口
---
src/views/tickets/orderLog.vue | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/views/tickets/orderLog.vue b/src/views/tickets/orderLog.vue
index c49171a..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,
},
{
@@ -630,10 +630,10 @@
label: '创建人', prop: 'creator_name', width: 96, ellipsis: true, overHidden: true,
showOverflowTooltip: true,
},
- {
- label: '关联机巢', prop: 'device_names', width: 112, ellipsis: true, overHidden: true,
- showOverflowTooltip: true,
- },
+ // {
+ // label: '关联机巢', prop: 'device_names', width: 112, ellipsis: true, overHidden: true,
+ // showOverflowTooltip: true,
+ // },
{
label: '工单周期频次',
prop: '',
@@ -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