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/components/SearchBar.vue | 29 ++++++++++++++++++++++------- 1 files changed, 22 insertions(+), 7 deletions(-) diff --git a/src/components/SearchBar.vue b/src/components/SearchBar.vue index 49c3e62..19f48c3 100644 --- a/src/components/SearchBar.vue +++ b/src/components/SearchBar.vue @@ -1,6 +1,6 @@ <template> <el-row class="layout"> - <el-col :span="10"> + <el-col :span="$slots.summary ? 10 : 24"> <el-form :inline="true" :model="formSearch"> <el-form-item label="鎬讳换鍔�"> <!-- <el-input v-model="formSearch.topTaskId" placeholder="鎬讳换鍔�" /> --> @@ -18,16 +18,16 @@ </el-select> </el-form-item> <FYOptionScene - :allOption="true" + :allOption="false" :type="2" v-model:value="formSearch.scenetype" ></FYOptionScene> - <el-form-item> + <el-form-item v-show="btnShow"> <el-button type="primary" @click="onSubmit">鏌ヨ</el-button> </el-form-item> </el-form> </el-col> - <el-col :span="14"> + <el-col :span="$slots.summary ? 14 : 0"> <el-row justify="end"> <slot name="summary"></slot> </el-row> @@ -40,6 +40,17 @@ export default { emits: ['onSubmit'], + props: { + btnShow: { + type: Boolean, + default: true + }, + init: { + type: Boolean, + default: true + } + }, + data() { return { topTasks: [], @@ -62,7 +73,9 @@ }); this.topTasks = list; this.formSearch.topTaskId = list[0].value; - this.onSubmit(); + if (this.init) { + this.onSubmit(); + } }); }, //鏌ヨ瀛愪换鍔$粺璁′俊鎭� @@ -72,7 +85,8 @@ ); const param = { topTask: task ? task.data : {}, - sceneTypeId: this.formSearch.scenetype.value + sceneTypeId: this.formSearch.scenetype.value, + sceneTypeName: this.formSearch.scenetype.label, }; // console.log(param); @@ -81,7 +95,8 @@ }, mounted() { this.getOptions(); - } + }, + expose: ['onSubmit'] }; </script> -- Gitblit v1.9.3