component-shipinlv 0.1.19 → 0.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
- import * as WechatController from "../../service/api/WechatController";
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 7:
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
  }
@@ -6,6 +6,7 @@ interface Props {
6
6
  accountHidden?: boolean;
7
7
  accountRegDisabled?: boolean;
8
8
  alipayDisabled?: boolean;
9
+ domain?: string;
9
10
  onLoginSuccess: () => void;
10
11
  }
11
12
  declare const LoginQr: React.FC<Props>;
@@ -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: Platform.isWechat || !isInClient() || defaultLoginType !== 'wechat',
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
  })
@@ -26,8 +26,11 @@ var ApplyColorDict = {
26
26
  300: {
27
27
  color: '#724822'
28
28
  },
29
+ 400: {
30
+ color: '#F60'
31
+ },
29
32
  1000: {
30
- color: ''
33
+ color: '#000'
31
34
  }
32
35
  };
33
36
  var VipList = function VipList(_ref) {
@@ -95,13 +98,14 @@ var VipList = function VipList(_ref) {
95
98
  var listLen = result.vipList.length;
96
99
  var buyList = [];
97
100
  result.vipList.forEach(function (item) {
101
+ var _ApplyColorDict$item$;
98
102
  buyList.push({
99
103
  id: item.id,
100
104
  price: item.price,
101
105
  canBuy: item.canBuy
102
106
  });
103
107
  var dataIndex = "vipLevel".concat(item.vipLevel);
104
- var colorPrimary = ApplyColorDict[item.vipLevel].color || '#722ED1';
108
+ var colorPrimary = ((_ApplyColorDict$item$ = ApplyColorDict[item.vipLevel]) === null || _ApplyColorDict$item$ === void 0 ? void 0 : _ApplyColorDict$item$.color) || '#722ED1';
105
109
  list.push({
106
110
  title: /*#__PURE__*/_jsxs("div", {
107
111
  children: [/*#__PURE__*/_jsx("div", {
@@ -9,6 +9,7 @@ export declare function weMiniLoginQr(body: {
9
9
  loginType: 'client';
10
10
  from: string;
11
11
  inviteUserId: number;
12
+ domain: string;
12
13
  env: Global.Env;
13
14
  }): Promise<UserAuth.WeQrResult>;
14
15
  export declare function reg(body: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "component-shipinlv",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
4
4
  "description": "",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",