vue2-client 1.16.84 → 1.16.85
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/package.json +112 -112
- package/src/assets/svg/female.svg +1 -1
- package/src/assets/svg/male.svg +1 -1
- package/src/base-client/components/common/HIS/HButtons/HButtons.vue +381 -381
- package/src/base-client/components/common/HIS/HForm/HForm.vue +492 -348
- package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -3
- package/src/base-client/components/common/HIS/HFormTable/HFormTable.vue +10 -1
- package/src/base-client/components/common/HIS/HTab/HTab.vue +26 -1
- package/src/base-client/components/common/XCollapse/XCollapse.vue +833 -833
- package/src/base-client/components/common/XInput/XInput.vue +194 -194
- package/src/base-client/components/common/XTable/XTable.vue +1610 -1610
- package/src/base-client/components/common/XTimeline/XTimeline.vue +478 -462
- package/src/base-client/components/common/XTree/XTreePro.vue +4 -4
- package/src/base-client/components/his/XCheckbox/XCheckbox.vue +181 -181
- package/src/base-client/components/his/XHisEditor/XHisEditor.vue +705 -705
- package/src/base-client/components/his/XList/XList.vue +829 -829
- package/src/base-client/components/his/XRadio/XRadio.vue +389 -389
- package/src/base-client/components/his/XSimpleTable/XSimpleTable.vue +159 -159
- package/src/base-client/components/his/XTimeSelect/XTimeSelect.vue +306 -306
- package/src/base-client/components/his/XTitle/XTitle.vue +274 -269
- package/src/base-client/components/his/XTreeRows/XTreeRows.vue +341 -341
- package/src/base-client/components/his/threeTestOrders/editor.vue +113 -113
- package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -45
- package/src-base-client/components/common/HIS/HForm/HForm.vue +0 -348
- package/src-base-client/components/common/XCollapse/XCollapse.vue +0 -0
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import HFormGroup from './HFormGroup.vue'
|
|
2
|
-
|
|
3
|
-
export default HFormGroup
|
|
1
|
+
import HFormGroup from './HFormGroup.vue'
|
|
2
|
+
|
|
3
|
+
export default HFormGroup
|
|
@@ -21,7 +21,8 @@ const wrapperClassObject = computed(() => {
|
|
|
21
21
|
'button-row-0margin',
|
|
22
22
|
'top-hidden',
|
|
23
23
|
'dialog-style',
|
|
24
|
-
'button-style'
|
|
24
|
+
'button-style',
|
|
25
|
+
'header-center'
|
|
25
26
|
]
|
|
26
27
|
for (const key of booleanStyleKeys) {
|
|
27
28
|
const val = a[key]
|
|
@@ -390,5 +391,13 @@ const isCustomPagination = computed(() => {
|
|
|
390
391
|
line-height: normal;
|
|
391
392
|
}
|
|
392
393
|
}
|
|
394
|
+
|
|
395
|
+
// 表格内容全部居中样式
|
|
396
|
+
&.h-form-table-header-center {
|
|
397
|
+
:deep(.ant-table-thead > tr > th),
|
|
398
|
+
:deep(.ant-table-tbody > tr > td) {
|
|
399
|
+
text-align: center !important;
|
|
400
|
+
}
|
|
401
|
+
}
|
|
393
402
|
}
|
|
394
403
|
</style>
|
|
@@ -24,7 +24,7 @@ const wrapperClassObject = computed(() => {
|
|
|
24
24
|
|
|
25
25
|
// 通用布尔样式开关(以存在/空字符串/'true' 为真)
|
|
26
26
|
const booleanStyleKeys = [
|
|
27
|
-
'hasTopMargin', 'useStyle7', 'useCycle', 'useStyle8'
|
|
27
|
+
'hasTopMargin', 'useStyle7', 'useCycle', 'useStyle8', 'out-tab'
|
|
28
28
|
]
|
|
29
29
|
for (const key of booleanStyleKeys) {
|
|
30
30
|
const val = a[key]
|
|
@@ -414,5 +414,30 @@ defineExpose({
|
|
|
414
414
|
line-height: 0px !important;
|
|
415
415
|
}
|
|
416
416
|
}
|
|
417
|
+
|
|
418
|
+
&.h-tab-out-tab {
|
|
419
|
+
:deep(.ant-tabs-nav-wrap) {
|
|
420
|
+
margin-top: 0px !important;
|
|
421
|
+
margin-bottom: 0px !important;
|
|
422
|
+
}
|
|
423
|
+
:deep(.ant-tabs-nav) {
|
|
424
|
+
margin-bottom: 0px !important;
|
|
425
|
+
}
|
|
426
|
+
:deep(.ant-tabs-nav-container) {
|
|
427
|
+
padding-top: 0px !important;
|
|
428
|
+
padding-bottom: 0px !important;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
:deep(.ant-tabs-bar) {
|
|
432
|
+
margin-top: 0px !important;
|
|
433
|
+
margin-bottom: 0px !important;
|
|
434
|
+
height: auto !important;
|
|
435
|
+
min-height: 0px !important;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
:deep(.ant-tabs-content) {
|
|
439
|
+
margin-top: 0px !important;
|
|
440
|
+
}
|
|
441
|
+
}
|
|
417
442
|
}
|
|
418
443
|
</style>
|