const _app = getApp() Page({ data: {}, onLoad() {}, handleLoginOut() { wx.showModal({ title: '确定注销吗?', confirmColor: 'rgba(246, 74, 58, 1)', success: (res) => { if (res.confirm) { } }, }) }, }) export {}