easy3wui 1.5.69 → 1.5.70-beta2
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 +9 -7
- package/assets/index.css +9 -7
- package/lib/Easy3wFormPage/index.js +4 -3
- package/package.json +1 -1
package/assets/formPage.css
CHANGED
|
@@ -13,13 +13,6 @@
|
|
|
13
13
|
.e3wFormPageWrap .e3wFormItem .ant-form-item {
|
|
14
14
|
margin-bottom: 8px;
|
|
15
15
|
}
|
|
16
|
-
.e3wFormPageWrap .e3wFormItem input.ant-input-number-input {
|
|
17
|
-
text-align: right;
|
|
18
|
-
padding-right: 22px;
|
|
19
|
-
}
|
|
20
|
-
.e3wFormPageWrap .e3wFormItem .rightText {
|
|
21
|
-
text-align: right;
|
|
22
|
-
}
|
|
23
16
|
.e3wFormPageWrap .inputNumberFormat {
|
|
24
17
|
display: -ms-flexbox;
|
|
25
18
|
display: flex;
|
|
@@ -38,6 +31,15 @@
|
|
|
38
31
|
.e3wFormPageWrap .inputNumberFormat .inputNumberBtns .e3wFootBtn {
|
|
39
32
|
margin: 0;
|
|
40
33
|
}
|
|
34
|
+
input.ant-input-number-input {
|
|
35
|
+
text-align: right;
|
|
36
|
+
}
|
|
37
|
+
input.ant-input-number-input:hover {
|
|
38
|
+
padding-right: 22px;
|
|
39
|
+
}
|
|
40
|
+
.rightText {
|
|
41
|
+
text-align: right;
|
|
42
|
+
}
|
|
41
43
|
.bf-container.read-only .bf-content {
|
|
42
44
|
height: auto;
|
|
43
45
|
}
|
package/assets/index.css
CHANGED
|
@@ -2404,13 +2404,6 @@ s {
|
|
|
2404
2404
|
.e3wFormPageWrap .e3wFormItem .ant-form-item {
|
|
2405
2405
|
margin-bottom: 8px;
|
|
2406
2406
|
}
|
|
2407
|
-
.e3wFormPageWrap .e3wFormItem input.ant-input-number-input {
|
|
2408
|
-
text-align: right;
|
|
2409
|
-
padding-right: 22px;
|
|
2410
|
-
}
|
|
2411
|
-
.e3wFormPageWrap .e3wFormItem .rightText {
|
|
2412
|
-
text-align: right;
|
|
2413
|
-
}
|
|
2414
2407
|
.e3wFormPageWrap .inputNumberFormat {
|
|
2415
2408
|
display: -ms-flexbox;
|
|
2416
2409
|
display: flex;
|
|
@@ -2429,6 +2422,15 @@ s {
|
|
|
2429
2422
|
.e3wFormPageWrap .inputNumberFormat .inputNumberBtns .e3wFootBtn {
|
|
2430
2423
|
margin: 0;
|
|
2431
2424
|
}
|
|
2425
|
+
input.ant-input-number-input {
|
|
2426
|
+
text-align: right;
|
|
2427
|
+
}
|
|
2428
|
+
input.ant-input-number-input:hover {
|
|
2429
|
+
padding-right: 22px;
|
|
2430
|
+
}
|
|
2431
|
+
.rightText {
|
|
2432
|
+
text-align: right;
|
|
2433
|
+
}
|
|
2432
2434
|
.bf-container.read-only .bf-content {
|
|
2433
2435
|
height: auto;
|
|
2434
2436
|
}
|
|
@@ -220,14 +220,14 @@ var _ref = _comonConfig.objEasy3wUIConfig || {},
|
|
|
220
220
|
var _ref2 = objEasy3wFormPage || {},
|
|
221
221
|
projectType = _ref2.projectType;
|
|
222
222
|
|
|
223
|
-
var
|
|
223
|
+
var objOptions = {
|
|
224
224
|
defaultRows: 3, // 默认行数
|
|
225
225
|
defaultColumns: 3, // 默认列数
|
|
226
226
|
withDropdown: false, // 插入表格前是否弹出下拉菜单
|
|
227
227
|
columnResizable: false, // 是否允许拖动调整列宽, 默认false
|
|
228
228
|
exportAttrString: 'style="border: 1"' // 指定输出HTML时附加到table标签上的属性字符串
|
|
229
229
|
};
|
|
230
|
-
_braftEditor2['default'].use((0, _table2['default'])(
|
|
230
|
+
_braftEditor2['default'].use((0, _table2['default'])(objOptions)); // 表格
|
|
231
231
|
|
|
232
232
|
_moment2['default'].locale('zh-cn');
|
|
233
233
|
|
|
@@ -3450,7 +3450,8 @@ var Easy3wFormPageTight = function (_Component2) {
|
|
|
3450
3450
|
onPressEnter: function onPressEnter(e) {
|
|
3451
3451
|
return _this2.numberInputonBlur(e, item);
|
|
3452
3452
|
},
|
|
3453
|
-
rules: [{ pattern: /^\d+(\.\d+)?$/, message: '数字' }]
|
|
3453
|
+
rules: [{ pattern: /^\d+(\.\d+)?$/, message: '数字' }],
|
|
3454
|
+
className: (0, _classnames2['default'])(['rightText'])
|
|
3454
3455
|
}, cmptPros, {
|
|
3455
3456
|
size: 'small'
|
|
3456
3457
|
}));
|