2026-04-19 10:04:00 +08:00
|
|
|
const app = getApp()
|
|
|
|
|
|
|
|
|
|
Page({
|
|
|
|
|
data: {
|
|
|
|
|
stats: null,
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
wx.request({
|
|
|
|
|
url: `${app.globalData.baseUrl}/api/v1/checkin/stats`,
|
|
|
|
|
header: { 'X-OpenID': app.globalData.openid || '' },
|
|
|
|
|
success: (res) => this.setData({ stats: res.data }),
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
})
|