vue2-client 1.16.48 → 1.16.49

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 (39) hide show
  1. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926145434.vue +641 -0
  2. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926145453.vue +641 -0
  3. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926145610.vue +647 -0
  4. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926145629.vue +647 -0
  5. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926145901.vue +645 -0
  6. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926145907.vue +651 -0
  7. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926145920.vue +651 -0
  8. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926150047.vue +651 -0
  9. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926151820.vue +646 -0
  10. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926151827.vue +646 -0
  11. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926152115.vue +646 -0
  12. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926152212.vue +653 -0
  13. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926152215.vue +653 -0
  14. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926152337.vue +657 -0
  15. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926152341.vue +657 -0
  16. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926152826.vue +657 -0
  17. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926152828.vue +646 -0
  18. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926153121.vue +654 -0
  19. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926153242.vue +654 -0
  20. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926153318.vue +646 -0
  21. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926153415.vue +646 -0
  22. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926153435.vue +655 -0
  23. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926153606.vue +655 -0
  24. package/.history/src/base-client/components/common/XDataCard/XDataCard_20250926153653.vue +655 -0
  25. package/package.json +1 -1
  26. package/src/base-client/components/common/XAddNativeForm/XAddNativeForm.vue +1178 -1178
  27. package/src/base-client/components/common/XDataCard/XDataCard.vue +44 -18
  28. package/src/base-client/components/common/XDataCard/test.vue +367 -0
  29. package/src/pages/WorkflowDetail/WorkFlowDemo3.vue +225 -203
  30. package/src/router/async/router.map.js +1 -4
  31. package/src/services/api/common.js +2 -0
  32. package/src/assets/img/paymentMethod/icon1.png +0 -0
  33. package/src/assets/img/paymentMethod/icon2.png +0 -0
  34. package/src/assets/img/paymentMethod/icon3.png +0 -0
  35. package/src/assets/img/paymentMethod/icon4.png +0 -0
  36. package/src/assets/img/paymentMethod/icon5.png +0 -0
  37. package/src/assets/img/paymentMethod/icon6.png +0 -0
  38. package/src/base-client/components/common/XReport/XReportHospitalizationDemo.vue +0 -45
  39. package/src/base-client/components/his/XCharge/testConfig.js +0 -149
@@ -1,149 +0,0 @@
1
- // 测试配置 - 用于演示混合支付功能
2
- export const testChargeConfig = {
3
- "amountFields": [
4
- {
5
- "field": 'f_amount',
6
- "disabled": false,
7
- "label": '费用总额'
8
- },
9
- {
10
- "field": 'f_insurance_amount',
11
- "disabled": true,
12
- "label": '医保支付'
13
- },
14
- {
15
- "field": 'f_self_amount',
16
- "disabled": true,
17
- "label": '自费金额'
18
- },
19
- {
20
- "field": 'out_of_pocket_amount',
21
- "disabled": true,
22
- "label": '自付金额'
23
- },
24
- {
25
- "field": 'biscount_amount',
26
- "disabled": true,
27
- "label": '折扣金额'
28
- },
29
- {
30
- "field": 'billing_amount',
31
- "disabled": true,
32
- "label": '记账金额'
33
- }
34
- ],
35
- "paymentMethods": [
36
- {
37
- "key": '医保卡',
38
- "label": '医保卡'
39
- },
40
- {
41
- "key": '微信/支付宝',
42
- "label": '微信/支付宝'
43
- },
44
- {
45
- "key": '银行卡',
46
- "label": '银行卡'
47
- },
48
- {
49
- "key": '现金',
50
- "label": '现金'
51
- }
52
- ],
53
- "bottomFields": [
54
- {
55
- "field": 'f_balance',
56
- "label": '账户余额',
57
- "disabled": false
58
- },
59
- {
60
- "field": 'received',
61
- "label": '实收',
62
- "disabled": false
63
- },
64
- {
65
- "field": 'change',
66
- "label": '找零',
67
- "disabled": false
68
- }
69
- ],
70
- "actionButtons": [
71
- {
72
- "key": 'charge',
73
- "label": '收费',
74
- "icon": 'check'
75
- },
76
- {
77
- "key": 'refund',
78
- "label": '退费',
79
- "icon": 'undo'
80
- },
81
- {
82
- "key": 'print',
83
- "label": '打印',
84
- "icon": 'printer'
85
- }
86
- ],
87
- "enableMixedPayment": true, // 启用混合支付
88
- // 可配置事件名,参考 fronImport 风格
89
- "eventNames": {
90
- "method": 'method',
91
- "methods": 'methods',
92
- "totalPaymentAmount": 'totalPaymentAmount',
93
- "action": 'action'
94
- },
95
- "dataSourceConfig": 'testChargeLogic'
96
- }
97
-
98
- // 单选模式测试配置
99
- export const testSingleChargeConfig = {
100
- "amountFields": [
101
- {
102
- "field": 'f_amount',
103
- "disabled": false,
104
- "label": '费用总额'
105
- },
106
- {
107
- "field": 'f_insurance_amount',
108
- "disabled": true,
109
- "label": '医保支付'
110
- }
111
- ],
112
- "paymentMethods": [
113
- {
114
- "key": '医保卡',
115
- "label": '医保卡'
116
- },
117
- {
118
- "key": '现金',
119
- "label": '现金'
120
- }
121
- ],
122
- "bottomFields": [
123
- {
124
- "field": 'received',
125
- "label": '实收',
126
- "disabled": false
127
- },
128
- {
129
- "field": 'change',
130
- "label": '找零',
131
- "disabled": false
132
- }
133
- ],
134
- "actionButtons": [
135
- {
136
- "key": 'charge',
137
- "label": '收费',
138
- "icon": 'check'
139
- }
140
- ],
141
- "enableMixedPayment": false, // 禁用混合支付(单选模式)
142
- "eventNames": {
143
- "method": 'method',
144
- "methods": 'methods',
145
- "totalPaymentAmount": 'totalPaymentAmount',
146
- "action": 'action'
147
- },
148
- "dataSourceConfig": 'testChargeLogic'
149
- }