easy3wui 1.5.47-beta2 → 1.5.47-beta3
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/gridPage.css +92 -0
- package/assets/index.css +1484 -0
- package/assets/login.css +61 -0
- package/assets/loginLayout.css +115 -0
- package/assets/modal.css +0 -0
- package/assets/result.css +45 -0
- package/assets/userLayout.css +70 -0
- package/lib/Easy3wDownLoad/Easy3wRCView.js +65 -0
- package/lib/Easy3wDownLoad/index.js +329 -0
- package/lib/Easy3wException/403.js +21 -0
- package/lib/Easy3wException/404.js +21 -0
- package/lib/Easy3wException/500.js +21 -0
- package/lib/Easy3wException/index.js +94 -0
- package/lib/Easy3wException/typeConfig.js +23 -0
- package/lib/Easy3wFlow/index.js +548 -0
- package/lib/Easy3wFormPage/index.js +2135 -0
- package/lib/Easy3wGetCookie/index.js +14 -0
- package/lib/Easy3wGlobalFooter/index.js +73 -0
- package/lib/Easy3wGlobalHeader/index.js +148 -0
- package/lib/Easy3wGridCheckBox/index.js +69 -0
- package/lib/Easy3wGridDatePicker/index.js +90 -0
- package/lib/Easy3wGridDateTimePicker/index.js +122 -0
- package/lib/Easy3wGridInput/index.js +105 -0
- package/lib/Easy3wGridInputNumber/index.js +83 -0
- package/lib/Easy3wGridInputNumberFormat/index.js +93 -0
- package/lib/Easy3wGridPage/index.js +735 -0
- package/lib/Easy3wGridRadio/index.js +70 -0
- package/lib/Easy3wGridSelect/index.js +95 -0
- package/lib/Easy3wGridTextArea/index.js +128 -0
- package/lib/Easy3wInput/index.js +48 -0
- package/lib/Easy3wLogin/index.js +386 -0
- package/lib/Easy3wLoginLayout/index.js +628 -0
- package/lib/Easy3wModal/index.js +144 -0
- package/lib/Easy3wPositionButton/index.js +99 -0
- package/lib/Easy3wQryGrid/index.js +670 -0
- package/lib/Easy3wResult/index.js +77 -0
- package/lib/Easy3wSetCookie/index.js +13 -0
- package/lib/Easy3wSpin/index.js +69 -0
- package/lib/Easy3wTabs/index.js +89 -0
- package/lib/Easy3wTagSelect/index.js +238 -0
- package/lib/Easy3wUpload/index.js +511 -0
- package/lib/Easy3wUploadB/index copy 2.js +1011 -0
- package/lib/Easy3wUploadB/index copy.js +1020 -0
- package/lib/Easy3wUploadB/index.js +1056 -0
- package/lib/Easy3wUploadM/index.js +512 -0
- package/lib/Easy3wUserLayout/index.js +138 -0
- package/package.json +1 -1
package/assets/gridPage.css
CHANGED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
3
|
+
/* stylelint-disable */
|
|
4
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
5
|
+
.scrollY .ant-table-tbody > .ant-table-row .e3wGridShortText {
|
|
6
|
+
text-align: center;
|
|
7
|
+
}
|
|
8
|
+
.scrollY .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
9
|
+
text-align: left;
|
|
10
|
+
}
|
|
11
|
+
.scrollY .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
12
|
+
text-align: right;
|
|
13
|
+
}
|
|
14
|
+
.scrollY .ant-table-tbody > .ant-table-row .e3wMaxText {
|
|
15
|
+
text-align: left;
|
|
16
|
+
max-width: 240px;
|
|
17
|
+
text-overflow: ellipsis;
|
|
18
|
+
white-space: nowrap;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
}
|
|
21
|
+
.scrollY .ant-table-thead > tr > th {
|
|
22
|
+
text-align: center;
|
|
23
|
+
}
|
|
24
|
+
.scrollX .ant-table-thead > tr > th {
|
|
25
|
+
word-break: keep-all;
|
|
26
|
+
white-space: nowrap;
|
|
27
|
+
text-align: center;
|
|
28
|
+
}
|
|
29
|
+
.scrollX .ant-table-tbody > .ant-table-row td {
|
|
30
|
+
max-width: 240px;
|
|
31
|
+
word-break: keep-all;
|
|
32
|
+
text-overflow: ellipsis;
|
|
33
|
+
white-space: nowrap;
|
|
34
|
+
overflow: hidden;
|
|
35
|
+
}
|
|
36
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wText {
|
|
37
|
+
white-space: normal;
|
|
38
|
+
text-align: left;
|
|
39
|
+
}
|
|
40
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wGridShortText {
|
|
41
|
+
text-align: center;
|
|
42
|
+
}
|
|
43
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
44
|
+
text-align: left;
|
|
45
|
+
}
|
|
46
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
47
|
+
text-align: right;
|
|
48
|
+
}
|
|
49
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wMaxText {
|
|
50
|
+
text-align: left;
|
|
51
|
+
max-width: 240px;
|
|
52
|
+
text-overflow: ellipsis;
|
|
53
|
+
white-space: nowrap;
|
|
54
|
+
overflow: hidden;
|
|
55
|
+
}
|
|
56
|
+
.scrollPrint .ant-table-thead > tr > th {
|
|
57
|
+
text-align: center;
|
|
58
|
+
}
|
|
59
|
+
.scrollPrint .ant-table-tbody > .ant-table-row td {
|
|
60
|
+
max-width: 240px;
|
|
61
|
+
}
|
|
62
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wText {
|
|
63
|
+
text-align: left;
|
|
64
|
+
}
|
|
65
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridShortText {
|
|
66
|
+
text-align: center;
|
|
67
|
+
}
|
|
68
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
69
|
+
text-align: justify;
|
|
70
|
+
}
|
|
71
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
72
|
+
text-align: right;
|
|
73
|
+
}
|
|
74
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wMaxText {
|
|
75
|
+
max-width: 240px;
|
|
76
|
+
text-align: left;
|
|
77
|
+
}
|
|
78
|
+
.butt {
|
|
79
|
+
background-color: #1890ff;
|
|
80
|
+
color: #fff;
|
|
81
|
+
font-size: 14px;
|
|
82
|
+
}
|
|
83
|
+
.butt:visited,
|
|
84
|
+
.butt:focus,
|
|
85
|
+
.butt:hover,
|
|
86
|
+
.butt:active {
|
|
87
|
+
background-color: #1890ff;
|
|
88
|
+
color: #fff;
|
|
89
|
+
}
|
|
90
|
+
.onRow tr:hover {
|
|
91
|
+
cursor: pointer;
|
|
92
|
+
}
|