| | |
| | | </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> |
| | |
| | | params: { |
| | | // 请求参数 |
| | | pageNumber: 1, |
| | | pageSize: 10, |
| | | pageSize: 999, |
| | | storeName: "", |
| | | }, |
| | | dateList: [ |
| | |
| | | |
| | | shopTotal: "", // 店铺总数 |
| | | shopsData: [], // 店铺数据 |
| | | storeLoading: false |
| | | }; |
| | | }, |
| | | mounted() { |