From de6fd089b37613808e5a3bef38ecc0761f7456e0 Mon Sep 17 00:00:00 2001 From: Riku <risaku@163.com> Date: 星期日, 02 三月 2025 22:07:47 +0800 Subject: [PATCH] AOD数据产品 --- src/views/satellitetelemetry/component/SatelliteSearchBar.vue | 23 ++++++++++++----------- 1 files changed, 12 insertions(+), 11 deletions(-) diff --git a/src/views/satellitetelemetry/component/SatelliteSearchBar.vue b/src/views/satellitetelemetry/component/SatelliteSearchBar.vue index 84a8516..2533597 100644 --- a/src/views/satellitetelemetry/component/SatelliteSearchBar.vue +++ b/src/views/satellitetelemetry/component/SatelliteSearchBar.vue @@ -1,6 +1,6 @@ <template> - <el-row> - <el-col :span="20"> + <!-- <el-row> --> + <!-- <el-col :span="20"> --> <el-form label-position="right" label-width="60px" :inline="false"> <el-form-item label="鍖哄煙"> <OptionLocation2 @@ -16,9 +16,9 @@ v-model="gridGroup" ></OptionGridGroup> </el-form> - </el-col> - <el-col :span="4"> - <el-form-item> + <!-- </el-col> --> + <!-- <el-col :span="4"> --> + <!-- <el-form-item> <el-button :loading="loading" :disabled="!gridGroup" @@ -29,15 +29,15 @@ > 鏌ヨ </el-button> - </el-form-item> - </el-col> - </el-row> + </el-form-item> --> + <!-- </el-col> --> + <!-- </el-row> --> </template> <script setup> import { ref, watch } from 'vue'; defineProps({ - loading: Boolean + loading: Boolean, }); const location = ref(undefined); @@ -63,8 +63,9 @@ }); watch(gridGroup, (nv, ov) => { - // 棣栨杩涘叆鑷姩瑙﹀彂涓�娆℃煡璇簨浠� - if (ov == undefined && nv != ov) { + // 鑷姩瑙﹀彂涓�娆℃煡璇簨浠� + // if (ov == undefined && nv != ov) { + if (nv != ov) { handleClick(); } }); -- Gitblit v1.9.3