vue2-client 1.16.82 → 1.16.84

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 (34) hide show
  1. package/package.json +112 -112
  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 +381 -369
  5. package/src/base-client/components/common/HIS/HForm/HForm.vue +348 -177
  6. package/src/base-client/components/common/HIS/HFormGroup/index.js +3 -3
  7. package/src/base-client/components/common/XCollapse/XCollapse.vue +833 -833
  8. package/src/base-client/components/common/XFormGroupDetails/XFormGroupDetails.vue +1 -1
  9. package/src/base-client/components/common/XInput/XInput.vue +194 -194
  10. package/src/base-client/components/common/XTable/XTable.vue +1610 -1610
  11. package/src/base-client/components/common/XTimeline/XTimeline.vue +462 -454
  12. package/src/base-client/components/his/XCheckbox/XCheckbox.vue +181 -134
  13. package/src/base-client/components/his/XHisEditor/XHisEditor.vue +705 -705
  14. package/src/base-client/components/his/XIcon/XIcon.vue +73 -73
  15. package/src/base-client/components/his/XIcon/index.js +3 -3
  16. package/src/base-client/components/his/XIcon/index.md +177 -177
  17. package/src/base-client/components/his/XList/XList.vue +829 -829
  18. package/src/base-client/components/his/XRadio/XRadio.vue +389 -322
  19. package/src/base-client/components/his/XSimpleTable/XSimpleTable.vue +159 -159
  20. package/src/base-client/components/his/XTimeSelect/XTimeSelect.vue +306 -269
  21. package/src/base-client/components/his/XTitle/XTitle.vue +269 -255
  22. package/src/base-client/components/his/XTreeRows/XTreeRows.vue +341 -341
  23. package/src/base-client/components/his/threeTestOrders/editor.vue +113 -113
  24. package/src/pages/userInfoDetailManage/ExceptionRecordQuery/index.vue +45 -45
  25. package/src-base-client/components/common/HIS/HForm/HForm.vue +348 -0
  26. package/src/assets/img/paymentMethod/icon1.png +0 -0
  27. package/src/assets/img/paymentMethod/icon2.png +0 -0
  28. package/src/assets/img/paymentMethod/icon3.png +0 -0
  29. package/src/assets/img/paymentMethod/icon4.png +0 -0
  30. package/src/assets/img/paymentMethod/icon5.png +0 -0
  31. package/src/assets/img/paymentMethod/icon6.png +0 -0
  32. package/src/base-client/components/common/XReport/XReportHospitalizationDemo.vue +0 -45
  33. package/src-base-client/components/his/XCharge/XCharge.vue +0 -0
  34. /package/src-base-client/components/{his/XCharge/README.md → common/XCollapse/XCollapse.vue} +0 -0
@@ -1,134 +1,181 @@
1
- <template>
2
- <div class="x-checkbox-container" :class="wrapperClassObject()">
3
- <a-checkbox-group v-model="innerValue" @change="onChange" class="x-checkbox-group">
4
- <div v-for="item in data" :key="item.value" class="x-checkbox-item-container">
5
- <a-checkbox :value="item.value" class="x-checkbox-item">
6
- {{ item.label }}
7
- </a-checkbox>
8
- </div>
9
- </a-checkbox-group>
10
- </div>
11
- </template>
12
-
13
- <script>
14
- import { getConfigByName } from '@vue2-client/services/api/common'
15
- import { Checkbox } from 'ant-design-vue'
16
-
17
- export default {
18
- name: 'XCheckbox',
19
- components: {
20
- ACheckboxGroup: Checkbox.Group,
21
- ACheckbox: Checkbox
22
- },
23
- props: {
24
- queryParamsName: {
25
- type: Object,
26
- default: null
27
- },
28
- value: {
29
- type: Array,
30
- default: () => []
31
- }
32
- },
33
- data () {
34
- return {
35
- data: [],
36
- innerValue: [],
37
- config: null
38
- }
39
- },
40
- created () {
41
- this.getData(this.queryParamsName)
42
- },
43
- watch: {
44
- value: {
45
- handler (val) {
46
- this.innerValue = val
47
- },
48
- deep: true
49
- }
50
- },
51
- emits: ['change', 'init'],
52
- methods: {
53
- async getData (data) {
54
- getConfigByName(data, 'af-his', res => {
55
- // 1. 加载选项
56
- if (res.checkbox && Array.isArray(res.checkbox)) {
57
- this.data = res.checkbox
58
- // 2. 初始化默认值(优先级: 配置defaultValue > 空数组)
59
- if (res.defaultValue !== undefined && Array.isArray(res.defaultValue)) {
60
- this.innerValue = res.defaultValue
61
- }
62
- // 3. 触发初始化事件
63
- this.$emit('init', {
64
- config: res,
65
- options: this.data,
66
- value: this.innerValue
67
- })
68
- } else {
69
- this.$message.error('配置错误,checkbox字段不是数组')
70
- }
71
- })
72
- },
73
- wrapperClassObject () {
74
- const attrs = this.$attrs || {}
75
- const classes = {}
76
- const booleanStyleKeys = [
77
- 'compact'
78
- ]
79
- booleanStyleKeys.forEach(key => {
80
- const val = attrs[key]
81
- const truthy = val === true || val === '' || val === 'true'
82
- if (truthy) classes[`x-checkbox-${key}`] = true
83
- })
84
- return classes
85
- },
86
- onChange (checkedValues) {
87
- this.innerValue = checkedValues
88
- this.$emit('change', checkedValues)
89
- }
90
- }
91
- }
92
- </script>
93
-
94
- <style scoped lang="less">
95
- .x-checkbox-container {
96
- display: flex;
97
- flex-direction: column;
98
- }
99
-
100
- .x-checkbox-group {
101
- display: flex;
102
- justify-content: space-around;
103
- }
104
-
105
- .x-checkbox-item-container {
106
- flex: 1;
107
- display: flex;
108
- flex-direction: column;
109
- align-items: center;
110
- text-align: center;
111
- padding: 0 8px;
112
- box-sizing: border-box;
113
- }
114
-
115
- .x-checkbox-item {
116
- margin-bottom: 8px;
117
- }
118
- .x-checkbox-compact {
119
- &.x-checkbox-container,
120
- .x-checkbox-container {
121
- :deep(.x-checkbox-item-container){
122
- padding: 0px !important;
123
- flex: auto !important;
124
- }
125
- :deep(.x-checkbox-item){
126
- margin: 0px;
127
- }
128
- :deep(.x-checkbox-item) > span:last-child {
129
- padding-right: 2px;
130
- padding-left: 2px;
131
- }
132
- }
133
- }
134
- </style>
1
+ <template>
2
+ <div class="x-checkbox-container" :class="wrapperClassObject()">
3
+ <a-checkbox-group v-model="innerValue" @change="onChange" class="x-checkbox-group">
4
+ <div v-for="item in data" :key="item.value" class="x-checkbox-item-container">
5
+ <a-checkbox :value="item.value" class="x-checkbox-item">
6
+ {{ item.label }}
7
+ </a-checkbox>
8
+ </div>
9
+ </a-checkbox-group>
10
+ </div>
11
+ </template>
12
+
13
+ <script>
14
+ import { getConfigByName } from '@vue2-client/services/api/common'
15
+ import { Checkbox } from 'ant-design-vue'
16
+
17
+ export default {
18
+ name: 'XCheckbox',
19
+ components: {
20
+ ACheckboxGroup: Checkbox.Group,
21
+ ACheckbox: Checkbox
22
+ },
23
+ props: {
24
+ queryParamsName: {
25
+ type: Object,
26
+ default: null
27
+ },
28
+ value: {
29
+ type: Array,
30
+ default: () => []
31
+ }
32
+ },
33
+ data () {
34
+ return {
35
+ data: [],
36
+ innerValue: [],
37
+ config: null
38
+ }
39
+ },
40
+ created () {
41
+ this.getData(this.queryParamsName)
42
+ },
43
+ watch: {
44
+ value: {
45
+ handler (val) {
46
+ this.innerValue = val
47
+ },
48
+ deep: true
49
+ }
50
+ },
51
+ emits: ['change', 'init'],
52
+ methods: {
53
+ async getData (data) {
54
+ getConfigByName(data, 'af-his', res => {
55
+ // 1. 加载选项
56
+ if (res.checkbox && Array.isArray(res.checkbox)) {
57
+ this.data = res.checkbox
58
+ // 2. 初始化默认值(优先级: 配置defaultValue > 空数组)
59
+ if (res.defaultValue !== undefined && Array.isArray(res.defaultValue)) {
60
+ this.innerValue = res.defaultValue
61
+ }
62
+ // 3. 触发初始化事件
63
+ this.$emit('init', {
64
+ config: res,
65
+ options: this.data,
66
+ value: this.innerValue
67
+ })
68
+ } else {
69
+ this.$message.error('配置错误,checkbox字段不是数组')
70
+ }
71
+ })
72
+ },
73
+ wrapperClassObject () {
74
+ const attrs = this.$attrs || {}
75
+ const classes = {}
76
+ const booleanStyleKeys = [
77
+ 'compact', 'out-checkbox'
78
+ ]
79
+ booleanStyleKeys.forEach(key => {
80
+ const val = attrs[key]
81
+ const truthy = val === true || val === '' || val === 'true'
82
+ if (truthy) classes[`x-checkbox-${key}`] = true
83
+ })
84
+ return classes
85
+ },
86
+ onChange (checkedValues) {
87
+ this.innerValue = checkedValues
88
+ this.$emit('change', checkedValues)
89
+ }
90
+ }
91
+ }
92
+ </script>
93
+
94
+ <style scoped lang="less">
95
+ .x-checkbox-container {
96
+ display: flex;
97
+ flex-direction: column;
98
+ }
99
+
100
+ .x-checkbox-group {
101
+ display: flex;
102
+ justify-content: space-around;
103
+ }
104
+
105
+ .x-checkbox-item-container {
106
+ flex: 1;
107
+ display: flex;
108
+ flex-direction: column;
109
+ align-items: center;
110
+ text-align: center;
111
+ padding: 0 8px;
112
+ box-sizing: border-box;
113
+ }
114
+
115
+ .x-checkbox-item {
116
+ margin-bottom: 8px;
117
+ }
118
+ .x-checkbox-compact {
119
+ &.x-checkbox-container,
120
+ .x-checkbox-container {
121
+ :deep(.x-checkbox-item-container){
122
+ padding: 0px !important;
123
+ flex: auto !important;
124
+ }
125
+ :deep(.x-checkbox-item){
126
+ margin: 0px;
127
+ }
128
+ :deep(.x-checkbox-item) > span:last-child {
129
+ padding-right: 2px;
130
+ padding-left: 2px;
131
+ }
132
+ }
133
+ }
134
+
135
+ /* out-checkbox:外排版紧凑风格,与表单风格配置保持一致的布尔开关用法 */
136
+ .x-checkbox-container.x-checkbox-out-checkbox {
137
+ margin-top: 9px;
138
+
139
+ :deep(.x-checkbox-group) {
140
+ justify-content: flex-start;
141
+ flex-wrap: wrap;
142
+ gap: 0 46px;
143
+ }
144
+
145
+ :deep(.x-checkbox-item-container) {
146
+ flex: 0 0 auto;
147
+ align-items: flex-start;
148
+ text-align: left;
149
+ padding: 0;
150
+ }
151
+
152
+ :deep(.x-checkbox-item) {
153
+ margin: 0;
154
+ display: flex;
155
+ align-items: center;
156
+
157
+ .ant-checkbox {
158
+ width: 20px;
159
+ height: 20px;
160
+ margin-right: 10px;
161
+
162
+ .ant-checkbox-inner {
163
+ width: 20px;
164
+ height: 20px;
165
+ }
166
+ }
167
+
168
+ /* 文字标签样式 */
169
+ span {
170
+ height: 23px;
171
+ opacity: 1;
172
+ font-family: 'Source Han Sans', sans-serif;
173
+ font-size: 16px;
174
+ font-weight: normal;
175
+ line-height: normal;
176
+ letter-spacing: 0em;
177
+ color: #313131;
178
+ }
179
+ }
180
+ }
181
+ </style>