Compare commits

...

3 Commits

Author SHA1 Message Date
kk 18870f3e7d 注册成功后保存user_info
Uni-app H5 Deploy (Prod + Staging) / deploy (release) Successful in 46s
2026-07-11 18:05:45 +08:00
kk 878778f8f9 解决code被重复使用的问题
Uni-app H5 Deploy (Prod + Staging) / deploy (release) Successful in 41s
2026-07-11 17:52:33 +08:00
kk eac66c965b 修复bug
Uni-app H5 Deploy (Prod + Staging) / deploy (release) Successful in 41s
2026-07-11 17:22:41 +08:00
3 changed files with 51 additions and 24 deletions
+1 -2
View File
@@ -213,8 +213,7 @@ export default {
this.step = 'closed';
} else if (latestStatus === 201) {
this.step = 'complete';
const orderId = ret.data[0].order_id || '';
this.fetchOrder(orderId);
this.fetchOrder(flowId);
return;
}
}
+31 -9
View File
@@ -72,6 +72,9 @@ export default {
* 发起 OAuth 授权(静默授权,只获取 openid)
*/
async startAuth() {
// 清除上次使用的 code 标记
uni.removeStorageSync('__used_auth_code');
const platform = detectPlatform();
const appNo = getAppNo(platform);
@@ -140,6 +143,20 @@ export default {
return;
}
// 防止 code 重复提交:先检查再标记
const usedCode = uni.getStorageSync('__used_auth_code');
if (usedCode === code) {
console.warn('[loading] code 已使用过,跳过');
return;
}
uni.setStorageSync('__used_auth_code', code);
// 立即清除 URL 中的 code 参数,避免刷新重复处理
const url = new URL(window.location.href);
url.searchParams.delete('code');
url.searchParams.delete('state');
window.history.replaceState({}, '', url.toString());
try {
this.statusText = '正在验证身份...';
@@ -165,12 +182,6 @@ export default {
return;
}
// 清除 URL 中的 code 参数,避免刷新重复处理
const url = new URL(window.location.href);
url.searchParams.delete('code');
url.searchParams.delete('state');
window.history.replaceState({}, '', url.toString());
// 存储 openid
uni.setStorageSync('openid', openid);
@@ -219,6 +230,9 @@ export default {
* 发起非静默授权获取用户信息(snsapi_userinfo,弹窗确认)
*/
async startUserInfoAuth() {
// 清除上次使用的 code 标记
uni.removeStorageSync('__used_auth_code');
const platform = detectPlatform();
const appNo = getAppNo(platform);
@@ -288,16 +302,24 @@ export default {
return;
}
try {
this.statusText = '正在获取用户信息...';
// 防止 code 重复提交
const usedCode = uni.getStorageSync('__used_auth_code');
if (usedCode === code) {
console.warn('[loading] code 已使用过,跳过');
return;
}
uni.setStorageSync('__used_auth_code', code);
// 清除 URL 中的 code/action 参数,避免刷新重复处理
// 立即清除 URL 中的 code/action 参数,避免刷新重复处理
const url = new URL(window.location.href);
url.searchParams.delete('code');
url.searchParams.delete('state');
url.searchParams.delete('action');
window.history.replaceState({}, '', url.toString());
try {
this.statusText = '正在获取用户信息...';
// 用 code 调用 POST /api/v1/user/info 获取用户信息(必须用 POST,GET 是另一个端点)
console.log('[loading] 请求 POST user/info, app_no:', appNo, 'code:', code);
const res = await gatewayPost('/api/v1/user/info', {
+15 -9
View File
@@ -187,19 +187,25 @@ export default {
// 保存 token
uni.setStorageSync('token', ret.data.token);
// Mock 模式下,合并真实注册信息和 mock 配置
// 存储 user_info(至少有 user_id 就能开门)
const existing = uni.getStorageSync('user_info') || {};
const userInfo = {
user_id: ret.data.user_id || existing.user_id || '',
phone: this.phone || existing.phone || '',
nickname: existing.nickname || '',
avatar: existing.avatar || '',
};
// Mock 模式下补充 mock 数据
if (config.mockWechatLogin) {
const mockInfo = config.mockUser.user_info;
const userInfo = {
user_id: ret.data.user_id || mockInfo.user_id,
phone: this.phone, // 使用真实注册的手机号
nickname: mockInfo.nickname,
avatar: mockInfo.avatar,
};
uni.setStorageSync('user_info', userInfo);
console.log('[register] Mock 模式,合并用户信息:', userInfo);
userInfo.nickname = userInfo.nickname || mockInfo.nickname;
userInfo.avatar = userInfo.avatar || mockInfo.avatar;
}
uni.setStorageSync('user_info', userInfo);
console.log('[register] 存储 user_info:', userInfo);
// 清除临时数据
uni.removeStorageSync('temp_token');
uni.removeStorageSync('auth_info');