const app = getApp() Page({ data: {}, onLoad() {}, handleChanegTel() { wx.navigateTo({ url: '/doctor/pages/changeTel/index', }) }, handleLoginOut() { wx.showModal({ title: '确定退出登录吗?', confirmColor: 'rgba(246, 74, 58, 1)', success: (res) => { if (res.confirm) { wx.ajax({ method: 'POST', url: '?r=wtx/doctor/account/reg-logout', data: {}, }).then(() => { app.startLogin(() => { wx.reLaunch({ url: '/pages/index/index', }) }) }) } }, }) }, }) export {}