推进活动系统最小成品闭环与游客体验

This commit is contained in:
2026-04-07 19:05:18 +08:00
parent 1a6008449e
commit 6cd16f08dd
102 changed files with 16087 additions and 3556 deletions

View File

@@ -126,4 +126,21 @@ Page({
statusText: '已清空登录态',
})
},
handleContinueAsGuest() {
const baseUrl = this.persistBaseUrl()
clearBackendAuthTokens()
setGlobalMockDebugBridgeEnabled(false)
const app = getApp<IAppOption>()
if (app.globalData) {
app.globalData.backendBaseUrl = baseUrl
app.globalData.backendAuthTokens = null
}
this.setData({
statusText: '已切换到游客模式,准备进入地图体验',
})
wx.redirectTo({
url: '/pages/experience-maps/experience-maps',
})
},
})