const app = getApp(); Page({ data: { list: [], }, onLoad() { const SystemInfo = app.globalSystemInfo; if (SystemInfo) { const { bottom } = SystemInfo.capsulePosition; this.setData({ bottom: bottom, }); } app.waitLogin().then(() => { this.getDetail(); }); }, getDetail() { wx.ajax({ method: "GET", url: "?r=zd/patient-score/get-score-explain", data: {}, }).then((res) => { this.setData({ list: res, }); }); }, handleBack() { wx.navigateBack(); }, });