Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d392ff98b7 | |||
| 18870f3e7d | |||
| 878778f8f9 | |||
| eac66c965b |
@@ -213,8 +213,7 @@ export default {
|
|||||||
this.step = 'closed';
|
this.step = 'closed';
|
||||||
} else if (latestStatus === 201) {
|
} else if (latestStatus === 201) {
|
||||||
this.step = 'complete';
|
this.step = 'complete';
|
||||||
const orderId = ret.data[0].order_id || '';
|
this.fetchOrder(flowId);
|
||||||
this.fetchOrder(orderId);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
*/
|
*/
|
||||||
const prod = {
|
const prod = {
|
||||||
// 业务 API 地址(vms-api)
|
// 业务 API 地址(vms-api)
|
||||||
apiBaseUrl: 'http://101.200.86.98:4000',
|
apiBaseUrl: 'https://vmsapi.arklinksmart.cn',
|
||||||
|
|
||||||
// 网关地址(vms-gateway)— 用户授权、短信等接口走网关
|
// 网关地址(vms-gateway)— 用户授权、短信等接口走网关
|
||||||
apiGatewayUrl: 'https://gateway.arklinksmart.cn',
|
apiGatewayUrl: 'https://gateway.arklinksmart.cn',
|
||||||
|
|||||||
+35
-13
@@ -72,6 +72,9 @@ export default {
|
|||||||
* 发起 OAuth 授权(静默授权,只获取 openid)
|
* 发起 OAuth 授权(静默授权,只获取 openid)
|
||||||
*/
|
*/
|
||||||
async startAuth() {
|
async startAuth() {
|
||||||
|
// 清除上次使用的 code 标记
|
||||||
|
uni.removeStorageSync('__used_auth_code');
|
||||||
|
|
||||||
const platform = detectPlatform();
|
const platform = detectPlatform();
|
||||||
const appNo = getAppNo(platform);
|
const appNo = getAppNo(platform);
|
||||||
|
|
||||||
@@ -140,6 +143,20 @@ export default {
|
|||||||
return;
|
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 {
|
try {
|
||||||
this.statusText = '正在验证身份...';
|
this.statusText = '正在验证身份...';
|
||||||
|
|
||||||
@@ -165,12 +182,6 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 清除 URL 中的 code 参数,避免刷新重复处理
|
|
||||||
const url = new URL(window.location.href);
|
|
||||||
url.searchParams.delete('code');
|
|
||||||
url.searchParams.delete('state');
|
|
||||||
window.history.replaceState({}, '', url.toString());
|
|
||||||
|
|
||||||
// 存储 openid
|
// 存储 openid
|
||||||
uni.setStorageSync('openid', openid);
|
uni.setStorageSync('openid', openid);
|
||||||
|
|
||||||
@@ -219,6 +230,9 @@ export default {
|
|||||||
* 发起非静默授权获取用户信息(snsapi_userinfo,弹窗确认)
|
* 发起非静默授权获取用户信息(snsapi_userinfo,弹窗确认)
|
||||||
*/
|
*/
|
||||||
async startUserInfoAuth() {
|
async startUserInfoAuth() {
|
||||||
|
// 清除上次使用的 code 标记
|
||||||
|
uni.removeStorageSync('__used_auth_code');
|
||||||
|
|
||||||
const platform = detectPlatform();
|
const platform = detectPlatform();
|
||||||
const appNo = getAppNo(platform);
|
const appNo = getAppNo(platform);
|
||||||
|
|
||||||
@@ -288,16 +302,24 @@ export default {
|
|||||||
return;
|
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/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 {
|
try {
|
||||||
this.statusText = '正在获取用户信息...';
|
this.statusText = '正在获取用户信息...';
|
||||||
|
|
||||||
// 清除 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());
|
|
||||||
|
|
||||||
// 用 code 调用 POST /api/v1/user/info 获取用户信息(必须用 POST,GET 是另一个端点)
|
// 用 code 调用 POST /api/v1/user/info 获取用户信息(必须用 POST,GET 是另一个端点)
|
||||||
console.log('[loading] 请求 POST user/info, app_no:', appNo, 'code:', code);
|
console.log('[loading] 请求 POST user/info, app_no:', appNo, 'code:', code);
|
||||||
const res = await gatewayPost('/api/v1/user/info', {
|
const res = await gatewayPost('/api/v1/user/info', {
|
||||||
|
|||||||
@@ -187,19 +187,25 @@ export default {
|
|||||||
// 保存 token
|
// 保存 token
|
||||||
uni.setStorageSync('token', ret.data.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) {
|
if (config.mockWechatLogin) {
|
||||||
const mockInfo = config.mockUser.user_info;
|
const mockInfo = config.mockUser.user_info;
|
||||||
const userInfo = {
|
userInfo.nickname = userInfo.nickname || mockInfo.nickname;
|
||||||
user_id: ret.data.user_id || mockInfo.user_id,
|
userInfo.avatar = userInfo.avatar || mockInfo.avatar;
|
||||||
phone: this.phone, // 使用真实注册的手机号
|
|
||||||
nickname: mockInfo.nickname,
|
|
||||||
avatar: mockInfo.avatar,
|
|
||||||
};
|
|
||||||
uni.setStorageSync('user_info', userInfo);
|
|
||||||
console.log('[register] Mock 模式,合并用户信息:', userInfo);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uni.setStorageSync('user_info', userInfo);
|
||||||
|
console.log('[register] 存储 user_info:', userInfo);
|
||||||
|
|
||||||
// 清除临时数据
|
// 清除临时数据
|
||||||
uni.removeStorageSync('temp_token');
|
uni.removeStorageSync('temp_token');
|
||||||
uni.removeStorageSync('auth_info');
|
uni.removeStorageSync('auth_info');
|
||||||
|
|||||||
Reference in New Issue
Block a user