easy3wui 1.5.77 → 1.5.78-beta.1
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.
- package/README.md +10 -1
- package/assets/card.css +14 -0
- package/assets/formPage.css +81 -0
- package/assets/gridPage.css +6 -0
- package/assets/index.css +101 -0
- package/lib/Easy3wCard/index.js +11 -62
- package/lib/Easy3wCard/indexM.js +80 -0
- package/lib/Easy3wCard/indexPC.js +75 -0
- package/lib/Easy3wFormPage/index.js +28 -4010
- package/lib/Easy3wFormPage/indexM.js +4258 -0
- package/lib/Easy3wFormPage/indexPC.js +4006 -0
- package/lib/Easy3wGridPage/index.js +7 -656
- package/lib/Easy3wGridPage/indexM.js +691 -0
- package/lib/Easy3wGridPage/indexPC.js +668 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,4 +6,13 @@ npm run compile
|
|
|
6
6
|
npm publish
|
|
7
7
|
|
|
8
8
|
react-data-grid使用6.0.1版本对应的react@16
|
|
9
|
-
7版本未形成稳定版本,暂时使用6.0.1版本;对应的react@18+版本
|
|
9
|
+
7版本未形成稳定版本,暂时使用6.0.1版本;对应的react@18+版本
|
|
10
|
+
https://www.npmjs.com/
|
|
11
|
+
登录npm
|
|
12
|
+
在终端输入npm login ,在登录前一定要将npm源设置为官方源
|
|
13
|
+
// 官方镜像源
|
|
14
|
+
npm config set registry https://registry.npmjs.org/
|
|
15
|
+
// 淘宝镜像源
|
|
16
|
+
npm config set registry https://registry.npmmirror.com/
|
|
17
|
+
检查当前npm源:
|
|
18
|
+
npm config get registry
|
package/assets/card.css
CHANGED
|
@@ -32,3 +32,17 @@ s {
|
|
|
32
32
|
margin: 0 8px -4px 0;
|
|
33
33
|
background-color: #ad7c59;
|
|
34
34
|
}
|
|
35
|
+
@media (max-width: 768px) {
|
|
36
|
+
:global .positionDiv {
|
|
37
|
+
display: none !important;
|
|
38
|
+
}
|
|
39
|
+
:global .ant-card-head-title {
|
|
40
|
+
padding: 12px 0 !important;
|
|
41
|
+
}
|
|
42
|
+
:global .ant-card-head {
|
|
43
|
+
padding: 0 12px !important;
|
|
44
|
+
}
|
|
45
|
+
:global .ant-card-body {
|
|
46
|
+
padding: 12px !important;
|
|
47
|
+
}
|
|
48
|
+
}
|
package/assets/formPage.css
CHANGED
|
@@ -138,3 +138,84 @@ input.ant-input-number-input {
|
|
|
138
138
|
float: right;
|
|
139
139
|
white-space: nowrap;
|
|
140
140
|
}
|
|
141
|
+
@media (max-width: 768px) and (orientation: portrait) {
|
|
142
|
+
:global .ant-form-item-label::after {
|
|
143
|
+
content: ":";
|
|
144
|
+
color: rgba(0, 0, 0, 0.75);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
@media (max-width: 768px) and (orientation: landscape) {
|
|
148
|
+
:global .ant-form-item-label::after {
|
|
149
|
+
content: "";
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
@media (max-width: 768px) {
|
|
153
|
+
:global .ant-form-item-label {
|
|
154
|
+
padding: 0;
|
|
155
|
+
height: auto;
|
|
156
|
+
line-height: 30px;
|
|
157
|
+
text-align: right;
|
|
158
|
+
white-space: wrap;
|
|
159
|
+
overflow: visible;
|
|
160
|
+
}
|
|
161
|
+
:global .ant-form-item-label .ant-badge {
|
|
162
|
+
display: none;
|
|
163
|
+
}
|
|
164
|
+
:global .ant-form-item-label label {
|
|
165
|
+
display: inline-block;
|
|
166
|
+
width: 80%;
|
|
167
|
+
}
|
|
168
|
+
:global .ant-form-item-control {
|
|
169
|
+
line-height: 30px;
|
|
170
|
+
white-space: wrap;
|
|
171
|
+
color: black;
|
|
172
|
+
}
|
|
173
|
+
:global .ant-form-item-label,
|
|
174
|
+
:global .ant-form-item-control-wrapper {
|
|
175
|
+
width: unset;
|
|
176
|
+
}
|
|
177
|
+
:global .ant-col-6 {
|
|
178
|
+
width: 25% !important;
|
|
179
|
+
}
|
|
180
|
+
:global .ant-col-12 {
|
|
181
|
+
width: 50% !important;
|
|
182
|
+
}
|
|
183
|
+
:global .ant-col-18 {
|
|
184
|
+
width: 75% !important;
|
|
185
|
+
}
|
|
186
|
+
:global .ant-form-item {
|
|
187
|
+
font-size: 12px !important;
|
|
188
|
+
margin-bottom: 8px !important;
|
|
189
|
+
}
|
|
190
|
+
:global .ant-radio-wrapper {
|
|
191
|
+
font-size: 12px !important;
|
|
192
|
+
}
|
|
193
|
+
:global .ant-checkbox-wrapper {
|
|
194
|
+
font-size: 12px !important;
|
|
195
|
+
}
|
|
196
|
+
:global .ant-input {
|
|
197
|
+
font-size: 12px !important;
|
|
198
|
+
}
|
|
199
|
+
:global .ant-input[disabled] {
|
|
200
|
+
background-color: #fcfcfc !important;
|
|
201
|
+
}
|
|
202
|
+
:global .ant-table-body {
|
|
203
|
+
font-size: 12px !important;
|
|
204
|
+
}
|
|
205
|
+
:global .adm-collapse-panel-content {
|
|
206
|
+
padding: 0 12px;
|
|
207
|
+
}
|
|
208
|
+
:global .adm-list-item-content-main {
|
|
209
|
+
width: 100%;
|
|
210
|
+
}
|
|
211
|
+
:global .adm-form-item-horizontal .adm-list-item-content-main {
|
|
212
|
+
text-align: right;
|
|
213
|
+
}
|
|
214
|
+
:global .ant-form-item-label > label {
|
|
215
|
+
color: rgba(0, 0, 0, 0.75);
|
|
216
|
+
}
|
|
217
|
+
:global .adm-text-area-element,
|
|
218
|
+
:global .adm-text-area-count {
|
|
219
|
+
font-size: var(--adm-font-size-6);
|
|
220
|
+
}
|
|
221
|
+
}
|
package/assets/gridPage.css
CHANGED
package/assets/index.css
CHANGED
|
@@ -95,6 +95,20 @@ s {
|
|
|
95
95
|
margin: 0 8px -4px 0;
|
|
96
96
|
background-color: #ad7c59;
|
|
97
97
|
}
|
|
98
|
+
@media (max-width: 768px) {
|
|
99
|
+
:global .positionDiv {
|
|
100
|
+
display: none !important;
|
|
101
|
+
}
|
|
102
|
+
:global .ant-card-head-title {
|
|
103
|
+
padding: 12px 0 !important;
|
|
104
|
+
}
|
|
105
|
+
:global .ant-card-head {
|
|
106
|
+
padding: 0 12px !important;
|
|
107
|
+
}
|
|
108
|
+
:global .ant-card-body {
|
|
109
|
+
padding: 12px !important;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
98
112
|
.e3wGlobalFooterDiv {
|
|
99
113
|
padding: 0 16px;
|
|
100
114
|
margin: 24px 0 24px 0;
|
|
@@ -2386,6 +2400,12 @@ s {
|
|
|
2386
2400
|
.onRow tr:hover {
|
|
2387
2401
|
cursor: pointer;
|
|
2388
2402
|
}
|
|
2403
|
+
@media (max-width: 768px) {
|
|
2404
|
+
.gridBox td a:not([href]) {
|
|
2405
|
+
pointer-events: none;
|
|
2406
|
+
color: #000000;
|
|
2407
|
+
}
|
|
2408
|
+
}
|
|
2389
2409
|
.ant-upload-list-item {
|
|
2390
2410
|
width: auto;
|
|
2391
2411
|
}
|
|
@@ -2526,6 +2546,87 @@ input.ant-input-number-input {
|
|
|
2526
2546
|
float: right;
|
|
2527
2547
|
white-space: nowrap;
|
|
2528
2548
|
}
|
|
2549
|
+
@media (max-width: 768px) and (orientation: portrait) {
|
|
2550
|
+
:global .ant-form-item-label::after {
|
|
2551
|
+
content: ":";
|
|
2552
|
+
color: rgba(0, 0, 0, 0.75);
|
|
2553
|
+
}
|
|
2554
|
+
}
|
|
2555
|
+
@media (max-width: 768px) and (orientation: landscape) {
|
|
2556
|
+
:global .ant-form-item-label::after {
|
|
2557
|
+
content: "";
|
|
2558
|
+
}
|
|
2559
|
+
}
|
|
2560
|
+
@media (max-width: 768px) {
|
|
2561
|
+
:global .ant-form-item-label {
|
|
2562
|
+
padding: 0;
|
|
2563
|
+
height: auto;
|
|
2564
|
+
line-height: 30px;
|
|
2565
|
+
text-align: right;
|
|
2566
|
+
white-space: wrap;
|
|
2567
|
+
overflow: visible;
|
|
2568
|
+
}
|
|
2569
|
+
:global .ant-form-item-label .ant-badge {
|
|
2570
|
+
display: none;
|
|
2571
|
+
}
|
|
2572
|
+
:global .ant-form-item-label label {
|
|
2573
|
+
display: inline-block;
|
|
2574
|
+
width: 80%;
|
|
2575
|
+
}
|
|
2576
|
+
:global .ant-form-item-control {
|
|
2577
|
+
line-height: 30px;
|
|
2578
|
+
white-space: wrap;
|
|
2579
|
+
color: black;
|
|
2580
|
+
}
|
|
2581
|
+
:global .ant-form-item-label,
|
|
2582
|
+
:global .ant-form-item-control-wrapper {
|
|
2583
|
+
width: unset;
|
|
2584
|
+
}
|
|
2585
|
+
:global .ant-col-6 {
|
|
2586
|
+
width: 25% !important;
|
|
2587
|
+
}
|
|
2588
|
+
:global .ant-col-12 {
|
|
2589
|
+
width: 50% !important;
|
|
2590
|
+
}
|
|
2591
|
+
:global .ant-col-18 {
|
|
2592
|
+
width: 75% !important;
|
|
2593
|
+
}
|
|
2594
|
+
:global .ant-form-item {
|
|
2595
|
+
font-size: 12px !important;
|
|
2596
|
+
margin-bottom: 8px !important;
|
|
2597
|
+
}
|
|
2598
|
+
:global .ant-radio-wrapper {
|
|
2599
|
+
font-size: 12px !important;
|
|
2600
|
+
}
|
|
2601
|
+
:global .ant-checkbox-wrapper {
|
|
2602
|
+
font-size: 12px !important;
|
|
2603
|
+
}
|
|
2604
|
+
:global .ant-input {
|
|
2605
|
+
font-size: 12px !important;
|
|
2606
|
+
}
|
|
2607
|
+
:global .ant-input[disabled] {
|
|
2608
|
+
background-color: #fcfcfc !important;
|
|
2609
|
+
}
|
|
2610
|
+
:global .ant-table-body {
|
|
2611
|
+
font-size: 12px !important;
|
|
2612
|
+
}
|
|
2613
|
+
:global .adm-collapse-panel-content {
|
|
2614
|
+
padding: 0 12px;
|
|
2615
|
+
}
|
|
2616
|
+
:global .adm-list-item-content-main {
|
|
2617
|
+
width: 100%;
|
|
2618
|
+
}
|
|
2619
|
+
:global .adm-form-item-horizontal .adm-list-item-content-main {
|
|
2620
|
+
text-align: right;
|
|
2621
|
+
}
|
|
2622
|
+
:global .ant-form-item-label > label {
|
|
2623
|
+
color: rgba(0, 0, 0, 0.75);
|
|
2624
|
+
}
|
|
2625
|
+
:global .adm-text-area-element,
|
|
2626
|
+
:global .adm-text-area-count {
|
|
2627
|
+
font-size: var(--adm-font-size-6);
|
|
2628
|
+
}
|
|
2629
|
+
}
|
|
2529
2630
|
.e3wFootBtn {
|
|
2530
2631
|
margin: 0px 8px;
|
|
2531
2632
|
}
|
package/lib/Easy3wCard/index.js
CHANGED
|
@@ -2,74 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _indexM = require('./indexM');
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _indexM2 = _interopRequireDefault(_indexM);
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _indexPC = require('./indexPC');
|
|
10
10
|
|
|
11
|
-
var
|
|
12
|
-
|
|
13
|
-
var _inherits2 = require('babel-runtime/helpers/inherits');
|
|
14
|
-
|
|
15
|
-
var _inherits3 = _interopRequireDefault(_inherits2);
|
|
16
|
-
|
|
17
|
-
var _react = require('react');
|
|
18
|
-
|
|
19
|
-
var _react2 = _interopRequireDefault(_react);
|
|
20
|
-
|
|
21
|
-
var _card = require('antd/lib/card');
|
|
22
|
-
|
|
23
|
-
var _card2 = _interopRequireDefault(_card);
|
|
24
|
-
|
|
25
|
-
require('antd/lib/card/style');
|
|
26
|
-
|
|
27
|
-
var _classnames = require('classnames');
|
|
28
|
-
|
|
29
|
-
var _classnames2 = _interopRequireDefault(_classnames);
|
|
30
|
-
|
|
31
|
-
var _comonConfig = require('comonConfigPath/comonConfig');
|
|
11
|
+
var _indexPC2 = _interopRequireDefault(_indexPC);
|
|
32
12
|
|
|
33
13
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
34
14
|
|
|
35
|
-
var
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
(0, _inherits3['default'])(Easy3wCard, _Component);
|
|
43
|
-
|
|
44
|
-
function Easy3wCard() {
|
|
45
|
-
(0, _classCallCheck3['default'])(this, Easy3wCard);
|
|
46
|
-
return (0, _possibleConstructorReturn3['default'])(this, _Component.apply(this, arguments));
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
Easy3wCard.prototype.render = function render() {
|
|
50
|
-
var _props = this.props,
|
|
51
|
-
label = _props.label,
|
|
52
|
-
children = _props.children;
|
|
53
|
-
|
|
54
|
-
return _react2['default'].createElement(
|
|
55
|
-
_card2['default'],
|
|
56
|
-
{
|
|
57
|
-
title: label ? _react2['default'].createElement(
|
|
58
|
-
'span',
|
|
59
|
-
{ className: (0, _classnames2['default'])(['e3wCardSpanCardTitle']) },
|
|
60
|
-
_react2['default'].createElement('s', null),
|
|
61
|
-
label
|
|
62
|
-
) : '',
|
|
63
|
-
bordered: false,
|
|
64
|
-
className: (0, _classnames2['default'])(['e3wCardForm']),
|
|
65
|
-
size: size || 'default'
|
|
66
|
-
},
|
|
67
|
-
children
|
|
68
|
-
);
|
|
69
|
-
};
|
|
70
|
-
|
|
71
|
-
return Easy3wCard;
|
|
72
|
-
}(_react.Component);
|
|
15
|
+
var isMobile = window.matchMedia('(max-width: 768px)').matches;
|
|
16
|
+
var Easy3wCard = void 0;
|
|
17
|
+
if (isMobile) {
|
|
18
|
+
Easy3wCard = _indexPC2['default'];
|
|
19
|
+
} else {
|
|
20
|
+
Easy3wCard = _indexM2['default'];
|
|
21
|
+
}
|
|
73
22
|
|
|
74
23
|
exports['default'] = Easy3wCard;
|
|
75
24
|
module.exports = exports['default'];
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
|
|
5
|
+
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
|
|
6
|
+
|
|
7
|
+
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
|
8
|
+
|
|
9
|
+
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
|
|
10
|
+
|
|
11
|
+
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
|
|
12
|
+
|
|
13
|
+
var _inherits2 = require('babel-runtime/helpers/inherits');
|
|
14
|
+
|
|
15
|
+
var _inherits3 = _interopRequireDefault(_inherits2);
|
|
16
|
+
|
|
17
|
+
var _react = require('react');
|
|
18
|
+
|
|
19
|
+
var _react2 = _interopRequireDefault(_react);
|
|
20
|
+
|
|
21
|
+
var _card = require('antd/lib/card');
|
|
22
|
+
|
|
23
|
+
var _card2 = _interopRequireDefault(_card);
|
|
24
|
+
|
|
25
|
+
require('antd/lib/card/style');
|
|
26
|
+
|
|
27
|
+
var _classnames = require('classnames');
|
|
28
|
+
|
|
29
|
+
var _classnames2 = _interopRequireDefault(_classnames);
|
|
30
|
+
|
|
31
|
+
var _comonConfig = require('comonConfigPath/comonConfig');
|
|
32
|
+
|
|
33
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
34
|
+
|
|
35
|
+
var _ref = _comonConfig.objEasy3wUIConfig || {},
|
|
36
|
+
objEasy3wCard = _ref.objEasy3wCard;
|
|
37
|
+
|
|
38
|
+
var _ref2 = objEasy3wCard || {},
|
|
39
|
+
size = _ref2.size;
|
|
40
|
+
|
|
41
|
+
var Easy3wCardM = function (_Component) {
|
|
42
|
+
(0, _inherits3['default'])(Easy3wCardM, _Component);
|
|
43
|
+
|
|
44
|
+
function Easy3wCardM() {
|
|
45
|
+
(0, _classCallCheck3['default'])(this, Easy3wCardM);
|
|
46
|
+
return (0, _possibleConstructorReturn3['default'])(this, _Component.apply(this, arguments));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
Easy3wCardM.prototype.render = function render() {
|
|
50
|
+
var _props = this.props,
|
|
51
|
+
label = _props.label,
|
|
52
|
+
children = _props.children,
|
|
53
|
+
mobileShowFlag = _props.mobileShowFlag;
|
|
54
|
+
|
|
55
|
+
return _react2['default'].createElement(
|
|
56
|
+
_react2['default'].Fragment,
|
|
57
|
+
null,
|
|
58
|
+
mobileShowFlag === false ? '' : _react2['default'].createElement(
|
|
59
|
+
_card2['default'],
|
|
60
|
+
{
|
|
61
|
+
title: label ? _react2['default'].createElement(
|
|
62
|
+
'span',
|
|
63
|
+
{ className: (0, _classnames2['default'])(['e3wCardSpanCardTitle']) },
|
|
64
|
+
_react2['default'].createElement('s', null),
|
|
65
|
+
label
|
|
66
|
+
) : '',
|
|
67
|
+
bordered: false,
|
|
68
|
+
className: (0, _classnames2['default'])(['e3wCardForm']),
|
|
69
|
+
size: size || 'default'
|
|
70
|
+
},
|
|
71
|
+
children
|
|
72
|
+
)
|
|
73
|
+
);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
return Easy3wCardM;
|
|
77
|
+
}(_react.Component);
|
|
78
|
+
|
|
79
|
+
exports['default'] = Easy3wCardM;
|
|
80
|
+
module.exports = exports['default'];
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
|
|
5
|
+
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
|
|
6
|
+
|
|
7
|
+
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
|
8
|
+
|
|
9
|
+
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
|
|
10
|
+
|
|
11
|
+
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
|
|
12
|
+
|
|
13
|
+
var _inherits2 = require('babel-runtime/helpers/inherits');
|
|
14
|
+
|
|
15
|
+
var _inherits3 = _interopRequireDefault(_inherits2);
|
|
16
|
+
|
|
17
|
+
var _react = require('react');
|
|
18
|
+
|
|
19
|
+
var _react2 = _interopRequireDefault(_react);
|
|
20
|
+
|
|
21
|
+
var _card = require('antd/lib/card');
|
|
22
|
+
|
|
23
|
+
var _card2 = _interopRequireDefault(_card);
|
|
24
|
+
|
|
25
|
+
require('antd/lib/card/style');
|
|
26
|
+
|
|
27
|
+
var _classnames = require('classnames');
|
|
28
|
+
|
|
29
|
+
var _classnames2 = _interopRequireDefault(_classnames);
|
|
30
|
+
|
|
31
|
+
var _comonConfig = require('comonConfigPath/comonConfig');
|
|
32
|
+
|
|
33
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
34
|
+
|
|
35
|
+
var _ref = _comonConfig.objEasy3wUIConfig || {},
|
|
36
|
+
objEasy3wCard = _ref.objEasy3wCard;
|
|
37
|
+
|
|
38
|
+
var _ref2 = objEasy3wCard || {},
|
|
39
|
+
size = _ref2.size;
|
|
40
|
+
|
|
41
|
+
var Easy3wCardPC = function (_Component) {
|
|
42
|
+
(0, _inherits3['default'])(Easy3wCardPC, _Component);
|
|
43
|
+
|
|
44
|
+
function Easy3wCardPC() {
|
|
45
|
+
(0, _classCallCheck3['default'])(this, Easy3wCardPC);
|
|
46
|
+
return (0, _possibleConstructorReturn3['default'])(this, _Component.apply(this, arguments));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
Easy3wCardPC.prototype.render = function render() {
|
|
50
|
+
var _props = this.props,
|
|
51
|
+
label = _props.label,
|
|
52
|
+
children = _props.children;
|
|
53
|
+
|
|
54
|
+
return _react2['default'].createElement(
|
|
55
|
+
_card2['default'],
|
|
56
|
+
{
|
|
57
|
+
title: label ? _react2['default'].createElement(
|
|
58
|
+
'span',
|
|
59
|
+
{ className: (0, _classnames2['default'])(['e3wCardSpanCardTitle']) },
|
|
60
|
+
_react2['default'].createElement('s', null),
|
|
61
|
+
label
|
|
62
|
+
) : '',
|
|
63
|
+
bordered: false,
|
|
64
|
+
className: (0, _classnames2['default'])(['e3wCardForm']),
|
|
65
|
+
size: size || 'default'
|
|
66
|
+
},
|
|
67
|
+
children
|
|
68
|
+
);
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
return Easy3wCardPC;
|
|
72
|
+
}(_react.Component);
|
|
73
|
+
|
|
74
|
+
exports['default'] = Easy3wCardPC;
|
|
75
|
+
module.exports = exports['default'];
|