[绑定关系,弹框]

This commit is contained in:
唐明明
2023-07-08 10:04:14 +08:00
parent cc5d559bef
commit f870682e25
12 changed files with 133 additions and 20 deletions

10
app.js
View File

@@ -5,7 +5,7 @@
import api from "api/index"
App({
onLaunch() {
onLaunch(options) {
// 检查用户登录状态
const token = wx.getStorageSync("token")
if(token){
@@ -49,10 +49,10 @@ App({
wx.$api = api
},
globalData: {
isUser : false,
userInfo : null,
barHeight: '',
inviteText: '', // 邀请好友临时存储
isUser : false,
userInfo : null,
barHeight : '',
inviteText : '', // 邀请好友临时存储
isExperience: '' // 体验官身份
}
})