const app = getApp(); Page({ data: { tidings:[] }, onLoad: function (options) { }, onShow: function () { app.api("users.tidings")().then(res=>{ console.log(res); this.setData({tidings: res.tidings}); }) wx.hideTabBarRedDot({index: 1}); wx.removeTabBarBadge({index: 1}); }, onPullDownRefresh: function () { }, onShareAppMessage: function () { } })