From 2ca94de8ede18ac07ccfd8dec7b6f6a707adde9b Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Mon, 01 Sep 2025 11:20:24 +0800
Subject: [PATCH] Merge branch 'refs/heads/feature/v5.0/5.0.5' into patch_management
---
src/views/resource/wayline.vue | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/src/views/resource/wayline.vue b/src/views/resource/wayline.vue
index 57551c1..244cb8f 100644
--- a/src/views/resource/wayline.vue
+++ b/src/views/resource/wayline.vue
@@ -64,6 +64,9 @@
value: 'nickname',
},
hide: true,
+ change: (value) => {
+ this.searchChange({ ...this.query,dock_name:value.value}, () => {});
+ }
},
{
label: '任务名称',
@@ -83,7 +86,10 @@
startPlaceholder: '开始时间',
endPlaceholder: '结束时间',
searchValue: [defaultStartDate, defaultEndDate], // 设置搜索表单默认值
- hide: true // 隐藏在表格中,只保留在搜索框
+ hide: true ,// 隐藏在表格中,只保留在搜索框
+ change: (value) => {
+ this.searchChange({ ...this.query,daterange:value.value}, () => {});
+ }
},
{
label: '机场名称',
--
Gitblit v1.9.3