vue2-client 1.16.93 → 1.16.95
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 +491 -445
- package/src/base-client/components/common/HIS/HForm/HForm.vue +389 -361
- package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -3
- package/src/base-client/components/common/HIS/HFormTable/HFormTable.vue +8 -2
- package/src/base-client/components/common/HIS/HTab/HTab.vue +443 -443
- package/src/base-client/components/common/XCollapse/XCollapse.vue +833 -833
- package/src/base-client/components/common/XTable/XTableWrapper.vue +3 -2
- package/src/base-client/components/common/XTimeline/XTimeline.vue +477 -477
- package/src/base-client/components/his/XHisEditor/XHisEditor.vue +705 -705
- package/src/base-client/components/his/XList/XList.vue +938 -829
- package/src/base-client/components/his/XRadio/XRadio.vue +469 -469
- package/src/base-client/components/his/XSimpleTable/XSimpleTable.vue +159 -159
- package/src/base-client/components/his/XTimeSelect/XTimeSelect.vue +354 -383
- package/src/base-client/components/his/XTitle/XTitle.vue +288 -274
- 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/WorkflowDetail/WorkFlowDemo3.vue +203 -203
- package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -45
- package/src-base-client/components/common/HIS/HForm/HForm.vue +347 -0
- 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
|
|
@@ -22,7 +22,8 @@ const wrapperClassObject = computed(() => {
|
|
|
22
22
|
'top-hidden',
|
|
23
23
|
'dialog-style',
|
|
24
24
|
'button-style',
|
|
25
|
-
'header-center'
|
|
25
|
+
'header-center',
|
|
26
|
+
'expanded-grid-white'
|
|
26
27
|
]
|
|
27
28
|
for (const key of booleanStyleKeys) {
|
|
28
29
|
const val = a[key]
|
|
@@ -396,7 +397,6 @@ const isHiddenFunctionalArea = computed(() => {
|
|
|
396
397
|
line-height: normal;
|
|
397
398
|
}
|
|
398
399
|
}
|
|
399
|
-
|
|
400
400
|
// 表格内容全部居中样式
|
|
401
401
|
&.h-form-table-header-center {
|
|
402
402
|
:deep(.ant-table-thead > tr > th),
|
|
@@ -404,5 +404,11 @@ const isHiddenFunctionalArea = computed(() => {
|
|
|
404
404
|
text-align: center !important;
|
|
405
405
|
}
|
|
406
406
|
}
|
|
407
|
+
// 行展开白色背景
|
|
408
|
+
&.h-form-table-expanded-grid-white {
|
|
409
|
+
:deep(.ant-table-expanded-row){
|
|
410
|
+
background-color: white;
|
|
411
|
+
}
|
|
412
|
+
}
|
|
407
413
|
}
|
|
408
414
|
</style>
|