favorite.vue 1.21 KB
<template>
  <LayoutApp :show-back="true">
    <Scroll :scrollEvents="['scroll']" :options="scrollOptions" @scroll="scroll"
            @pulling-up="onPullingUp">
      <ProductList :list="favoriteProductList.list"></ProductList>
    </Scroll>
  </LayoutApp>
</template>
<script>
import ProductList from '../../list/components/productList';
import {Scroll} from 'cube-ui';
import {createNamespacedHelpers} from 'vuex';

const {mapState, mapActions} = createNamespacedHelpers('home/favorite');

export default {
  name: 'list',
  components: {
    ProductList,
    Scroll
  },
  data() {
    return {
      scrollOptions: {
        bounce: {
          top: false
        },
        pullUpLoad: true
      },
      fixed: false
    };
  },
  mounted() {
    this.fetchFavoriteList();
  },
  methods: {
    ...mapActions(['fetchFavoriteList']),

    async onPullingUp() {
      await this.fetchFavoriteList();
    },
    scroll({ y }) {
      const height = this.$refs.banner.$el.offsetHeight + this.$refs.header.offsetHeight;

      if (-y >= height) {
        this.fixed = true;
      } else {
        this.fixed = false;
      }
    }
  },
  
  computed: {
    ...mapState(['favoriteProductList']),
  },
};
</script>

<style scoped>
</style>