From c1d2051abc8ca88cd07f0d7c56c0dbf8165d5c33 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期四, 18 九月 2025 17:02:22 +0800 Subject: [PATCH] 2025.9.18 数据产品(待完成) --- src/views/fysp/data-product/base-data-product/components/ProdQueryOpt.vue | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/src/views/fysp/data-product/base-data-product/components/ProdQueryOpt.vue b/src/views/fysp/data-product/base-data-product/components/ProdQueryOpt.vue index 55ed176..a1ac625 100644 --- a/src/views/fysp/data-product/base-data-product/components/ProdQueryOpt.vue +++ b/src/views/fysp/data-product/base-data-product/components/ProdQueryOpt.vue @@ -4,6 +4,7 @@ <div><el-text tag="b" size="large">浜у搧鐢熸垚閫夐」</el-text></div> </template> <SearchBar + v-show="active" ref="refSearchBar" :btn-show="false" :init="false" @@ -11,7 +12,7 @@ > </SearchBar> <template #footer> - <el-row justify="space-around"> + <el-row v-show="active" justify="end"> <el-button type="primary" size="default" @@ -31,6 +32,10 @@ loading: { type: Boolean, default: false + }, + active:{ + type: Boolean, + default: true } }); const emit = defineEmits(['submit']); @@ -44,16 +49,22 @@ const search = (options) => { const opt = { topTaskId: options.topTask.tguid, + topTaskName: options.topTask.name, provinceCode: options.topTask.provincecode, + provinceName: options.topTask.provincename, cityCode: options.topTask.citycode, + cityName: options.topTask.cityname, districtCode: options.topTask.districtcode, + districtName: options.topTask.districtname, townCode: options.topTask.towncode, + townName: options.topTask.townname, startTime: dayjs(options.topTask.starttime).format('YYYY-MM-DD HH:mm:ss'), endTime: dayjs(options.topTask.endtime) .add(1, 'day') .add(-1, 'second') .format('YYYY-MM-DD HH:mm:ss'), sceneTypeId: options.sceneTypeId, + sceneTypeName: options.sceneTypeName, needCache: true }; emit('submit', opt); -- Gitblit v1.9.3