/** * Web二雪 * 趁时光不老 努力活成自己想要成为的样子 */ Page({ data: {}, showtoast() { wx.showToast({ title: '正在完善,看看其他的吧', icon: 'none' }) }, // 退出登录 loginOut() { wx.showModal({ title: "退出提示", content: "是否现在就退出", showCancel: true, confirmColor: "#0b0041", confirmText: "确定", success: (res) => { if (res.confirm) { wx.clearStorage({ success: (res) => { wx.reLaunch({ url: '/pages/welcome/index', }) }, }) } } }) } })