mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-17 16:36:03 +08:00
19 lines
301 B
JavaScript
19 lines
301 B
JavaScript
var app = getApp();
|
|
|
|
Page({
|
|
data: {
|
|
userInfo: {},
|
|
mode: ['信息反馈', '联系客服', '关于我们']
|
|
},
|
|
onLoad: function () {
|
|
},
|
|
getOut(){
|
|
wx.clearStorage({
|
|
success: (res) => {
|
|
wx.reLaunch({
|
|
url: '/pages/login/index',
|
|
})
|
|
},
|
|
})
|
|
}
|
|
}) |