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()
  },
})