Files
AGuestSaas/pages/user/setting/setting.js
2020-12-31 16:10:36 +08:00

34 lines
684 B
JavaScript

/**
* 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',
})
},
})
}
}
})
}
})