Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9551d9d8b2 | |||
| 81bec5ba3b |
@@ -131,6 +131,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { get, post } from '@/utils/request.js';
|
import { get, post } from '@/utils/request.js';
|
||||||
|
import { detectPlatform } from '@/utils/env.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -163,7 +164,8 @@ export default {
|
|||||||
const res = await post('/device-scan/open', {
|
const res = await post('/device-scan/open', {
|
||||||
device_id: this.deviceId,
|
device_id: this.deviceId,
|
||||||
door_index: 0,
|
door_index: 0,
|
||||||
user_id: uid
|
user_id: uid,
|
||||||
|
platform: detectPlatform()
|
||||||
});
|
});
|
||||||
|
|
||||||
const ret = res.data || {};
|
const ret = res.data || {};
|
||||||
|
|||||||
@@ -97,10 +97,11 @@ export default {
|
|||||||
window.location.origin.replace(/^http:/, 'https:') + window.location.pathname
|
window.location.origin.replace(/^http:/, 'https:') + window.location.pathname
|
||||||
);
|
);
|
||||||
|
|
||||||
// 使用 snsapi_base 静默授权,不弹窗
|
// 静默授权:微信用 snsapi_base,支付宝用 auth_base
|
||||||
|
const scopes = platform === 'alipay' ? 'auth_base' : 'snsapi_base';
|
||||||
const res = await gatewayGet('/api/v1/user/auth/url', {
|
const res = await gatewayGet('/api/v1/user/auth/url', {
|
||||||
app_no: appNo,
|
app_no: appNo,
|
||||||
scopes: 'snsapi_base',
|
scopes: scopes,
|
||||||
redirect_uri: redirectUri,
|
redirect_uri: redirectUri,
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -256,9 +257,11 @@ export default {
|
|||||||
window.location.origin.replace(/^http:/, 'https:') + window.location.pathname
|
window.location.origin.replace(/^http:/, 'https:') + window.location.pathname
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// 用户信息授权:微信用 snsapi_userinfo,支付宝用 auth_user
|
||||||
|
const scopes = platform === 'alipay' ? 'auth_user' : 'snsapi_userinfo';
|
||||||
const res = await gatewayGet('/api/v1/user/auth/url', {
|
const res = await gatewayGet('/api/v1/user/auth/url', {
|
||||||
app_no: appNo,
|
app_no: appNo,
|
||||||
scopes: 'snsapi_userinfo',
|
scopes: scopes,
|
||||||
redirect_uri: redirectUri,
|
redirect_uri: redirectUri,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user