vue2-client 1.16.95 → 1.16.97

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.
Files changed (23) hide show
  1. package/.env.message +19 -19
  2. package/package.json +1 -1
  3. package/src/assets/svg/female.svg +1 -1
  4. package/src/assets/svg/male.svg +1 -1
  5. package/src/base-client/components/common/HIS/HButtons/HButtons.vue +491 -491
  6. package/src/base-client/components/common/HIS/HForm/HForm.vue +401 -389
  7. package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -3
  8. package/src/base-client/components/common/HIS/HTab/HTab.vue +443 -443
  9. package/src/base-client/components/common/XAddNativeForm/XAddNativeForm.vue +1292 -1288
  10. package/src/base-client/components/common/XCollapse/XCollapse.vue +833 -833
  11. package/src/base-client/components/common/XFormTable/demo.vue +89 -89
  12. package/src/base-client/components/common/XTimeline/XTimeline.vue +477 -477
  13. package/src/base-client/components/his/XHisEditor/XHisEditor.vue +705 -705
  14. package/src/base-client/components/his/XList/XList.vue +938 -938
  15. package/src/base-client/components/his/XRadio/XRadio.vue +469 -469
  16. package/src/base-client/components/his/XSimpleTable/XSimpleTable.vue +159 -159
  17. package/src/base-client/components/his/XTimeSelect/XTimeSelect.vue +354 -354
  18. package/src/base-client/components/his/XTitle/XTitle.vue +306 -288
  19. package/src/base-client/components/his/XTreeRows/XTreeRows.vue +341 -341
  20. package/src/base-client/components/his/threeTestOrders/editor.vue +113 -113
  21. package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -45
  22. package/src-base-client/components/common/HIS/HForm/HForm.vue +0 -347
  23. package/src-base-client/components/common/XCollapse/XCollapse.vue +0 -0
@@ -1,389 +1,401 @@
1
- <script setup lang="ts">
2
- import XAddNativeForm from '@vue2-client/base-client/components/common/XAddNativeForm/XAddNativeForm.vue'
3
- import { ref, computed, useAttrs } from 'vue'
4
-
5
- const xAddNativeFormRef = ref()
6
-
7
- const attrs = useAttrs()
8
- const props = defineProps({
9
- // 是否启用 horizontal 模式的自定义配置
10
- enableHorizontalCustom: {
11
- type: Boolean,
12
- default: false
13
- }
14
- })
15
- // 启动时间选择框弹出到body
16
- const enablePopupToBody = computed(() => {
17
- const a = attrs
18
- return a.enablePopupToBody === 'true' || a.enablePopupToBody === true
19
- })
20
- const wrapperClassObject = computed(() => {
21
- const a = attrs
22
- const classes = {}
23
-
24
- // 1) 多个布尔型样式开关(存在且为真则生效)
25
- const booleanStyleKeys = [
26
- 'query-conditions',
27
- 'padding-50',
28
- 'label-text-horizontal',
29
- 'label-text-justify',
30
- 'label-justify',
31
- 'charge-form'
32
- ]
33
- for (const key of booleanStyleKeys) {
34
- const val = a[key]
35
- const truthy = val === true || val === '' || val === 'true'
36
- if (truthy) classes[`h-form-${key}`] = true
37
- }
38
-
39
- return classes
40
- })
41
-
42
- defineExpose({
43
- getXAddNativeFormInstance: () => xAddNativeFormRef.value,
44
- init: (params) => xAddNativeFormRef.value && xAddNativeFormRef.value.init && xAddNativeFormRef.value.init(params),
45
- asyncSubmit: () => xAddNativeFormRef.value && xAddNativeFormRef.value.asyncSubmit && xAddNativeFormRef.value.asyncSubmit(),
46
- validateForm: () => xAddNativeFormRef.value && xAddNativeFormRef.value.validateForm && xAddNativeFormRef.value.validateForm()
47
- })
48
-
49
- </script>
50
-
51
- <template>
52
- <div
53
- class="h-form-wrapper"
54
- :class="[
55
- wrapperClassObject
56
- ]"
57
- >
58
-
59
- <x-add-native-form
60
- ref="xAddNativeFormRef"
61
- v-bind="$attrs"
62
- :enable-popup-to-body="enablePopupToBody"
63
- :enable-horizontal-custom="props.enableHorizontalCustom"
64
- v-on="$listeners"
65
- >
66
- <template v-for="(_, name) in $slots" #[name]="slotData">
67
- <slot :name="name" v-bind="slotData" />
68
- </template>
69
- </x-add-native-form>
70
- </div>
71
- </template>
72
-
73
- <style scoped lang="less">
74
- .h-form-wrapper {
75
- // 基础样式
76
- :deep(.ant-form-item) {
77
- margin-bottom: 4px;
78
- }
79
-
80
- // query-conditions 样式
81
- &.h-form-query-conditions {
82
- // ant-card-body 样式
83
- :deep(.ant-card-body) {
84
- padding: 0px;
85
- }
86
-
87
- // simple-inline 模式下去除内部边距并占满宽度
88
- :deep(.simple-inline-item .ant-form-item) {
89
- padding: 0 !important;
90
- margin: 0 !important;
91
- }
92
- :deep(.simple-inline-item .ant-form-item .ant-form-item-label) {
93
- display: none !important;
94
- }
95
- :deep(.simple-inline-item .ant-form-item .ant-form-item-control-wrapper),
96
- :deep(.simple-inline-item .ant-form-item .ant-form-item-control) {
97
- width: 100% !important;
98
- }
99
- }
100
-
101
- &.h-form-padding-50 {
102
- // ant-row-flex 样式
103
- :deep(.ant-row-flex) {
104
- padding-left: 50px;
105
- padding-right: 50px
106
- }
107
- }
108
-
109
- // charge-form 样式
110
- &.h-form-charge-form {
111
- margin-top: 2px !important;
112
- // 定义变量
113
- @font-common: {
114
- font-family: 'Source Han Sans', sans-serif;
115
- font-size: 16px;
116
- font-weight: normal;
117
- letter-spacing: 0em;
118
- font-feature-settings: "kern" on;
119
- };
120
-
121
- @color-primary: #313131;
122
- @color-placeholder: #999999;
123
-
124
- // 定义混合宏
125
- .input-base() {
126
- width: 100%;
127
- height: 30px;
128
- line-height: 30px;
129
- vertical-align: top;
130
- margin: 0;
131
- text-align: left;
132
- color: @color-primary;
133
- opacity: 1;
134
- @font-common();
135
- }
136
-
137
- .placeholder-base() {
138
- color: @color-placeholder;
139
- opacity: 1;
140
- @font-common();
141
- }
142
-
143
- .option-group-base() {
144
- height: 30px;
145
- line-height: 30px;
146
- display: flex;
147
- align-items: center;
148
-
149
- .ant-radio-wrapper,
150
- .ant-checkbox-wrapper {
151
- height: 30px;
152
- line-height: 30px;
153
- margin-right: 16px;
154
- }
155
- }
156
-
157
- :deep(.ant-form-item) {
158
- margin-bottom: 16px;
159
- margin-top: 0;
160
- padding: 0;
161
- display: flex;
162
- align-items: center;
163
-
164
- .ant-form-item-label {
165
- text-align: left;
166
- margin: 0 16px 0 0 !important;
167
- width: 64px;
168
- min-width: 64px;
169
- max-width: 64px;
170
- flex-shrink: 0;
171
-
172
- label {
173
- height: 23px;
174
- opacity: 1;
175
- line-height: 23px;
176
- color: @color-primary;
177
- margin: 0;
178
- padding: 0;
179
- white-space: nowrap;
180
- display: block;
181
- @font-common();
182
-
183
- // 移除冒号
184
- &::after {
185
- content: '';
186
- }
187
- }
188
- }
189
-
190
- .ant-form-item-control-wrapper {
191
- margin: 0;
192
- padding: 0;
193
- flex: 1;
194
- min-width: 0;
195
- display: flex;
196
- align-items: center;
197
-
198
- .ant-form-item-control {
199
- margin: 0;
200
- padding: 0;
201
- width: 100%;
202
- text-align: left;
203
- line-height: 30px !important;
204
-
205
- // 输入框样式统一
206
- .ant-input,
207
- .ant-input-affix-wrapper,
208
- .ant-select,
209
- .ant-input-number,
210
- .ant-picker,
211
- .ant-radio-group,
212
- .ant-checkbox-group {
213
- .input-base();
214
- }
215
-
216
- // 选择器样式
217
- .ant-select {
218
- .ant-select-selector {
219
- .input-base();
220
- height: 30px;
221
- line-height: 30px;
222
-
223
- .ant-select-selection-item {
224
- .input-base();
225
- line-height: 30px;
226
- }
227
-
228
- .ant-select-selection-placeholder {
229
- .placeholder-base();
230
- line-height: 30px;
231
- color: #313131;
232
- }
233
- }
234
- }
235
-
236
- // 日期选择器样式
237
- .ant-picker {
238
- height: 30px;
239
-
240
- .ant-picker-input {
241
- height: 30px;
242
- line-height: 30px;
243
- .input-base();
244
-
245
- input {
246
- .input-base();
247
- height: 30px;
248
- line-height: 30px;
249
- }
250
- }
251
- }
252
-
253
- // 数字输入框样式
254
- .ant-input-number {
255
- height: 30px;
256
-
257
- .ant-input-number-input {
258
- .input-base();
259
- height: 30px;
260
- line-height: 30px;
261
- }
262
- }
263
-
264
- // 单选框组样式
265
- .ant-radio-group {
266
- .option-group-base();
267
- }
268
-
269
- // 复选框组样式
270
- .ant-checkbox-group {
271
- .option-group-base();
272
- }
273
- }
274
- }
275
- }
276
-
277
- // 重置可能的容器边距
278
- :deep(.ant-row) {
279
- margin: 0;
280
- padding: 0;
281
-
282
- .ant-col {
283
- margin: 0;
284
- padding: 0;
285
- }
286
- }
287
-
288
- // 强制重置所有可能的表单项样式
289
- :deep(.ant-form-item) {
290
- margin: 0 0 16px 0 !important;
291
-
292
- // 重置可能的内部边距
293
- .ant-form-item-control-input,
294
- .ant-form-item-control-input-content {
295
- margin: 0 !important;
296
- padding: 0 !important;
297
- }
298
- }
299
- }
300
-
301
- // label-text-horizontal 样式 - 只控制label文字从左到右排列
302
- &.h-form-label-text-horizontal {
303
- :deep(.ant-form-item-label) {
304
- text-align: left;
305
- direction: ltr;
306
-
307
- // 标签文字水平排列
308
- .ant-form-item-label-text {
309
- display: inline-block;
310
- text-align: left;
311
- direction: ltr;
312
- unicode-bidi: normal;
313
- }
314
-
315
- // 必填标识水平排列
316
- .ant-form-item-required::before {
317
- margin-right: 4px;
318
- margin-left: 0;
319
- }
320
- }
321
- }
322
-
323
- // label-text-justify 样式 - 标签文字两端对齐分散占满 必填*可能会有问题
324
- &.h-form-label-text-justify {
325
- :deep(.ant-form-item-label) {
326
- padding-left: 0;
327
- padding-right: 8px;
328
- label {
329
- position: relative;
330
- display: block;
331
- width: 100%;
332
- white-space: nowrap;
333
- margin: 0;
334
- text-indent: 0;
335
- text-align: justify;
336
- text-align-last: justify;
337
- text-justify: inter-ideograph;
338
- box-sizing: border-box;
339
- padding-right: 12px; // 给绝对定位的冒号留出空间
340
- }
341
- // 将冒号绝对定位到最右侧,避免参与两端对齐计算
342
- label::after {
343
- position: absolute;
344
- right: 0;
345
- }
346
- }
347
- }
348
-
349
- // label-justify 样式 - 两端对齐,应用指定字体样式
350
- &.h-form-label-justify {
351
- padding-left: 8px;
352
-
353
- :deep(.ant-form-item-label) {
354
- padding-left: 0;
355
- padding-right: 8px;
356
- // 限制label容器的宽度,强制两端对齐
357
- width: 80px !important;
358
- min-width: 80px;
359
- max-width: 80px;
360
- label {
361
- position: relative;
362
- display: block;
363
- width: 100%;
364
- white-space: nowrap;
365
- margin: 0;
366
- text-indent: 0;
367
- text-align: justify;
368
- text-align-last: justify;
369
- text-justify: inter-ideograph;
370
- box-sizing: border-box;
371
- padding-right: 12px; // 给绝对定位的冒号留出空间
372
-
373
- // 应用指定的字体样式
374
- height: 39px;
375
- opacity: 1;
376
- font-family: 'Source Han Sans', sans-serif;
377
- font-size: 16px;
378
- font-weight: normal;
379
- line-height: 39px;
380
- color: #313131;
381
- }
382
- // 去掉冒号
383
- label::after {
384
- content: '';
385
- }
386
- }
387
- }
388
- }
389
- </style>
1
+ <script setup lang="ts">
2
+ import XAddNativeForm from '@vue2-client/base-client/components/common/XAddNativeForm/XAddNativeForm.vue'
3
+ import { ref, computed, useAttrs } from 'vue'
4
+
5
+ const xAddNativeFormRef = ref()
6
+
7
+ const attrs = useAttrs()
8
+ const props = defineProps({
9
+ // 是否启用 horizontal 模式的自定义配置
10
+ enableHorizontalCustom: {
11
+ type: Boolean,
12
+ default: false
13
+ }
14
+ })
15
+ // 启动时间选择框弹出到body
16
+ const enablePopupToBody = computed(() => {
17
+ const a = attrs
18
+ return a.enablePopupToBody === 'true' || a.enablePopupToBody === true
19
+ })
20
+ const wrapperClassObject = computed(() => {
21
+ const a = attrs
22
+ const classes = {}
23
+
24
+ // 1) 多个布尔型样式开关(存在且为真则生效)
25
+ const booleanStyleKeys = [
26
+ 'query-conditions',
27
+ 'padding-50',
28
+ 'label-text-horizontal',
29
+ 'label-text-justify',
30
+ 'label-justify',
31
+ 'charge-form'
32
+ ]
33
+ for (const key of booleanStyleKeys) {
34
+ const val = a[key]
35
+ const truthy = val === true || val === '' || val === 'true'
36
+ if (truthy) classes[`h-form-${key}`] = true
37
+ }
38
+
39
+ return classes
40
+ })
41
+
42
+ defineExpose({
43
+ getXAddNativeFormInstance: () => xAddNativeFormRef.value,
44
+ init: (params) => xAddNativeFormRef.value && xAddNativeFormRef.value.init && xAddNativeFormRef.value.init(params),
45
+ asyncSubmit: () => xAddNativeFormRef.value && xAddNativeFormRef.value.asyncSubmit && xAddNativeFormRef.value.asyncSubmit(),
46
+ validateForm: () => xAddNativeFormRef.value && xAddNativeFormRef.value.validateForm && xAddNativeFormRef.value.validateForm()
47
+ })
48
+
49
+ </script>
50
+
51
+ <template>
52
+ <div
53
+ class="h-form-wrapper"
54
+ :class="[
55
+ wrapperClassObject
56
+ ]"
57
+ >
58
+
59
+ <x-add-native-form
60
+ ref="xAddNativeFormRef"
61
+ v-bind="$attrs"
62
+ :enable-popup-to-body="enablePopupToBody"
63
+ :enable-horizontal-custom="props.enableHorizontalCustom"
64
+ v-on="$listeners"
65
+ >
66
+ <template v-for="(_, name) in $slots" #[name]="slotData">
67
+ <slot :name="name" v-bind="slotData" />
68
+ </template>
69
+ </x-add-native-form>
70
+ </div>
71
+ </template>
72
+
73
+ <style scoped lang="less">
74
+ .h-form-wrapper {
75
+ // 基础样式
76
+ :deep(.ant-form-item) {
77
+ margin-bottom: 4px;
78
+ }
79
+
80
+ // query-conditions 样式
81
+ &.h-form-query-conditions {
82
+ // ant-card-body 样式
83
+ :deep(.ant-card-body) {
84
+ padding: 0px;
85
+ }
86
+ // ant-row-flex 样式
87
+ :deep(.ant-row-flex) {
88
+ // x-form-col-wrapper 样式
89
+ .x-form-col-wrapper {
90
+ .ant-form-item {
91
+ display: flex;
92
+ width: 100%;
93
+ margin-bottom: 4px;
94
+ justify-content: space-between;
95
+
96
+ .ant-form-item-label {
97
+ padding-left: 4px;
98
+ width: 100%;
99
+ }
100
+
101
+ .ant-form-item-control-wrapper {
102
+ padding-left: -6px;
103
+ }
104
+ }
105
+ }
106
+ // ant-col-24 样式
107
+ .ant-col-24 {
108
+ padding: 0px 4px !important;
109
+ }
110
+ }
111
+ }
112
+
113
+ &.h-form-padding-50 {
114
+ // ant-row-flex 样式
115
+ :deep(.ant-row-flex) {
116
+ padding-left: 50px;
117
+ padding-right: 50px
118
+ }
119
+ }
120
+
121
+ // charge-form 样式
122
+ &.h-form-charge-form {
123
+ margin-top: 2px !important;
124
+ // 定义变量
125
+ @font-common: {
126
+ font-family: 'Source Han Sans', sans-serif;
127
+ font-size: 16px;
128
+ font-weight: normal;
129
+ letter-spacing: 0em;
130
+ font-feature-settings: "kern" on;
131
+ };
132
+
133
+ @color-primary: #313131;
134
+ @color-placeholder: #999999;
135
+
136
+ // 定义混合宏
137
+ .input-base() {
138
+ width: 100%;
139
+ height: 30px;
140
+ line-height: 30px;
141
+ vertical-align: top;
142
+ margin: 0;
143
+ text-align: left;
144
+ color: @color-primary;
145
+ opacity: 1;
146
+ @font-common();
147
+ }
148
+
149
+ .placeholder-base() {
150
+ color: @color-placeholder;
151
+ opacity: 1;
152
+ @font-common();
153
+ }
154
+
155
+ .option-group-base() {
156
+ height: 30px;
157
+ line-height: 30px;
158
+ display: flex;
159
+ align-items: center;
160
+
161
+ .ant-radio-wrapper,
162
+ .ant-checkbox-wrapper {
163
+ height: 30px;
164
+ line-height: 30px;
165
+ margin-right: 16px;
166
+ }
167
+ }
168
+
169
+ :deep(.ant-form-item) {
170
+ margin-bottom: 16px;
171
+ margin-top: 0;
172
+ padding: 0;
173
+ display: flex;
174
+ align-items: center;
175
+
176
+ .ant-form-item-label {
177
+ text-align: left;
178
+ margin: 0 16px 0 0 !important;
179
+ width: 64px;
180
+ min-width: 64px;
181
+ max-width: 64px;
182
+ flex-shrink: 0;
183
+
184
+ label {
185
+ height: 23px;
186
+ opacity: 1;
187
+ line-height: 23px;
188
+ color: @color-primary;
189
+ margin: 0;
190
+ padding: 0;
191
+ white-space: nowrap;
192
+ display: block;
193
+ @font-common();
194
+
195
+ // 移除冒号
196
+ &::after {
197
+ content: '';
198
+ }
199
+ }
200
+ }
201
+
202
+ .ant-form-item-control-wrapper {
203
+ margin: 0;
204
+ padding: 0;
205
+ flex: 1;
206
+ min-width: 0;
207
+ display: flex;
208
+ align-items: center;
209
+
210
+ .ant-form-item-control {
211
+ margin: 0;
212
+ padding: 0;
213
+ width: 100%;
214
+ text-align: left;
215
+ line-height: 30px !important;
216
+
217
+ // 输入框样式统一
218
+ .ant-input,
219
+ .ant-input-affix-wrapper,
220
+ .ant-select,
221
+ .ant-input-number,
222
+ .ant-picker,
223
+ .ant-radio-group,
224
+ .ant-checkbox-group {
225
+ .input-base();
226
+ }
227
+
228
+ // 选择器样式
229
+ .ant-select {
230
+ .ant-select-selector {
231
+ .input-base();
232
+ height: 30px;
233
+ line-height: 30px;
234
+
235
+ .ant-select-selection-item {
236
+ .input-base();
237
+ line-height: 30px;
238
+ }
239
+
240
+ .ant-select-selection-placeholder {
241
+ .placeholder-base();
242
+ line-height: 30px;
243
+ color: #313131;
244
+ }
245
+ }
246
+ }
247
+
248
+ // 日期选择器样式
249
+ .ant-picker {
250
+ height: 30px;
251
+
252
+ .ant-picker-input {
253
+ height: 30px;
254
+ line-height: 30px;
255
+ .input-base();
256
+
257
+ input {
258
+ .input-base();
259
+ height: 30px;
260
+ line-height: 30px;
261
+ }
262
+ }
263
+ }
264
+
265
+ // 数字输入框样式
266
+ .ant-input-number {
267
+ height: 30px;
268
+
269
+ .ant-input-number-input {
270
+ .input-base();
271
+ height: 30px;
272
+ line-height: 30px;
273
+ }
274
+ }
275
+
276
+ // 单选框组样式
277
+ .ant-radio-group {
278
+ .option-group-base();
279
+ }
280
+
281
+ // 复选框组样式
282
+ .ant-checkbox-group {
283
+ .option-group-base();
284
+ }
285
+ }
286
+ }
287
+ }
288
+
289
+ // 重置可能的容器边距
290
+ :deep(.ant-row) {
291
+ margin: 0;
292
+ padding: 0;
293
+
294
+ .ant-col {
295
+ margin: 0;
296
+ padding: 0;
297
+ }
298
+ }
299
+
300
+ // 强制重置所有可能的表单项样式
301
+ :deep(.ant-form-item) {
302
+ margin: 0 0 16px 0 !important;
303
+
304
+ // 重置可能的内部边距
305
+ .ant-form-item-control-input,
306
+ .ant-form-item-control-input-content {
307
+ margin: 0 !important;
308
+ padding: 0 !important;
309
+ }
310
+ }
311
+ }
312
+
313
+ // label-text-horizontal 样式 - 只控制label文字从左到右排列
314
+ &.h-form-label-text-horizontal {
315
+ :deep(.ant-form-item-label) {
316
+ text-align: left;
317
+ direction: ltr;
318
+
319
+ // 标签文字水平排列
320
+ .ant-form-item-label-text {
321
+ display: inline-block;
322
+ text-align: left;
323
+ direction: ltr;
324
+ unicode-bidi: normal;
325
+ }
326
+
327
+ // 必填标识水平排列
328
+ .ant-form-item-required::before {
329
+ margin-right: 4px;
330
+ margin-left: 0;
331
+ }
332
+ }
333
+ }
334
+
335
+ // label-text-justify 样式 - 标签文字两端对齐分散占满 必填*可能会有问题
336
+ &.h-form-label-text-justify {
337
+ :deep(.ant-form-item-label) {
338
+ padding-left: 0;
339
+ padding-right: 8px;
340
+ label {
341
+ position: relative;
342
+ display: block;
343
+ width: 100%;
344
+ white-space: nowrap;
345
+ margin: 0;
346
+ text-indent: 0;
347
+ text-align: justify;
348
+ text-align-last: justify;
349
+ text-justify: inter-ideograph;
350
+ box-sizing: border-box;
351
+ padding-right: 12px; // 给绝对定位的冒号留出空间
352
+ }
353
+ // 将冒号绝对定位到最右侧,避免参与两端对齐计算
354
+ label::after {
355
+ position: absolute;
356
+ right: 0;
357
+ }
358
+ }
359
+ }
360
+
361
+ // label-justify 样式 - 两端对齐,应用指定字体样式
362
+ &.h-form-label-justify {
363
+ padding-left: 8px;
364
+
365
+ :deep(.ant-form-item-label) {
366
+ padding-left: 0;
367
+ padding-right: 8px;
368
+ // 限制label容器的宽度,强制两端对齐
369
+ width: 80px !important;
370
+ min-width: 80px;
371
+ max-width: 80px;
372
+ label {
373
+ position: relative;
374
+ display: block;
375
+ width: 100%;
376
+ white-space: nowrap;
377
+ margin: 0;
378
+ text-indent: 0;
379
+ text-align: justify;
380
+ text-align-last: justify;
381
+ text-justify: inter-ideograph;
382
+ box-sizing: border-box;
383
+ padding-right: 12px; // 给绝对定位的冒号留出空间
384
+
385
+ // 应用指定的字体样式
386
+ height: 39px;
387
+ opacity: 1;
388
+ font-family: 'Source Han Sans', sans-serif;
389
+ font-size: 16px;
390
+ font-weight: normal;
391
+ line-height: 39px;
392
+ color: #313131;
393
+ }
394
+ // 去掉冒号
395
+ label::after {
396
+ content: '';
397
+ }
398
+ }
399
+ }
400
+ }
401
+ </style>