1234567891011121314151617181920212223 |
- import {
- getFavoritesList
- } from "~/api/user"
- import reachBottom from '~/mixins/reachBottom'
- Page({
- behaviors: [reachBottom],
- data: {},
- onShow() {
- this.resetData()
- },
- async loadMore() {
- this.getData(getFavoritesList, {})
- },
- onReachBottom() {
- this.loadMore()
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage() {
- }
- })
|