@dhccmobile/vue3-lo-form 1.1.41 → 2.0.0
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/.env.local.bak +6 -6
- package/.eslintrc.js +28 -28
- package/README.md +70 -62
- package/babel.config.js +3 -3
- package/dist/vue3-lo-form.common.js +7700 -107778
- package/dist/vue3-lo-form.common.js.map +1 -1
- package/dist/vue3-lo-form.css +1 -1
- package/dist/vue3-lo-form.umd.js +7773 -107851
- package/dist/vue3-lo-form.umd.js.map +1 -1
- package/dist/vue3-lo-form.umd.min.js +1 -56
- package/dist/vue3-lo-form.umd.min.js.map +1 -1
- package/package.json +65 -61
- package/public/index.html +17 -17
- package/public/js/pinyin.ts +101 -101
- package/src/App.vue +741 -741
- package/src/components/form/DvForm.vue +642 -642
- package/src/components/form/DvFormLayout.vue +1569 -1569
- package/src/components/form/StretchText.vue +90 -90
- package/src/components/index.ts +3 -3
- package/src/constants/config/form-template.config.ts +32 -32
- package/src/constants/config/form.config.ts +4 -4
- package/src/constants/config/storage.config.ts +4 -4
- package/src/constants/encode-assets/svg.ts +11 -11
- package/src/constants/enum/builtIn-label.enum.ts +5 -5
- package/src/constants/enum/cache-type.enum.ts +7 -7
- package/src/constants/enum/control-format-type.enum.ts +9 -9
- package/src/constants/enum/dynamic-option-type.enum.ts +6 -6
- package/src/constants/enum/form-bus-attr.enum.ts +8 -8
- package/src/constants/enum/form-field-class.enum.ts +7 -7
- package/src/constants/enum/form-field-type.enum.ts +25 -25
- package/src/constants/enum/form-type.enum.ts +5 -5
- package/src/constants/enum/index.ts +19 -19
- package/src/constants/enum/lateral-arrangement.enum.ts +9 -9
- package/src/constants/enum/money-unit.enum.ts +6 -6
- package/src/constants/enum/option-type.enum.ts +5 -5
- package/src/constants/enum/submitted-type.enum.ts +32 -31
- package/src/constants/enum/support-upload-type.enum.ts +5 -5
- package/src/constants/enum/switch.enum.ts +5 -5
- package/src/constants/enum/upload-type.enum.ts +17 -17
- package/src/constants/enum/validate-rules.enum.ts +25 -25
- package/src/constants/enum/validate-status.enum.ts +8 -8
- package/src/constants/enum/vertical-arrangement.enum.ts +7 -7
- package/src/constants/enum/zoom-type.ts +6 -6
- package/src/constants/index.ts +3 -3
- package/src/core/FormApi.ts +1238 -1238
- package/src/core/index.ts +1 -1
- package/src/domain/AbstractControl.ts +6 -6
- package/src/domain/Control.ts +14 -14
- package/src/domain/CustomFormat.ts +6 -6
- package/src/domain/DesForm.ts +48 -48
- package/src/domain/DesFormControl.ts +241 -241
- package/src/domain/DesFormLayout.ts +51 -51
- package/src/domain/FieldChangeHistory.ts +9 -9
- package/src/domain/FormConfig.ts +15 -15
- package/src/domain/FormControl.ts +125 -125
- package/src/domain/FormEnum.ts +9 -9
- package/src/domain/FormGroup.ts +42 -42
- package/src/domain/FormRestfulResponse.ts +6 -6
- package/src/domain/ProvideInjectData.ts +10 -10
- package/src/domain/SysDictDetail.ts +38 -38
- package/src/domain/SysDictInfo.ts +40 -40
- package/src/domain/SysDictTreeDetail.ts +52 -52
- package/src/domain/index.ts +12 -12
- package/src/filtres/amount-capitalization.filter.ts +154 -147
- package/src/filtres/extract-options.filter.ts +53 -53
- package/src/filtres/generate-grid-column-end.filter.ts +22 -22
- package/src/filtres/generate-grid-template-columns.filter.ts +24 -24
- package/src/filtres/switch-enum-convert.filter.ts +18 -18
- package/src/filtres/zoom-multiple.filter.ts +32 -32
- package/src/index.ts +73 -73
- package/src/main.ts +17 -17
- package/src/services/api.service.ts +73 -73
- package/src/services/clean-local-forage.service.ts +58 -58
- package/src/services/date-format.service.ts +74 -74
- package/src/services/dict-local-forage.service.ts +58 -58
- package/src/services/form-bean-utils.service.ts +41 -41
- package/src/services/form-local-forage.service.ts +59 -59
- package/src/services/form-tools.service.ts +739 -659
- package/src/services/form-tree-node-convert.service.ts +240 -240
- package/src/services/form-validate.service.ts +103 -103
- package/src/services/index.ts +9 -9
- package/src/services/router.service.ts +96 -96
- package/src/services/validate-generator.service.ts +710 -710
- package/src/shims-vue.d.ts +6 -6
- package/src/store/dict.store.ts +63 -63
- package/src/store/form.store.ts +32 -32
- package/src/store/index.ts +2 -2
- package/src/styles/datePicker.scss +125 -125
- package/src/styles/index.scss +195 -195
- package/src/styles/theme1.scss +277 -277
- package/src/styles/theme2.scss +376 -376
- package/src/styles/themes.scss +9 -9
- package/src/types/vfForm.ts +11 -11
- package/tsconfig.json +40 -40
- package/types/components/index.d.ts +3 -3
- package/types/constants/config/form-template.config.d.ts +30 -30
- package/types/constants/config/form.config.d.ts +4 -4
- package/types/constants/config/storage.config.d.ts +4 -4
- package/types/constants/encode-assets/svg.d.ts +5 -5
- package/types/constants/enum/builtIn-label.enum.d.ts +7 -7
- package/types/constants/enum/cache-type.enum.d.ts +15 -15
- package/types/constants/enum/control-format-type.enum.d.ts +23 -23
- package/types/constants/enum/dynamic-option-type.enum.d.ts +11 -11
- package/types/constants/enum/form-bus-attr.enum.d.ts +19 -19
- package/types/constants/enum/form-field-class.enum.d.ts +18 -18
- package/types/constants/enum/form-field-type.enum.d.ts +111 -111
- package/types/constants/enum/form-type.enum.d.ts +11 -11
- package/types/constants/enum/index.d.ts +19 -19
- package/types/constants/enum/lateral-arrangement.enum.d.ts +23 -23
- package/types/constants/enum/money-unit.enum.d.ts +15 -15
- package/types/constants/enum/option-type.enum.d.ts +11 -11
- package/types/constants/enum/submitted-type.enum.d.ts +115 -111
- package/types/constants/enum/support-upload-type.enum.d.ts +11 -11
- package/types/constants/enum/switch.enum.d.ts +11 -11
- package/types/constants/enum/upload-type.enum.d.ts +59 -59
- package/types/constants/enum/validate-rules.enum.d.ts +2 -2
- package/types/constants/enum/validate-status.enum.d.ts +2 -2
- package/types/constants/enum/vertical-arrangement.enum.d.ts +21 -21
- package/types/constants/enum/zoom-type.d.ts +15 -15
- package/types/constants/index.d.ts +3 -3
- package/types/core/FormApi.d.ts +376 -376
- package/types/core/index.d.ts +1 -1
- package/types/domain/AbstractControl.d.ts +5 -5
- package/types/domain/Control.d.ts +13 -13
- package/types/domain/CustomFormat.d.ts +5 -5
- package/types/domain/DesForm.d.ts +32 -32
- package/types/domain/DesFormControl.d.ts +160 -160
- package/types/domain/DesFormLayout.d.ts +33 -33
- package/types/domain/FieldChangeHistory.d.ts +9 -9
- package/types/domain/FormConfig.d.ts +15 -15
- package/types/domain/FormControl.d.ts +60 -60
- package/types/domain/FormEnum.d.ts +10 -10
- package/types/domain/FormGroup.d.ts +27 -27
- package/types/domain/FormRestfulResponse.d.ts +6 -6
- package/types/domain/ProvideInjectData.d.ts +10 -10
- package/types/domain/SysDictDetail.d.ts +24 -24
- package/types/domain/SysDictInfo.d.ts +26 -26
- package/types/domain/SysDictTreeDetail.d.ts +34 -34
- package/types/domain/index.d.ts +12 -12
- package/types/filtres/amount-capitalization.filter.d.ts +7 -7
- package/types/filtres/extract-options.filter.d.ts +13 -13
- package/types/filtres/generate-grid-column-end.filter.d.ts +11 -11
- package/types/filtres/generate-grid-template-columns.filter.d.ts +11 -11
- package/types/filtres/switch-enum-convert.filter.d.ts +2 -2
- package/types/filtres/zoom-multiple.filter.d.ts +3 -3
- package/types/index.d.ts +13 -13
- package/types/main.d.ts +2 -2
- package/types/services/api.service.d.ts +25 -25
- package/types/services/clean-local-forage.service.d.ts +28 -28
- package/types/services/date-format.service.d.ts +21 -21
- package/types/services/dict-local-forage.service.d.ts +28 -28
- package/types/services/form-bean-utils.service.d.ts +23 -23
- package/types/services/form-local-forage.service.d.ts +28 -28
- package/types/services/form-tools.service.d.ts +153 -144
- package/types/services/form-tree-node-convert.service.d.ts +104 -104
- package/types/services/form-validate.service.d.ts +32 -32
- package/types/services/index.d.ts +9 -9
- package/types/services/router.service.d.ts +40 -40
- package/types/services/validate-generator.service.d.ts +154 -154
- package/types/store/dict.store.d.ts +29 -29
- package/types/store/form.store.d.ts +17 -17
- package/types/store/index.d.ts +2 -2
- package/types/types/vfForm.d.ts +10 -10
- package/vue.config.js +38 -29
- package/dhccmobile-vue3-lo-form-1.1.41.tgz +0 -0
package/src/styles/index.scss
CHANGED
|
@@ -1,195 +1,195 @@
|
|
|
1
|
-
.w-100 {
|
|
2
|
-
width: 100%;
|
|
3
|
-
}
|
|
4
|
-
.h-100 {
|
|
5
|
-
height: 100%;
|
|
6
|
-
}
|
|
7
|
-
.lo-fw {
|
|
8
|
-
font-weight: 600;
|
|
9
|
-
}
|
|
10
|
-
.ant-radio-group {
|
|
11
|
-
text-align: left;
|
|
12
|
-
}
|
|
13
|
-
.ant-time-picker-panel,
|
|
14
|
-
.ant-calendar-picker-container,
|
|
15
|
-
.ant-select-dropdown,
|
|
16
|
-
.ant-cascader-menus{
|
|
17
|
-
z-index: 2300;
|
|
18
|
-
}
|
|
19
|
-
.lo-form-item-tooltip {
|
|
20
|
-
.ant-tooltip-arrow {
|
|
21
|
-
&::before {
|
|
22
|
-
background-color: #FFFFFF;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
.ant-tooltip-inner {
|
|
26
|
-
color: #666666;
|
|
27
|
-
background-color: #FFFFFF;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
.lo-label-history-popconfirm {
|
|
31
|
-
.anticon-exclamation-circle {
|
|
32
|
-
display: none;
|
|
33
|
-
}
|
|
34
|
-
.ant-popover-message-title {
|
|
35
|
-
padding-left: 0;
|
|
36
|
-
}
|
|
37
|
-
.ant-popover-inner-content {
|
|
38
|
-
padding-left: 0;
|
|
39
|
-
padding-right: 0;
|
|
40
|
-
.ant-popover-message {
|
|
41
|
-
overflow-y: auto;
|
|
42
|
-
padding-left: 16px;
|
|
43
|
-
padding-right: 16px;
|
|
44
|
-
max-height: 250px;
|
|
45
|
-
padding-bottom: 0;
|
|
46
|
-
}
|
|
47
|
-
.ant-popover-buttons {
|
|
48
|
-
padding: 10px 15px 0 15px;
|
|
49
|
-
button:first-child {
|
|
50
|
-
display: none;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
.lo-history-popconfirm-title {
|
|
55
|
-
margin-bottom: 15px;
|
|
56
|
-
font-weight: 600;
|
|
57
|
-
}
|
|
58
|
-
.ant-timeline.lo-history-timeline {
|
|
59
|
-
.lo-history-context {
|
|
60
|
-
display: flex;
|
|
61
|
-
flex-direction: row;
|
|
62
|
-
.lo-mx-10 {
|
|
63
|
-
margin-left: 10px;
|
|
64
|
-
margin-right: 10px;
|
|
65
|
-
}
|
|
66
|
-
.lo-ml-10 {
|
|
67
|
-
margin-left: 10px;
|
|
68
|
-
}
|
|
69
|
-
.lo-important {
|
|
70
|
-
font-weight: 600;
|
|
71
|
-
color: black;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
.ant-timeline-item-last {
|
|
75
|
-
padding-bottom: 0;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
.lo-form-error-modal {
|
|
80
|
-
.ant-modal-wrap {
|
|
81
|
-
overflow-y: hidden;
|
|
82
|
-
display: flex;
|
|
83
|
-
align-items: center;
|
|
84
|
-
.ant-modal {
|
|
85
|
-
top: 0;
|
|
86
|
-
.ant-modal-body {
|
|
87
|
-
padding: 0;
|
|
88
|
-
.ant-modal-confirm-body {
|
|
89
|
-
.anticon {
|
|
90
|
-
display: none;
|
|
91
|
-
}
|
|
92
|
-
.ant-modal-confirm-title {
|
|
93
|
-
height: 50px;
|
|
94
|
-
padding: 0 20px;
|
|
95
|
-
display: flex;
|
|
96
|
-
align-items: center;
|
|
97
|
-
line-height: initial;
|
|
98
|
-
border-bottom: 1px solid #f2f2f2;
|
|
99
|
-
box-shadow: 4px 0 8px rgb(135 140 185 / 15%);
|
|
100
|
-
> div {
|
|
101
|
-
display: flex;
|
|
102
|
-
align-items: center;
|
|
103
|
-
width: 100%;
|
|
104
|
-
img {
|
|
105
|
-
width: 18px;
|
|
106
|
-
height: 18px;
|
|
107
|
-
margin-right: 8px;
|
|
108
|
-
margin-bottom: -1px;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
.ant-modal-confirm-content {
|
|
113
|
-
margin: 0;
|
|
114
|
-
> div {
|
|
115
|
-
height: calc(100vh - 200px);
|
|
116
|
-
overflow-y: auto;
|
|
117
|
-
padding: 10px 20px;
|
|
118
|
-
display: flex;
|
|
119
|
-
flex-direction: column;
|
|
120
|
-
.lo-error-item {
|
|
121
|
-
display: flex;
|
|
122
|
-
flex-direction: row;
|
|
123
|
-
line-height: 32px;
|
|
124
|
-
font-size: 16px;
|
|
125
|
-
.lo-error-describe {
|
|
126
|
-
font-weight: 700;
|
|
127
|
-
color: #333;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
.ant-modal-confirm-btns {
|
|
134
|
-
margin-top: 0;
|
|
135
|
-
width: 100%;
|
|
136
|
-
border-top: 1px solid #e8e8e8;
|
|
137
|
-
height: 50px;
|
|
138
|
-
padding: 0 20px;
|
|
139
|
-
display: flex;
|
|
140
|
-
justify-content: flex-end;
|
|
141
|
-
align-items: center;
|
|
142
|
-
& > :first-child {
|
|
143
|
-
display: none;
|
|
144
|
-
}
|
|
145
|
-
.ant-btn {
|
|
146
|
-
color: #666;
|
|
147
|
-
background-color: white;
|
|
148
|
-
border: 1px solid #ddd;
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
.lo-multiple-select-suffix-icon {
|
|
156
|
-
cursor: pointer;
|
|
157
|
-
height: 100%;
|
|
158
|
-
width: 25px;
|
|
159
|
-
display: flex;
|
|
160
|
-
align-items: center;
|
|
161
|
-
justify-content: center;
|
|
162
|
-
}
|
|
163
|
-
.lo-select-hide-drop-down-content {
|
|
164
|
-
display: none;
|
|
165
|
-
}
|
|
166
|
-
.lo-form-model-item-textarea-box {
|
|
167
|
-
.ant-form-item-control {
|
|
168
|
-
&:not(.has-error){
|
|
169
|
-
padding-bottom: 19px !important;
|
|
170
|
-
.ant-form-explain {
|
|
171
|
-
display: none;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
.lo-custom-control-box {
|
|
177
|
-
width: 100%;
|
|
178
|
-
display: inline-block;
|
|
179
|
-
}
|
|
180
|
-
.ant-checkbox + span, .ant-checkbox + span > span {
|
|
181
|
-
display: block;
|
|
182
|
-
overflow: hidden;
|
|
183
|
-
text-overflow: ellipsis;
|
|
184
|
-
white-space: nowrap;
|
|
185
|
-
padding-right: 0 !important;
|
|
186
|
-
}
|
|
187
|
-
/** 下拉框滚动条样式 */
|
|
188
|
-
.rc-virtual-list-scrollbar-thumb {
|
|
189
|
-
width: 6px !important;
|
|
190
|
-
background: #E1E1E1 !important;
|
|
191
|
-
}
|
|
192
|
-
/** 下拉选项的层级 */
|
|
193
|
-
.ant-select-arrow {
|
|
194
|
-
z-index: 10;
|
|
195
|
-
}
|
|
1
|
+
.w-100 {
|
|
2
|
+
width: 100%;
|
|
3
|
+
}
|
|
4
|
+
.h-100 {
|
|
5
|
+
height: 100%;
|
|
6
|
+
}
|
|
7
|
+
.lo-fw {
|
|
8
|
+
font-weight: 600;
|
|
9
|
+
}
|
|
10
|
+
.ant-radio-group {
|
|
11
|
+
text-align: left;
|
|
12
|
+
}
|
|
13
|
+
.ant-time-picker-panel,
|
|
14
|
+
.ant-calendar-picker-container,
|
|
15
|
+
.ant-select-dropdown,
|
|
16
|
+
.ant-cascader-menus{
|
|
17
|
+
z-index: 2300;
|
|
18
|
+
}
|
|
19
|
+
.lo-form-item-tooltip {
|
|
20
|
+
.ant-tooltip-arrow {
|
|
21
|
+
&::before {
|
|
22
|
+
background-color: #FFFFFF;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
.ant-tooltip-inner {
|
|
26
|
+
color: #666666;
|
|
27
|
+
background-color: #FFFFFF;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
.lo-label-history-popconfirm {
|
|
31
|
+
.anticon-exclamation-circle {
|
|
32
|
+
display: none;
|
|
33
|
+
}
|
|
34
|
+
.ant-popover-message-title {
|
|
35
|
+
padding-left: 0;
|
|
36
|
+
}
|
|
37
|
+
.ant-popover-inner-content {
|
|
38
|
+
padding-left: 0;
|
|
39
|
+
padding-right: 0;
|
|
40
|
+
.ant-popover-message {
|
|
41
|
+
overflow-y: auto;
|
|
42
|
+
padding-left: 16px;
|
|
43
|
+
padding-right: 16px;
|
|
44
|
+
max-height: 250px;
|
|
45
|
+
padding-bottom: 0;
|
|
46
|
+
}
|
|
47
|
+
.ant-popover-buttons {
|
|
48
|
+
padding: 10px 15px 0 15px;
|
|
49
|
+
button:first-child {
|
|
50
|
+
display: none;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
.lo-history-popconfirm-title {
|
|
55
|
+
margin-bottom: 15px;
|
|
56
|
+
font-weight: 600;
|
|
57
|
+
}
|
|
58
|
+
.ant-timeline.lo-history-timeline {
|
|
59
|
+
.lo-history-context {
|
|
60
|
+
display: flex;
|
|
61
|
+
flex-direction: row;
|
|
62
|
+
.lo-mx-10 {
|
|
63
|
+
margin-left: 10px;
|
|
64
|
+
margin-right: 10px;
|
|
65
|
+
}
|
|
66
|
+
.lo-ml-10 {
|
|
67
|
+
margin-left: 10px;
|
|
68
|
+
}
|
|
69
|
+
.lo-important {
|
|
70
|
+
font-weight: 600;
|
|
71
|
+
color: black;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
.ant-timeline-item-last {
|
|
75
|
+
padding-bottom: 0;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
.lo-form-error-modal {
|
|
80
|
+
.ant-modal-wrap {
|
|
81
|
+
overflow-y: hidden;
|
|
82
|
+
display: flex;
|
|
83
|
+
align-items: center;
|
|
84
|
+
.ant-modal {
|
|
85
|
+
top: 0;
|
|
86
|
+
.ant-modal-body {
|
|
87
|
+
padding: 0;
|
|
88
|
+
.ant-modal-confirm-body {
|
|
89
|
+
.anticon {
|
|
90
|
+
display: none;
|
|
91
|
+
}
|
|
92
|
+
.ant-modal-confirm-title {
|
|
93
|
+
height: 50px;
|
|
94
|
+
padding: 0 20px;
|
|
95
|
+
display: flex;
|
|
96
|
+
align-items: center;
|
|
97
|
+
line-height: initial;
|
|
98
|
+
border-bottom: 1px solid #f2f2f2;
|
|
99
|
+
box-shadow: 4px 0 8px rgb(135 140 185 / 15%);
|
|
100
|
+
> div {
|
|
101
|
+
display: flex;
|
|
102
|
+
align-items: center;
|
|
103
|
+
width: 100%;
|
|
104
|
+
img {
|
|
105
|
+
width: 18px;
|
|
106
|
+
height: 18px;
|
|
107
|
+
margin-right: 8px;
|
|
108
|
+
margin-bottom: -1px;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
.ant-modal-confirm-content {
|
|
113
|
+
margin: 0;
|
|
114
|
+
> div {
|
|
115
|
+
height: calc(100vh - 200px);
|
|
116
|
+
overflow-y: auto;
|
|
117
|
+
padding: 10px 20px;
|
|
118
|
+
display: flex;
|
|
119
|
+
flex-direction: column;
|
|
120
|
+
.lo-error-item {
|
|
121
|
+
display: flex;
|
|
122
|
+
flex-direction: row;
|
|
123
|
+
line-height: 32px;
|
|
124
|
+
font-size: 16px;
|
|
125
|
+
.lo-error-describe {
|
|
126
|
+
font-weight: 700;
|
|
127
|
+
color: #333;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
.ant-modal-confirm-btns {
|
|
134
|
+
margin-top: 0;
|
|
135
|
+
width: 100%;
|
|
136
|
+
border-top: 1px solid #e8e8e8;
|
|
137
|
+
height: 50px;
|
|
138
|
+
padding: 0 20px;
|
|
139
|
+
display: flex;
|
|
140
|
+
justify-content: flex-end;
|
|
141
|
+
align-items: center;
|
|
142
|
+
& > :first-child {
|
|
143
|
+
display: none;
|
|
144
|
+
}
|
|
145
|
+
.ant-btn {
|
|
146
|
+
color: #666;
|
|
147
|
+
background-color: white;
|
|
148
|
+
border: 1px solid #ddd;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
.lo-multiple-select-suffix-icon {
|
|
156
|
+
cursor: pointer;
|
|
157
|
+
height: 100%;
|
|
158
|
+
width: 25px;
|
|
159
|
+
display: flex;
|
|
160
|
+
align-items: center;
|
|
161
|
+
justify-content: center;
|
|
162
|
+
}
|
|
163
|
+
.lo-select-hide-drop-down-content {
|
|
164
|
+
display: none;
|
|
165
|
+
}
|
|
166
|
+
.lo-form-model-item-textarea-box {
|
|
167
|
+
.ant-form-item-control {
|
|
168
|
+
&:not(.has-error){
|
|
169
|
+
padding-bottom: 19px !important;
|
|
170
|
+
.ant-form-explain {
|
|
171
|
+
display: none;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
.lo-custom-control-box {
|
|
177
|
+
width: 100%;
|
|
178
|
+
display: inline-block;
|
|
179
|
+
}
|
|
180
|
+
.ant-checkbox + span, .ant-checkbox + span > span {
|
|
181
|
+
display: block;
|
|
182
|
+
overflow: hidden;
|
|
183
|
+
text-overflow: ellipsis;
|
|
184
|
+
white-space: nowrap;
|
|
185
|
+
padding-right: 0 !important;
|
|
186
|
+
}
|
|
187
|
+
/** 下拉框滚动条样式 */
|
|
188
|
+
.rc-virtual-list-scrollbar-thumb {
|
|
189
|
+
width: 6px !important;
|
|
190
|
+
background: #E1E1E1 !important;
|
|
191
|
+
}
|
|
192
|
+
/** 下拉选项的层级 */
|
|
193
|
+
.ant-select-arrow {
|
|
194
|
+
z-index: 10;
|
|
195
|
+
}
|