vue2-client 1.16.59 → 1.16.61
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 +6 -17
- package/src/base-client/components/common/HIS/HFormGroup/HFormGroup.vue +22 -4
- package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -3
- package/src/base-client/components/common/HIS/HFormTable/HFormTable.vue +379 -379
- package/src/base-client/components/common/HIS/HTab/HTab.vue +9 -15
- package/src/base-client/components/common/HIS/demo.vue +61 -61
- package/src/base-client/components/common/XCollapse/XCollapse.vue +708 -461
- package/src/base-client/components/common/XFormGroup/XFormGroup.vue +11 -2
- package/src/base-client/components/common/XFormTable/demo.vue +46 -4
- package/src/base-client/components/common/XInput/XInput.vue +147 -147
- package/src/base-client/components/common/XReport/print.js +186 -186
- package/src/base-client/components/common/XTable/XTable.vue +1610 -1610
- package/src/base-client/components/common/XTimeline/XTimeline.vue +454 -454
- package/src/base-client/components/his/XHDescriptions/XHDescriptions.vue +95 -1
- 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/XSidebar/XSidebar.vue +22 -31
- package/src/base-client/components/his/threeTestOrders/editor.vue +113 -113
- package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -45
- package/src/router/async/router.map.js +129 -129
- package/src/utils/map-utils.js +47 -47
- package/src-base-client/components/common/XCollapse/XCollapse.vue +0 -0
- package/vue.config.js +0 -10
|
@@ -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'
|
|
28
28
|
]
|
|
29
29
|
for (const key of booleanStyleKeys) {
|
|
30
30
|
const val = a[key]
|
|
@@ -175,7 +175,7 @@ defineExpose({
|
|
|
175
175
|
|
|
176
176
|
:deep(.ant-tabs-bar) {
|
|
177
177
|
border-bottom: 2px solid #0057FE;
|
|
178
|
-
margin: 20px
|
|
178
|
+
margin: 20px 0px 0 0px;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
// 滚动状态下的容器左右内边距清零,避免左侧多出一截
|
|
@@ -229,7 +229,7 @@ defineExpose({
|
|
|
229
229
|
:deep(.ant-tabs-ink-bar) {
|
|
230
230
|
display: block;
|
|
231
231
|
background-color: #0057FE;
|
|
232
|
-
bottom:
|
|
232
|
+
bottom: 1px;
|
|
233
233
|
height: 2px;
|
|
234
234
|
/* 宽度交给 antd 自身计算,避免固定值影响自适应 */
|
|
235
235
|
margin-left: 0;
|
|
@@ -247,7 +247,7 @@ defineExpose({
|
|
|
247
247
|
/* 自适应宽度,允许通过变量覆盖最小宽度 */
|
|
248
248
|
min-width: var(--tab-min-width, 96px);
|
|
249
249
|
width: auto;
|
|
250
|
-
padding: 0 12px;
|
|
250
|
+
padding: 0 12px 10px 12px;
|
|
251
251
|
font-size: 16px;
|
|
252
252
|
line-height: 10px;
|
|
253
253
|
font-family: "Source Han Sans";
|
|
@@ -277,15 +277,16 @@ defineExpose({
|
|
|
277
277
|
align-items: center !important; // 确保内容垂直居中
|
|
278
278
|
line-height: normal !important; // 重置line-height避免冲突
|
|
279
279
|
vertical-align: top !important; // 确保垂直对齐
|
|
280
|
+
justify-content: flex-start !important; // 确保内容左对齐
|
|
280
281
|
}
|
|
281
282
|
:deep(.ant-tabs-tab::before) {
|
|
282
283
|
content: "" !important;
|
|
283
284
|
position: absolute !important;
|
|
284
|
-
left:
|
|
285
|
-
top: 50% !important;
|
|
285
|
+
left: 3px !important;
|
|
286
|
+
top: calc(50% - 4px) !important;
|
|
286
287
|
transform: translateY(-50%) !important;
|
|
287
|
-
width:
|
|
288
|
-
height:
|
|
288
|
+
width: 12px !important;
|
|
289
|
+
height: 12px !important;
|
|
289
290
|
background: #0057FE !important;
|
|
290
291
|
border-radius: 50% !important;
|
|
291
292
|
display: block !important;
|
|
@@ -405,12 +406,5 @@ defineExpose({
|
|
|
405
406
|
line-height: 0px !important;
|
|
406
407
|
}
|
|
407
408
|
}
|
|
408
|
-
// 侧边栏tab页签移除左侧空白区域
|
|
409
|
-
&.t-tab-ant-tabs-bar-left0 {
|
|
410
|
-
:deep(.ant-tabs-bar) {
|
|
411
|
-
border-bottom: 2px solid #0057FE;
|
|
412
|
-
margin: 20px 0px 0 0px;
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
409
|
}
|
|
416
410
|
</style>
|
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="h-tab-demo">
|
|
3
|
-
<!-- <!– XTab –>-->
|
|
4
|
-
<!-- <a-card title="XTab">-->
|
|
5
|
-
<!-- <h-tab-->
|
|
6
|
-
<!-- configName="openPrescriptionTab"-->
|
|
7
|
-
<!-- serverName="af-his"-->
|
|
8
|
-
<!-- />-->
|
|
9
|
-
<!-- </a-card>-->
|
|
10
|
-
|
|
11
|
-
<!-- HFormTable -->
|
|
12
|
-
<a-card title="HFormTable" style="margin-top: 20px;">
|
|
13
|
-
<h-form-table
|
|
14
|
-
queryParamsName="outpatientAdviceAllCRUD"
|
|
15
|
-
serviceName="af-his"
|
|
16
|
-
/>
|
|
17
|
-
</a-card>
|
|
18
|
-
|
|
19
|
-
<!-- HForm -->
|
|
20
|
-
<a-card title="HAddNativeForm" style="margin-top: 20px;">
|
|
21
|
-
<h-add-native-form
|
|
22
|
-
queryParamsName="TCMAdviceFormConfig"
|
|
23
|
-
serviceName="af-his"
|
|
24
|
-
/>
|
|
25
|
-
</a-card>
|
|
26
|
-
<!-- <a-card title="HFormGroup" style="margin-top: 20px;">-->
|
|
27
|
-
<!-- <h-form-group-->
|
|
28
|
-
<!-- queryParamsName="surgeryApplicationFormGroup"-->
|
|
29
|
-
<!-- serviceName="af-his"-->
|
|
30
|
-
<!-- :left-hide="true"-->
|
|
31
|
-
<!-- />-->
|
|
32
|
-
<!-- </a-card>-->
|
|
33
|
-
<!-- <!– HButtons –>-->
|
|
34
|
-
<!-- <a-card title="HButtons" style="margin-top: 20px;">-->
|
|
35
|
-
<!-- <h-buttons-->
|
|
36
|
-
<!-- queryParamsName="outpatientAdviceGroup"-->
|
|
37
|
-
<!-- serviceName="af-his"-->
|
|
38
|
-
<!-- />-->
|
|
39
|
-
<!-- </a-card>-->
|
|
40
|
-
</div>
|
|
41
|
-
</template>
|
|
42
|
-
|
|
43
|
-
<script setup>
|
|
44
|
-
// import HTab from './HTab/HTab.vue'
|
|
45
|
-
import HFormTable from './HFormTable/HFormTable.vue'
|
|
46
|
-
// import HButtons from './HButtons/HButtons.vue'
|
|
47
|
-
import HAddNativeForm from '@vue2-client/base-client/components/common/HIS/HAddNativeForm/HAddNativeForm.vue'
|
|
48
|
-
// import HFormGroup from './HFormGroup/HFormGroup.vue'
|
|
49
|
-
</script>
|
|
50
|
-
|
|
51
|
-
<style scoped lang="less">
|
|
52
|
-
.h-tab-demo {
|
|
53
|
-
padding: 20px;
|
|
54
|
-
|
|
55
|
-
h4 {
|
|
56
|
-
color: #333;
|
|
57
|
-
margin-bottom: 10px;
|
|
58
|
-
font-size: 14px;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="h-tab-demo">
|
|
3
|
+
<!-- <!– XTab –>-->
|
|
4
|
+
<!-- <a-card title="XTab">-->
|
|
5
|
+
<!-- <h-tab-->
|
|
6
|
+
<!-- configName="openPrescriptionTab"-->
|
|
7
|
+
<!-- serverName="af-his"-->
|
|
8
|
+
<!-- />-->
|
|
9
|
+
<!-- </a-card>-->
|
|
10
|
+
|
|
11
|
+
<!-- HFormTable -->
|
|
12
|
+
<a-card title="HFormTable" style="margin-top: 20px;">
|
|
13
|
+
<h-form-table
|
|
14
|
+
queryParamsName="outpatientAdviceAllCRUD"
|
|
15
|
+
serviceName="af-his"
|
|
16
|
+
/>
|
|
17
|
+
</a-card>
|
|
18
|
+
|
|
19
|
+
<!-- HForm -->
|
|
20
|
+
<a-card title="HAddNativeForm" style="margin-top: 20px;">
|
|
21
|
+
<h-add-native-form
|
|
22
|
+
queryParamsName="TCMAdviceFormConfig"
|
|
23
|
+
serviceName="af-his"
|
|
24
|
+
/>
|
|
25
|
+
</a-card>
|
|
26
|
+
<!-- <a-card title="HFormGroup" style="margin-top: 20px;">-->
|
|
27
|
+
<!-- <h-form-group-->
|
|
28
|
+
<!-- queryParamsName="surgeryApplicationFormGroup"-->
|
|
29
|
+
<!-- serviceName="af-his"-->
|
|
30
|
+
<!-- :left-hide="true"-->
|
|
31
|
+
<!-- />-->
|
|
32
|
+
<!-- </a-card>-->
|
|
33
|
+
<!-- <!– HButtons –>-->
|
|
34
|
+
<!-- <a-card title="HButtons" style="margin-top: 20px;">-->
|
|
35
|
+
<!-- <h-buttons-->
|
|
36
|
+
<!-- queryParamsName="outpatientAdviceGroup"-->
|
|
37
|
+
<!-- serviceName="af-his"-->
|
|
38
|
+
<!-- />-->
|
|
39
|
+
<!-- </a-card>-->
|
|
40
|
+
</div>
|
|
41
|
+
</template>
|
|
42
|
+
|
|
43
|
+
<script setup>
|
|
44
|
+
// import HTab from './HTab/HTab.vue'
|
|
45
|
+
import HFormTable from './HFormTable/HFormTable.vue'
|
|
46
|
+
// import HButtons from './HButtons/HButtons.vue'
|
|
47
|
+
import HAddNativeForm from '@vue2-client/base-client/components/common/HIS/HAddNativeForm/HAddNativeForm.vue'
|
|
48
|
+
// import HFormGroup from './HFormGroup/HFormGroup.vue'
|
|
49
|
+
</script>
|
|
50
|
+
|
|
51
|
+
<style scoped lang="less">
|
|
52
|
+
.h-tab-demo {
|
|
53
|
+
padding: 20px;
|
|
54
|
+
|
|
55
|
+
h4 {
|
|
56
|
+
color: #333;
|
|
57
|
+
margin-bottom: 10px;
|
|
58
|
+
font-size: 14px;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
</style>
|