Initial commit

This commit is contained in:
admin
2025-12-12 16:13:04 +08:00
parent 08d645e572
commit a9aefed4be
7 changed files with 59 additions and 96 deletions

View File

@@ -3,7 +3,6 @@ const { request } = require('../../utils/request')
Page({
data: {
hasUserInfo: false,
hasPhone: false
},
onLoad() {
@@ -24,16 +23,14 @@ Page({
// If we are here, user probably needs to authorize.
// Update UI state
const hasNick = user.wechat_nickname && user.wechat_nickname !== '微信用户';
const hasPhone = !!user.phone;
this.setData({
hasUserInfo: hasNick,
hasPhone: hasPhone
})
// If somehow we ended up here but profile is full, go home
if (hasNick && hasPhone) {
if (hasPhone) {
wx.switchTab({ url: '/pages/index/index' })
}
} else {
@@ -46,46 +43,6 @@ Page({
}
}
},
getUserProfile(e) {
wx.getUserProfile({
desc: '用于完善会员资料',
success: (res) => {
const { userInfo } = res
console.log('getUserProfile success', userInfo)
// Update backend
// We need user ID from globalData
if (app.globalData.userInfo && app.globalData.userInfo.id) {
this.updateUserInfo(userInfo)
} else {
// Should not happen if app.js login succeeded
wx.showToast({ title: '登录状态异常,请重启', icon: 'none' })
}
},
fail: (err) => {
console.error('getUserProfile failed', err)
wx.showToast({ title: '需要授权才能继续', icon: 'none' })
}
})
},
updateUserInfo(wxUserInfo) {
request({
url: `/students/${app.globalData.userInfo.id}/`,
method: 'PATCH',
data: {
wechat_nickname: wxUserInfo.nickName,
avatar: wxUserInfo.avatarUrl
// name: wxUserInfo.nickName // Optional: sync name too
}
}).then(res => {
console.log('Update user info success', res)
app.globalData.userInfo = { ...app.globalData.userInfo, ...res }
this.setData({ hasUserInfo: true })
}).catch(err => {
console.error('Update user info failed', err)
wx.showToast({ title: '更新资料失败', icon: 'none' })
})
},
getPhoneNumber(e) {
console.log('getPhoneNumber', e)
if (e.detail.errMsg === 'getPhoneNumber:ok') {
@@ -98,34 +55,16 @@ Page({
}).then(res => {
console.log('Get phone success', res)
if (res.phone) {
this.setData({ hasPhone: true })
if (app.globalData.userInfo) {
app.globalData.userInfo.phone = res.phone
}
wx.showToast({
title: '登录成功',
icon: 'success'
})
// Redirect to home
setTimeout(() => {
wx.switchTab({ url: '/pages/index/index' })
}, 1500)
app.globalData.userInfo = { ...app.globalData.userInfo, ...res }
this.setData({ hasPhone: true })
wx.switchTab({ url: '/pages/index/index' })
}
}).catch(err => {
console.error('Get phone failed', err)
wx.showToast({ title: '获取手机号失败', icon: 'none' })
})
} else {
console.log('User denied phone number')
// If user denies, we can optionally let them in anyway if that's the requirement?
// User said: "If openID exists, direct login".
// This implies for NEW users, they MIGHT need to authorize phone.
// But strictly speaking, once they authorized UserProfile (Avatar/Nick),
// the OpenID exists.
// But the "User Phone" part is usually critical.
// Let's keep strict requirement for phone for NEW users for now unless asked otherwise.
wx.showToast({ title: '需要授权手机号才能继续', icon: 'none' })
}
}
})