fix: make phone authorization skippable in registration

getPhoneNumber requires verified enterprise miniprogram account.
Allow users to skip phone auth and complete registration without it.
这个提交包含在:
Guoguo
2026-05-06 06:29:03 -07:00
父节点 52456d850e
当前提交 c065d3fdce
修改 4 个文件,包含 46 行新增8 行删除
+1 -1
查看文件
@@ -16,7 +16,7 @@ Page({
app.doLogin().then(function (data) {
self.setData({ loading: false })
if (data && (data.is_new_user || !data.user_info || !data.user_info.phone)) {
if (data && data.is_new_user) {
wx.redirectTo({ url: '/pages/register/register' })
} else {
wx.switchTab({ url: '/pages/index/index' })