vue2-client 1.18.8 → 1.18.9

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 (24) hide show
  1. package/package.json +1 -1
  2. package/src/assets/svg/female.svg +1 -1
  3. package/src/assets/svg/male.svg +1 -1
  4. package/src/base-client/components/common/HIS/HButtons/HButtons.vue +491 -491
  5. package/src/base-client/components/common/HIS/HForm/HForm.vue +32 -10
  6. package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -3
  7. package/src/base-client/components/common/HIS/HTab/HTab.vue +443 -443
  8. package/src/base-client/components/common/XCollapse/XCollapse.vue +830 -830
  9. package/src/base-client/components/common/XFormTable/XFormTable.vue +4 -2
  10. package/src/base-client/components/common/XFormTable/demo.vue +2 -2
  11. package/src/base-client/components/common/XInput/XInput.vue +12 -6
  12. package/src/base-client/components/common/XTable/CustomFuncCel.vue +1 -6
  13. package/src/base-client/components/common/XTimeline/XTimeline.vue +477 -477
  14. package/src/base-client/components/his/HChart/HChart.vue +7 -11
  15. package/src/base-client/components/his/XHDescriptions/XHDescriptions.vue +44 -78
  16. package/src/base-client/components/his/XHisEditor/XHisEditor.vue +705 -705
  17. package/src/base-client/components/his/XList/XList.vue +938 -938
  18. package/src/base-client/components/his/XTimeSelect/XTimeSelect.vue +354 -354
  19. package/src/base-client/components/his/XTitle/XTitle.vue +314 -314
  20. package/src/base-client/components/his/XTreeRows/XTreeRows.vue +341 -341
  21. package/src/base-client/components/his/threeTestOrders/editor.vue +113 -113
  22. package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -45
  23. package/src-base-client/components/common/HIS/HForm/HForm.vue +347 -0
  24. package/src-base-client/components/common/XCollapse/XCollapse.vue +0 -0
@@ -79,31 +79,53 @@ defineExpose({
79
79
 
80
80
  // query-conditions 样式
81
81
  &.h-form-query-conditions {
82
- // ant-card-body 样式
83
82
  :deep(.ant-card-body) {
84
83
  padding: 0px;
85
84
  }
86
- // ant-row-flex 样式
85
+
87
86
  :deep(.ant-row-flex) {
88
- // x-form-col-wrapper 样式
89
87
  .x-form-col-wrapper {
90
88
  .ant-form-item {
91
89
  display: flex;
92
90
  width: 100%;
93
- margin-bottom: 4px;
91
+ height: 100%;
92
+ margin-bottom: 0px;
94
93
  justify-content: space-between;
95
94
 
96
95
  .ant-form-item-label {
97
- padding-left: 4px;
98
96
  width: 100%;
99
- }
97
+ display: flex;
98
+ align-items: center;
99
+ height: 100%;
100
+
101
+ label {
102
+ height: auto;
103
+ font-family: Source Han Sans;
104
+ font-size: 16px;
105
+ font-weight: normal;
106
+ line-height: normal;
107
+ color: #313131;
108
+ display: block !important; // 保持 block 以支持两端对齐
109
+ width: 100%;
110
+ white-space: nowrap;
111
+ margin: 0;
112
+ text-align: justify;
113
+ text-align-last: justify;
114
+ text-justify: inter-ideograph;
115
+ box-sizing: border-box;
116
+ padding-right: 0 !important; // 移除冒号预留空间
117
+
118
+ // 使用 line-height 实现垂直居中
119
+ line-height: 40px; // 设置与容器高度相同的行高
120
+ }
100
121
 
101
- .ant-form-item-control-wrapper {
102
- padding-left: -6px;
122
+ & > label::after {
123
+ display: none !important;
124
+ }
103
125
  }
104
126
  }
105
127
  }
106
- // ant-col-24 样式
128
+
107
129
  .ant-col-24 {
108
130
  padding: 0px 4px !important;
109
131
  }
@@ -175,7 +197,7 @@ defineExpose({
175
197
 
176
198
  .ant-form-item-label {
177
199
  text-align: left;
178
- margin: 0 16px 0 0 !important;
200
+ margin: 0 11px 0 0 !important;
179
201
  width: 64px;
180
202
  min-width: 64px;
181
203
  max-width: 64px;
@@ -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