12345678910111213141516171819 |
- import {
- getSelfRead
- } from '~/api/user'
- import reachBottom from '~/mixins/reachBottom'
- Page({
- behaviors: [reachBottom],
- data: {
- },
- onLoad(options) {
- this.loadMore()
- },
- loadMore() {
- this.getData(getSelfRead)
- },
- onReachBottom() {
- this.loadMore()
- },
- })
|