From 9ae6ef3317a840b7299d6733ee3220e8fbeda473 Mon Sep 17 00:00:00 2001 From: peng <peng.com> Date: 星期一, 22 九月 2025 10:57:37 +0800 Subject: [PATCH] 时间筛选添加时分秒 --- manager/src/components/affix-time.vue | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/manager/src/components/affix-time.vue b/manager/src/components/affix-time.vue index a81b6d2..dc396c9 100644 --- a/manager/src/components/affix-time.vue +++ b/manager/src/components/affix-time.vue @@ -11,11 +11,11 @@ </Select> </div> <div class="shop-list" v-if="!closeShop"> - <Select clearable @on-change="changeshop(selectedWay)" v-model="storeId" placeholder="搴楅摵鏌ヨ" + <Select clearable @on-change="changeshop(selectedWay)" filterable :loading="storeLoading" v-model="storeId" placeholder="搴楅摵鏌ヨ" style="width:200px;margin-left:10px;"> - <Scroll :on-reach-bottom="handleReachBottom"> - <Option v-for="(item, index) in shopsData" :value="item.id" :key="index">{{ item.storeName }}</Option> - </Scroll> +<!-- <Scroll :on-reach-bottom="handleReachBottom">--> + <Option v-for="(item, index) in shopsData" :value="item.id" :key="item.id">{{ item.storeName }}</Option> +<!-- <Scroll>--> </Select> </div> </div> @@ -40,7 +40,7 @@ params: { // 璇锋眰鍙傛暟 pageNumber: 1, - pageSize: 10, + pageSize: 999, storeName: "", }, dateList: [ @@ -92,6 +92,7 @@ shopTotal: "", // 搴楅摵鎬绘暟 shopsData: [], // 搴楅摵鏁版嵁 + storeLoading: false }; }, mounted() { -- Gitblit v1.8.0