component-shipinlv 0.0.17 → 0.0.18
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Buy/index.css.js +1 -1
- package/dist/Buy/index.d.ts +1 -3
- package/dist/Buy/index.js +15 -18
- package/dist/VipCompare/index.js +2 -2
- package/package.json +1 -1
package/dist/Buy/index.css.js
CHANGED
@@ -2,5 +2,5 @@ import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLit
|
|
2
2
|
var _templateObject;
|
3
3
|
import styled from 'styled-components';
|
4
4
|
export default {
|
5
|
-
Buy: styled.span(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n :global{\n
|
5
|
+
Buy: styled.span(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n :global{\n //.ktv-ai-vip-compare{\n // .vip-compare-price{\n // small{\n // color: #888;\n // vertical-align: middle;\n // }\n // }\n // .listMore{\n // position: absolute;\n // right: 10px;\n // top: 9px;\n // }\n //\n // .vipCompareListMoreContent{\n // width: 500px;\n // .ratioAlt{\n // padding: 6px 0;\n // font-size: 13px;\n // color: #777;\n // .vip-compare-alt{\n //\n // }\n // }\n // }\n //\n //}\n }\n "])))
|
6
6
|
};
|
package/dist/Buy/index.d.ts
CHANGED
@@ -1,13 +1,11 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import type { SizeType } from "antd/es/config-provider/SizeContext";
|
3
2
|
interface Props {
|
4
3
|
env?: Global.Env;
|
5
4
|
vipId: number;
|
6
5
|
productCount: number;
|
7
6
|
productKind: Global.ProductKind;
|
8
|
-
buttonSmall?: SizeType;
|
9
|
-
title?: React.ReactNode;
|
10
7
|
disabled?: boolean;
|
8
|
+
children: React.ReactNode;
|
11
9
|
}
|
12
10
|
declare const Buy: React.FC<Props>;
|
13
11
|
export default Buy;
|
package/dist/Buy/index.js
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
import _regeneratorRuntime from "@babel/runtime/helpers/esm/regeneratorRuntime";
|
2
2
|
import _asyncToGenerator from "@babel/runtime/helpers/esm/asyncToGenerator";
|
3
3
|
import React from 'react';
|
4
|
-
import { Button } from 'antd';
|
5
4
|
import Tool from "../lib/Tool";
|
6
5
|
import styles from "./index.css";
|
7
6
|
import VipQr from "./qr";
|
@@ -10,35 +9,38 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
9
|
var Buy = function Buy(_ref) {
|
11
10
|
var _ref$env = _ref.env,
|
12
11
|
env = _ref$env === void 0 ? 'prod' : _ref$env,
|
13
|
-
_ref$buttonSmall = _ref.buttonSmall,
|
14
|
-
buttonSmall = _ref$buttonSmall === void 0 ? 'small' : _ref$buttonSmall,
|
15
12
|
_ref$productKind = _ref.productKind,
|
16
13
|
productKind = _ref$productKind === void 0 ? 'vip' : _ref$productKind,
|
17
14
|
_ref$vipId = _ref.vipId,
|
18
15
|
vipId = _ref$vipId === void 0 ? 0 : _ref$vipId,
|
19
16
|
_ref$productCount = _ref.productCount,
|
20
17
|
productCount = _ref$productCount === void 0 ? 1 : _ref$productCount,
|
21
|
-
_ref$title = _ref.title,
|
22
|
-
title = _ref$title === void 0 ? '购买' : _ref$title,
|
23
18
|
_ref$disabled = _ref.disabled,
|
24
|
-
disabled = _ref$disabled === void 0 ? false : _ref$disabled
|
19
|
+
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
20
|
+
children = _ref.children;
|
25
21
|
var onBuy = /*#__PURE__*/function () {
|
26
22
|
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
27
23
|
var userInfo;
|
28
24
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
29
25
|
while (1) switch (_context.prev = _context.next) {
|
30
26
|
case 0:
|
27
|
+
if (!disabled) {
|
28
|
+
_context.next = 2;
|
29
|
+
break;
|
30
|
+
}
|
31
|
+
return _context.abrupt("return");
|
32
|
+
case 2:
|
31
33
|
// 先要登录;
|
32
34
|
userInfo = Tool.getLocalUserInfo();
|
33
35
|
if (userInfo.isLogin) {
|
34
|
-
_context.next =
|
36
|
+
_context.next = 6;
|
35
37
|
break;
|
36
38
|
}
|
37
39
|
console.log("not login");
|
38
40
|
return _context.abrupt("return", Tool.onLogin());
|
39
|
-
case
|
41
|
+
case 6:
|
40
42
|
onOpenVipQr();
|
41
|
-
case
|
43
|
+
case 7:
|
42
44
|
case "end":
|
43
45
|
return _context.stop();
|
44
46
|
}
|
@@ -80,15 +82,10 @@ var Buy = function Buy(_ref) {
|
|
80
82
|
Tool.event.run('vip-buy-click');
|
81
83
|
};
|
82
84
|
return /*#__PURE__*/_jsx(styles.Buy, {
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
onClick: function onClick() {
|
88
|
-
return onBuy();
|
89
|
-
},
|
90
|
-
children: title
|
91
|
-
})
|
85
|
+
onClick: function onClick(e) {
|
86
|
+
return onBuy();
|
87
|
+
},
|
88
|
+
children: children
|
92
89
|
});
|
93
90
|
};
|
94
91
|
export default Buy;
|
package/dist/VipCompare/index.js
CHANGED
@@ -256,8 +256,8 @@ var VipCompare = function VipCompare(_ref) {
|
|
256
256
|
// onlyBuyOne={ productDetail.onlyBuyOne }
|
257
257
|
// isVip={ buyListData[record?.productType|| '']?.isVip }
|
258
258
|
,
|
259
|
-
|
260
|
-
|
259
|
+
productKind: "vip",
|
260
|
+
children: "\u8D2D\u4E70"
|
261
261
|
});
|
262
262
|
}
|
263
263
|
});
|