import { getFollowWorks } from '~/api/works' import reachBottom from '~/mixins/reachBottom' Page({ behaviors: [reachBottom], data: { }, onLoad(options) { this.resetData() }, loadMore() { this.getData(getFollowWorks, {}) }, onReachBottom() { this.loadMore() } })