peng
1 天以前 b56fcbe8d410c18b3a6ff7e4eb0e24815bbb5e09
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() {