component-shipinlv 0.1.20 → 0.1.21
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,24 +1,15 @@
|
|
1
1
|
import _regeneratorRuntime from "@babel/runtime/helpers/esm/regeneratorRuntime";
|
2
2
|
import _asyncToGenerator from "@babel/runtime/helpers/esm/asyncToGenerator";
|
3
3
|
// h5 页面 登录公众号
|
4
|
-
|
5
|
-
import Tool from "../../lib/Tool";
|
4
|
+
|
6
5
|
var h5WePublicLogin = /*#__PURE__*/function () {
|
7
6
|
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
8
|
-
var domainUrl, redirectUrl, inviteUserId, loginResult;
|
9
7
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
10
8
|
while (1) switch (_context.prev = _context.next) {
|
11
9
|
case 0:
|
12
10
|
document.location.replace("https://auth.shanren.wang/auth/wechat/login?url=".concat(document.location.href));
|
13
11
|
return _context.abrupt("return");
|
14
|
-
case
|
15
|
-
loginResult = _context.sent;
|
16
|
-
if (loginResult) {
|
17
|
-
_context.next = 10;
|
18
|
-
break;
|
19
|
-
}
|
20
|
-
return _context.abrupt("return");
|
21
|
-
case 10:
|
12
|
+
case 2:
|
22
13
|
case "end":
|
23
14
|
return _context.stop();
|
24
15
|
}
|
@@ -18,7 +18,6 @@ var reTryMaxCount = 120;
|
|
18
18
|
var reTryTimeLoop = 1000; // ms
|
19
19
|
var FromWhere = 'web';
|
20
20
|
import QRCode from 'qrcode.react';
|
21
|
-
import isInClient from "../../lib/isInClient";
|
22
21
|
import h5WePublicLogin from "./h5-we-public-login";
|
23
22
|
import { jsx as _jsx } from "react/jsx-runtime";
|
24
23
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
@@ -30,6 +29,8 @@ var LoginQr = function LoginQr(_ref) {
|
|
30
29
|
accountRegDisabled = _ref.accountRegDisabled,
|
31
30
|
accountHidden = _ref.accountHidden,
|
32
31
|
alipayDisabled = _ref.alipayDisabled,
|
32
|
+
_ref$domain = _ref.domain,
|
33
|
+
domain = _ref$domain === void 0 ? document.location.hostname : _ref$domain,
|
33
34
|
_ref$onLoginSuccess = _ref.onLoginSuccess,
|
34
35
|
onLoginSuccess = _ref$onLoginSuccess === void 0 ? function () {} : _ref$onLoginSuccess;
|
35
36
|
var _useState = useState(false),
|
@@ -142,10 +143,12 @@ var LoginQr = function LoginQr(_ref) {
|
|
142
143
|
from: "web",
|
143
144
|
// 没有推荐者,会根据域名判断 经销商
|
144
145
|
inviteUserId: Tool.getInviteUserId(),
|
146
|
+
domain: domain || document.location.hostname,
|
145
147
|
env: getApiEnv()
|
146
148
|
});
|
147
149
|
}, {
|
148
|
-
manual:
|
150
|
+
manual: true,
|
151
|
+
//,
|
149
152
|
onSuccess: function onSuccess(result) {
|
150
153
|
setWeQrUrl(result.url);
|
151
154
|
onRunCheck();
|
@@ -233,9 +236,6 @@ var LoginQr = function LoginQr(_ref) {
|
|
233
236
|
_context3.next = 9;
|
234
237
|
return runWeLoginQr();
|
235
238
|
case 9:
|
236
|
-
_context3.next = 11;
|
237
|
-
return runWeLoginQr();
|
238
|
-
case 11:
|
239
239
|
case "end":
|
240
240
|
return _context3.stop();
|
241
241
|
}
|
@@ -306,8 +306,7 @@ var LoginQr = function LoginQr(_ref) {
|
|
306
306
|
})]
|
307
307
|
})]
|
308
308
|
}) : /*#__PURE__*/_jsx("div", {
|
309
|
-
className: "alt"
|
310
|
-
children: "\u8BF7\u7528\u5FAE\u4FE1\u626B\u7801\u767B\u5F55"
|
309
|
+
className: "alt"
|
311
310
|
})]
|
312
311
|
})
|
313
312
|
})
|