easy3wui 1.5.33-beta2 → 1.5.34
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 +1 -1
- package/assets/exception.css +3 -3
- package/assets/gridPage.css +1 -2
- package/assets/index.css +5 -6
- package/assets/result.css +1 -1
- package/lib/Easy3wGridInput/index.js +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/assets/exception.css
CHANGED
|
@@ -14,15 +14,15 @@
|
|
|
14
14
|
flex: 0 0 62.5%;
|
|
15
15
|
width: 62.5%;
|
|
16
16
|
padding-right: 152px;
|
|
17
|
-
zoom: 1;
|
|
18
17
|
}
|
|
19
|
-
.e3wException .e3wExceptionImgBlock::before
|
|
20
|
-
.e3wException .e3wExceptionImgBlock::after {
|
|
18
|
+
.e3wException .e3wExceptionImgBlock::before {
|
|
21
19
|
display: table;
|
|
22
20
|
content: '';
|
|
23
21
|
}
|
|
24
22
|
.e3wException .e3wExceptionImgBlock::after {
|
|
23
|
+
display: table;
|
|
25
24
|
clear: both;
|
|
25
|
+
content: '';
|
|
26
26
|
}
|
|
27
27
|
.e3wException .e3wExceptionImgEle {
|
|
28
28
|
height: 360px;
|
package/assets/gridPage.css
CHANGED
|
@@ -58,7 +58,6 @@
|
|
|
58
58
|
}
|
|
59
59
|
.scrollPrint .ant-table-tbody > .ant-table-row td {
|
|
60
60
|
max-width: 240px;
|
|
61
|
-
word-break: keep-all;
|
|
62
61
|
}
|
|
63
62
|
.scrollPrint .ant-table-tbody > .ant-table-row .e3wText {
|
|
64
63
|
text-align: left;
|
|
@@ -67,7 +66,7 @@
|
|
|
67
66
|
text-align: center;
|
|
68
67
|
}
|
|
69
68
|
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
70
|
-
text-align:
|
|
69
|
+
text-align: justify;
|
|
71
70
|
}
|
|
72
71
|
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
73
72
|
text-align: right;
|
package/assets/index.css
CHANGED
|
@@ -374,15 +374,15 @@ s {
|
|
|
374
374
|
flex: 0 0 62.5%;
|
|
375
375
|
width: 62.5%;
|
|
376
376
|
padding-right: 152px;
|
|
377
|
-
zoom: 1;
|
|
378
377
|
}
|
|
379
|
-
.e3wException .e3wExceptionImgBlock::before
|
|
380
|
-
.e3wException .e3wExceptionImgBlock::after {
|
|
378
|
+
.e3wException .e3wExceptionImgBlock::before {
|
|
381
379
|
display: table;
|
|
382
380
|
content: '';
|
|
383
381
|
}
|
|
384
382
|
.e3wException .e3wExceptionImgBlock::after {
|
|
383
|
+
display: table;
|
|
385
384
|
clear: both;
|
|
385
|
+
content: '';
|
|
386
386
|
}
|
|
387
387
|
.e3wException .e3wExceptionImgEle {
|
|
388
388
|
height: 360px;
|
|
@@ -1346,7 +1346,6 @@ s {
|
|
|
1346
1346
|
}
|
|
1347
1347
|
.scrollPrint .ant-table-tbody > .ant-table-row td {
|
|
1348
1348
|
max-width: 240px;
|
|
1349
|
-
word-break: keep-all;
|
|
1350
1349
|
}
|
|
1351
1350
|
.scrollPrint .ant-table-tbody > .ant-table-row .e3wText {
|
|
1352
1351
|
text-align: left;
|
|
@@ -1355,7 +1354,7 @@ s {
|
|
|
1355
1354
|
text-align: center;
|
|
1356
1355
|
}
|
|
1357
1356
|
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
1358
|
-
text-align:
|
|
1357
|
+
text-align: justify;
|
|
1359
1358
|
}
|
|
1360
1359
|
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
1361
1360
|
text-align: right;
|
|
@@ -1450,7 +1449,7 @@ input.ant-input-number-input {
|
|
|
1450
1449
|
color: #52c41a;
|
|
1451
1450
|
}
|
|
1452
1451
|
.e3wResult .e3wResultIcon > .e3wResultError {
|
|
1453
|
-
color: #
|
|
1452
|
+
color: #ff4d4f;
|
|
1454
1453
|
}
|
|
1455
1454
|
.e3wResult .e3wResultTitle {
|
|
1456
1455
|
font-size: 24px;
|
package/assets/result.css
CHANGED
|
@@ -69,7 +69,8 @@ var Easy3wGridInput = function (_Component) {
|
|
|
69
69
|
requiredMessage = _props.requiredMessage,
|
|
70
70
|
label = _props.label,
|
|
71
71
|
pattern = _props.pattern,
|
|
72
|
-
patternMessage = _props.patternMessage
|
|
72
|
+
patternMessage = _props.patternMessage,
|
|
73
|
+
titleType = _props.titleType;
|
|
73
74
|
var getFieldDecorator = form.getFieldDecorator;
|
|
74
75
|
|
|
75
76
|
var _ref = cmptPros || {},
|
|
@@ -77,6 +78,9 @@ var Easy3wGridInput = function (_Component) {
|
|
|
77
78
|
disabled = _ref.disabled;
|
|
78
79
|
|
|
79
80
|
var defaultMaxLength = 100;
|
|
81
|
+
if (titleType) {
|
|
82
|
+
defaultMaxLength = 400;
|
|
83
|
+
}
|
|
80
84
|
var rules = [{ required: required, message: requiredMessage || '\u8BF7\u586B\u5199' + label }, { pattern: pattern, message: patternMessage }, { max: maxLength || defaultMaxLength, message: '\u5F55\u5165\u6587\u5B57\u957F\u5EA6\u4E0D\u80FD\u8D85\u8FC7' + (maxLength || defaultMaxLength), transform: this.touchTransform }];
|
|
81
85
|
if (disabled) {
|
|
82
86
|
rules.pop();
|