123456789101112131415161718 |
- import {
- getFavoritesList
- } from "~/api/user"
- import reachBottom from '~/mixins/reachBottom'
- import share from '~/mixins/share'
- Page({
- behaviors: [reachBottom,share],
- data: {},
- onShow() {
- this.resetData()
- },
- async loadMore() {
- this.getData(getFavoritesList, {})
- },
- onReachBottom() {
- this.loadMore()
- },
- })
|