本时支付宝小程序

This commit is contained in:
唐明明
2020-09-24 11:08:03 +08:00
parent 11e0df1cc8
commit 6a67082c25
510 changed files with 20316 additions and 2 deletions

18
pages/set/set.js Executable file
View File

@@ -0,0 +1,18 @@
Page({
outLogin(){
my.showLoading({
content: "退出登录"
});
my.removeStorage({
key : 'userToken',
success : (res)=> {
if(res.success){
my.reLaunch({
url: "../login/login"
})
}
my.hideLoading();
}
})
}
});