From 8d32ef6a30791411fcf8cabf283024749fe9e9ab Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Sat, 22 Nov 2025 17:15:59 +0800
Subject: [PATCH] feat:智飞工单

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

diff --git a/src/views/tickets/component/SearchBox.vue b/src/views/tickets/component/SearchBox.vue
index d3acb67..c327166 100644
--- a/src/views/tickets/component/SearchBox.vue
+++ b/src/views/tickets/component/SearchBox.vue
@@ -32,7 +32,7 @@
         <el-form-item label="关联算法:">
           <el-select
             :teleported="false"
-            v-model="searchForm.ai_types"
+            v-model="searchForm.ai_typesValue"
             placeholder="请选择关联航线"
             clearable>
             <el-option
@@ -98,6 +98,7 @@
 const cycleDateRange = ref('')
 const searchForm = reactive({
   ai_types: [],
+  ai_typesValue: '',
   deal_time: "",
   file_id: "",
   key_word: "",
@@ -154,7 +155,7 @@
     start_date: cycleDateRange.value.length
       ? dayjs(dateRange?.value[0]).startOf('day').format(timeFormat)
       : null,
-    emd_date: cycleDateRange.value.length
+    end_date: cycleDateRange.value.length
       ? dayjs(dateRange?.value[1]).startOf('day').format(timeFormat)
       : null,
   };
@@ -163,6 +164,7 @@
 
 function handleReset () {
   searchForm.ai_types = []
+  searchForm.ai_typesValue = ''
   searchForm.deal_time = ""
   searchForm.file_id = ""
   searchForm.key_word = ""

--
Gitblit v1.9.3