修改搜索

This commit is contained in:
庞东林
2021-12-09 09:22:43 +08:00
parent 0671bc379e
commit dc429276a0
3 changed files with 8 additions and 8 deletions

View File

@@ -8,9 +8,9 @@
<a-tab-pane key="special" tab="专项湖库"> <a-tab-pane key="special" tab="专项湖库">
<special-lake></special-lake> <special-lake></special-lake>
</a-tab-pane> </a-tab-pane>
<a-tab-pane key="special-avg" tab="专项湖库均值"> <!-- <a-tab-pane key="special-avg" tab="专项湖库均值">
<special-avg></special-avg> <special-avg></special-avg>
</a-tab-pane> </a-tab-pane> -->
</a-tabs> </a-tabs>
</a-card> </a-card>
</div> </div>
@@ -19,13 +19,13 @@
<script> <script>
import SpecialLake from "./special"; import SpecialLake from "./special";
import InnerLake from "./inner"; import InnerLake from "./inner";
import SpecialAvg from "./special-avg" // import SpecialAvg from "./special-avg"
export default { export default {
name: 'StatisticLake', name: 'StatisticLake',
components: { components: {
SpecialLake, SpecialLake,
InnerLake, InnerLake,
SpecialAvg // SpecialAvg
}, },
data() { data() {
return { return {

View File

@@ -7,7 +7,7 @@
<a-row> <a-row>
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-form-item label="断面名称:"> <a-form-item label="断面名称:">
<a-select mode="multiple" v-model:value="where.sectionName" allowClear showSearch> <a-select mode="multiple" v-model:value="where.sectionNameList" allowClear showSearch>
<a-select-option v-for="item in sectionOptions" :key="item.value" <a-select-option v-for="item in sectionOptions" :key="item.value"
>{{ item.label }} >{{ item.label }}
</a-select-option> </a-select-option>
@@ -51,7 +51,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-form-item label="区域:"> <a-form-item label="区域:">
<a-select <a-select
v-model:value="where.checked" v-model:value="where.regionNameList" mode="multiple"
allowClear allowClear
placeholder="未选择" placeholder="未选择"
> >

View File

@@ -7,7 +7,7 @@
<a-row> <a-row>
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-form-item label="断面名称:"> <a-form-item label="断面名称:">
<a-select mode="multiple" v-model:value="where.sectionName" allowClear showSearch> <a-select mode="multiple" v-model:value="where.sectionNameList" allowClear showSearch>
<a-select-option v-for="item in sectionOptions" :key="item.value" <a-select-option v-for="item in sectionOptions" :key="item.value"
>{{ item.label }} >{{ item.label }}
</a-select-option> </a-select-option>
@@ -51,7 +51,7 @@
<a-col :lg="6" :md="12" :sm="24" :xs="24"> <a-col :lg="6" :md="12" :sm="24" :xs="24">
<a-form-item label="区域:"> <a-form-item label="区域:">
<a-select <a-select
v-model:value="where.checked" v-model:value="where.regionNameList"
allowClear allowClear
placeholder="未选择" placeholder="未选择"
> >