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