easy3wui 1.5.70-beta1 → 1.5.70-beta10
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/assets/formPage.css +12 -4
- package/assets/gridPage.css +14 -7
- package/assets/index.css +30 -11
- package/assets/tree.css +4 -0
- package/lib/Easy3wCol/index.js +53 -0
- package/lib/Easy3wDownLoad/index.js +7 -3
- package/lib/Easy3wFormPage/index.js +256 -28
- package/lib/Easy3wGridInputAmount/index.js +93 -0
- package/lib/Easy3wGridInputDigit/index.js +83 -0
- package/lib/Easy3wGridInputEmail/index.js +73 -0
- package/lib/Easy3wGridPage/index.js +27 -6
- package/lib/Easy3wRow/index.js +53 -0
- package/lib/Easy3wTree/index.js +318 -0
- package/lib/Easy3wUIConfig/index.js +30 -0
- package/lib/Easy3wUpload/index.js +9 -2
- package/lib/Easy3wUploadB/index.js +9 -2
- package/lib/Easy3wUploadM/index.js +9 -2
- package/lib/index.js +63 -0
- package/package.json +1 -1
- package/lib/Easy3wUpload copy/index.js +0 -511
- package/lib/Easy3wUploadB copy/index copy 2.js +0 -1011
- package/lib/Easy3wUploadB copy/index copy.js +0 -1020
- package/lib/Easy3wUploadB copy/index.js +0 -1056
- package/lib/Easy3wUploadM copy/index.js +0 -513
package/assets/formPage.css
CHANGED
|
@@ -13,7 +13,9 @@
|
|
|
13
13
|
.e3wFormPageWrap .e3wFormItem .ant-form-item {
|
|
14
14
|
margin-bottom: 8px;
|
|
15
15
|
}
|
|
16
|
-
.e3wFormPageWrap .inputNumberFormat
|
|
16
|
+
.e3wFormPageWrap .inputNumberFormat,
|
|
17
|
+
.e3wFormPageWrap .inputAmount,
|
|
18
|
+
.e3wFormPageWrap .inputDigit {
|
|
17
19
|
display: -ms-flexbox;
|
|
18
20
|
display: flex;
|
|
19
21
|
-ms-flex-direction: row;
|
|
@@ -22,18 +24,24 @@
|
|
|
22
24
|
flex-wrap: nowrap;
|
|
23
25
|
line-height: 32px;
|
|
24
26
|
}
|
|
25
|
-
.e3wFormPageWrap .inputNumberFormat .addonBtns
|
|
27
|
+
.e3wFormPageWrap .inputNumberFormat .addonBtns,
|
|
28
|
+
.e3wFormPageWrap .inputAmount .addonBtns,
|
|
29
|
+
.e3wFormPageWrap .inputDigit .addonBtns {
|
|
26
30
|
height: 32px;
|
|
27
31
|
width: auto;
|
|
28
32
|
border-left: none;
|
|
29
33
|
border-right: 1px solid #d9d9d9;
|
|
30
34
|
}
|
|
31
|
-
.e3wFormPageWrap .inputNumberFormat .inputNumberBtns .e3wFootBtn
|
|
35
|
+
.e3wFormPageWrap .inputNumberFormat .inputNumberBtns .e3wFootBtn,
|
|
36
|
+
.e3wFormPageWrap .inputAmount .inputNumberBtns .e3wFootBtn,
|
|
37
|
+
.e3wFormPageWrap .inputDigit .inputNumberBtns .e3wFootBtn {
|
|
32
38
|
margin: 0;
|
|
33
39
|
}
|
|
40
|
+
.ant-input-number:hover input.ant-input-number-input {
|
|
41
|
+
padding-right: 33px;
|
|
42
|
+
}
|
|
34
43
|
input.ant-input-number-input {
|
|
35
44
|
text-align: right;
|
|
36
|
-
padding-right: 22px;
|
|
37
45
|
}
|
|
38
46
|
.rightText {
|
|
39
47
|
text-align: right;
|
package/assets/gridPage.css
CHANGED
|
@@ -53,25 +53,32 @@
|
|
|
53
53
|
white-space: nowrap;
|
|
54
54
|
overflow: hidden;
|
|
55
55
|
}
|
|
56
|
-
.scrollPrint .ant-table-thead > tr > th
|
|
56
|
+
.scrollPrint .ant-table-thead > tr > th,
|
|
57
|
+
.e3wFormPageWrap .scrollX .ant-table-thead > tr > th {
|
|
57
58
|
text-align: center;
|
|
58
59
|
}
|
|
59
|
-
.scrollPrint .ant-table-tbody > .ant-table-row td
|
|
60
|
+
.scrollPrint .ant-table-tbody > .ant-table-row td,
|
|
61
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row td {
|
|
60
62
|
max-width: 240px;
|
|
61
63
|
}
|
|
62
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wText
|
|
64
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wText,
|
|
65
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wText {
|
|
63
66
|
text-align: left;
|
|
64
67
|
}
|
|
65
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridShortText
|
|
68
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridShortText,
|
|
69
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wGridShortText {
|
|
66
70
|
text-align: center;
|
|
67
71
|
}
|
|
68
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridLongText
|
|
72
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridLongText,
|
|
73
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
69
74
|
text-align: justify;
|
|
70
75
|
}
|
|
71
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridNumber
|
|
76
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridNumber,
|
|
77
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
72
78
|
text-align: right;
|
|
73
79
|
}
|
|
74
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wMaxText
|
|
80
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wMaxText,
|
|
81
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wMaxText {
|
|
75
82
|
max-width: 240px;
|
|
76
83
|
text-align: left;
|
|
77
84
|
}
|
package/assets/index.css
CHANGED
|
@@ -2352,25 +2352,32 @@ s {
|
|
|
2352
2352
|
white-space: nowrap;
|
|
2353
2353
|
overflow: hidden;
|
|
2354
2354
|
}
|
|
2355
|
-
.scrollPrint .ant-table-thead > tr > th
|
|
2355
|
+
.scrollPrint .ant-table-thead > tr > th,
|
|
2356
|
+
.e3wFormPageWrap .scrollX .ant-table-thead > tr > th {
|
|
2356
2357
|
text-align: center;
|
|
2357
2358
|
}
|
|
2358
|
-
.scrollPrint .ant-table-tbody > .ant-table-row td
|
|
2359
|
+
.scrollPrint .ant-table-tbody > .ant-table-row td,
|
|
2360
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row td {
|
|
2359
2361
|
max-width: 240px;
|
|
2360
2362
|
}
|
|
2361
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wText
|
|
2363
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wText,
|
|
2364
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wText {
|
|
2362
2365
|
text-align: left;
|
|
2363
2366
|
}
|
|
2364
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridShortText
|
|
2367
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridShortText,
|
|
2368
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wGridShortText {
|
|
2365
2369
|
text-align: center;
|
|
2366
2370
|
}
|
|
2367
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridLongText
|
|
2371
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridLongText,
|
|
2372
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
2368
2373
|
text-align: justify;
|
|
2369
2374
|
}
|
|
2370
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridNumber
|
|
2375
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridNumber,
|
|
2376
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
2371
2377
|
text-align: right;
|
|
2372
2378
|
}
|
|
2373
|
-
.scrollPrint .ant-table-tbody > .ant-table-row .e3wMaxText
|
|
2379
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wMaxText,
|
|
2380
|
+
.e3wFormPageWrap .scrollX .ant-table-tbody > .ant-table-row .e3wMaxText {
|
|
2374
2381
|
max-width: 240px;
|
|
2375
2382
|
text-align: left;
|
|
2376
2383
|
}
|
|
@@ -2404,7 +2411,9 @@ s {
|
|
|
2404
2411
|
.e3wFormPageWrap .e3wFormItem .ant-form-item {
|
|
2405
2412
|
margin-bottom: 8px;
|
|
2406
2413
|
}
|
|
2407
|
-
.e3wFormPageWrap .inputNumberFormat
|
|
2414
|
+
.e3wFormPageWrap .inputNumberFormat,
|
|
2415
|
+
.e3wFormPageWrap .inputAmount,
|
|
2416
|
+
.e3wFormPageWrap .inputDigit {
|
|
2408
2417
|
display: -ms-flexbox;
|
|
2409
2418
|
display: flex;
|
|
2410
2419
|
-ms-flex-direction: row;
|
|
@@ -2413,18 +2422,24 @@ s {
|
|
|
2413
2422
|
flex-wrap: nowrap;
|
|
2414
2423
|
line-height: 32px;
|
|
2415
2424
|
}
|
|
2416
|
-
.e3wFormPageWrap .inputNumberFormat .addonBtns
|
|
2425
|
+
.e3wFormPageWrap .inputNumberFormat .addonBtns,
|
|
2426
|
+
.e3wFormPageWrap .inputAmount .addonBtns,
|
|
2427
|
+
.e3wFormPageWrap .inputDigit .addonBtns {
|
|
2417
2428
|
height: 32px;
|
|
2418
2429
|
width: auto;
|
|
2419
2430
|
border-left: none;
|
|
2420
2431
|
border-right: 1px solid #d9d9d9;
|
|
2421
2432
|
}
|
|
2422
|
-
.e3wFormPageWrap .inputNumberFormat .inputNumberBtns .e3wFootBtn
|
|
2433
|
+
.e3wFormPageWrap .inputNumberFormat .inputNumberBtns .e3wFootBtn,
|
|
2434
|
+
.e3wFormPageWrap .inputAmount .inputNumberBtns .e3wFootBtn,
|
|
2435
|
+
.e3wFormPageWrap .inputDigit .inputNumberBtns .e3wFootBtn {
|
|
2423
2436
|
margin: 0;
|
|
2424
2437
|
}
|
|
2438
|
+
.ant-input-number:hover input.ant-input-number-input {
|
|
2439
|
+
padding-right: 33px;
|
|
2440
|
+
}
|
|
2425
2441
|
input.ant-input-number-input {
|
|
2426
2442
|
text-align: right;
|
|
2427
|
-
padding-right: 22px;
|
|
2428
2443
|
}
|
|
2429
2444
|
.rightText {
|
|
2430
2445
|
text-align: right;
|
|
@@ -2601,3 +2616,7 @@ input.ant-input-number-input {
|
|
|
2601
2616
|
border-style: solid;
|
|
2602
2617
|
border-radius: 3px;
|
|
2603
2618
|
}
|
|
2619
|
+
.easy3wTree .easy3wTreeSearch {
|
|
2620
|
+
width: calc(88%);
|
|
2621
|
+
margin: 0 6px;
|
|
2622
|
+
}
|
package/assets/tree.css
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
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 _col = require('antd/lib/col');
|
|
22
|
+
|
|
23
|
+
var _col2 = _interopRequireDefault(_col);
|
|
24
|
+
|
|
25
|
+
require('antd/lib/col/style');
|
|
26
|
+
|
|
27
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
28
|
+
|
|
29
|
+
var Easy3wCol = function (_Component) {
|
|
30
|
+
(0, _inherits3['default'])(Easy3wCol, _Component);
|
|
31
|
+
|
|
32
|
+
function Easy3wCol() {
|
|
33
|
+
(0, _classCallCheck3['default'])(this, Easy3wCol);
|
|
34
|
+
return (0, _possibleConstructorReturn3['default'])(this, _Component.apply(this, arguments));
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
Easy3wCol.prototype.render = function render() {
|
|
38
|
+
var _props = this.props,
|
|
39
|
+
objColProps = _props.objColProps,
|
|
40
|
+
children = _props.children;
|
|
41
|
+
|
|
42
|
+
return _react2['default'].createElement(
|
|
43
|
+
_col2['default'],
|
|
44
|
+
objColProps,
|
|
45
|
+
children
|
|
46
|
+
);
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
return Easy3wCol;
|
|
50
|
+
}(_react.Component);
|
|
51
|
+
|
|
52
|
+
exports['default'] = Easy3wCol;
|
|
53
|
+
module.exports = exports['default'];
|
|
@@ -70,9 +70,13 @@ var _Easy3wAESEncrypt = require('../Easy3wAESEncrypt');
|
|
|
70
70
|
|
|
71
71
|
var _Easy3wAESEncrypt2 = _interopRequireDefault(_Easy3wAESEncrypt);
|
|
72
72
|
|
|
73
|
+
var _Easy3wUIConfig = require('../Easy3wUIConfig');
|
|
74
|
+
|
|
75
|
+
var _Easy3wUIConfig2 = _interopRequireDefault(_Easy3wUIConfig);
|
|
76
|
+
|
|
73
77
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
74
78
|
|
|
75
|
-
|
|
79
|
+
var objPreviewFileDefault = _Easy3wUIConfig2['default'].objPreviewFileDefault;
|
|
76
80
|
|
|
77
81
|
var Easy3wDownLoad = function (_Component) {
|
|
78
82
|
(0, _inherits3['default'])(Easy3wDownLoad, _Component);
|
|
@@ -83,7 +87,7 @@ var Easy3wDownLoad = function (_Component) {
|
|
|
83
87
|
var _this = (0, _possibleConstructorReturn3['default'])(this, _Component.call(this, props));
|
|
84
88
|
|
|
85
89
|
_this.onPreview = function (file, url) {
|
|
86
|
-
var objPreviewFileNew = (0, _extends3['default'])({}, _comonConfig.objPreviewFile, _this.props.objPreviewFile);
|
|
90
|
+
var objPreviewFileNew = (0, _extends3['default'])({}, objPreviewFileDefault, _comonConfig.objPreviewFile, _this.props.objPreviewFile);
|
|
87
91
|
var previewFileUrl = objPreviewFileNew.previewFileUrl,
|
|
88
92
|
previewFileType = objPreviewFileNew.previewFileType;
|
|
89
93
|
var uid = file.uid,
|
|
@@ -198,7 +202,7 @@ var Easy3wDownLoad = function (_Component) {
|
|
|
198
202
|
fileViewURL = _props.fileViewURL,
|
|
199
203
|
fileCallURL = _props.fileCallURL;
|
|
200
204
|
|
|
201
|
-
var objPreviewFileNew = (0, _extends3['default'])({}, _comonConfig.objPreviewFile, this.props.objPreviewFile);
|
|
205
|
+
var objPreviewFileNew = (0, _extends3['default'])({}, objPreviewFileDefault, _comonConfig.objPreviewFile, this.props.objPreviewFile);
|
|
202
206
|
var previewFileFlag = objPreviewFileNew.previewFileFlag,
|
|
203
207
|
downloadFileFlag = objPreviewFileNew.downloadFileFlag,
|
|
204
208
|
previewFileType = objPreviewFileNew.previewFileType;
|