cui-print 1.0.28

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 (80) hide show
  1. package/README.md +29 -0
  2. package/dist/font/iconfont.css +151 -0
  3. package/dist/font/iconfont.js +1 -0
  4. package/dist/font/iconfont.json +247 -0
  5. package/dist/font/iconfont.ttf +0 -0
  6. package/dist/font/iconfont.woff +0 -0
  7. package/dist/font/iconfont.woff2 +0 -0
  8. package/dist/index.css +1 -0
  9. package/dist/index.es.js +51053 -0
  10. package/dist/index.umd.js +1030 -0
  11. package/dist/print-designer-api/create-style/create-base-component-style.js +116 -0
  12. package/dist/print-designer-api/create-style/create-complex-table-style.js +472 -0
  13. package/dist/print-designer-api/create-style/create-form-component-style.js +78 -0
  14. package/dist/print-designer-api/create-style/create-form-item-style.js +144 -0
  15. package/dist/print-designer-api/create-style/create-grid-style.js +49 -0
  16. package/dist/print-designer-api/create-style/create-table-layout-style.js +128 -0
  17. package/dist/print-designer-api/create-style/create-table-style.js +93 -0
  18. package/dist/print-designer-api/print-designer-helper.js +912 -0
  19. package/dist/print-designer-api/print-designer-style-helper.js +96 -0
  20. package/dist/print-designer-api/print-designer-utils.js +27 -0
  21. package/dist/print-designer-api/print-global-style/base.less +20 -0
  22. package/dist/print-designer-api/print-global-style/common.less +3 -0
  23. package/dist/print-designer-api/print-global-style/custom.less +4 -0
  24. package/dist/print-designer-api/print-global-style/index.css +812 -0
  25. package/dist/print-designer-api/print-global-style/index.js +813 -0
  26. package/dist/print-designer-api/print-global-style/index.less +9 -0
  27. package/dist/print-designer-api/print-global-style/print-base-component.less +123 -0
  28. package/dist/print-designer-api/print-global-style/print-container.less +57 -0
  29. package/dist/print-designer-api/print-global-style/print-continue/index.less +14 -0
  30. package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/auto-continue-not-span.less +61 -0
  31. package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/auto-continue-preview.less +12 -0
  32. package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/auto-continue-span.less +88 -0
  33. package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/fixed-continue.less +37 -0
  34. package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/index.less +96 -0
  35. package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/pagination-preview.less +12 -0
  36. package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/pagination.less +61 -0
  37. package/dist/print-designer-api/print-global-style/print-form-component.less +161 -0
  38. package/dist/print-designer-api/print-global-style/print-form-item.less +162 -0
  39. package/dist/print-designer-api/print-global-style/printing.less +16 -0
  40. package/dist/print-designer-api/print-soket.js +31 -0
  41. package/dist/print-designer-api/use-create-html/create-html-utils.js +43 -0
  42. package/dist/print-designer-api/use-create-html/index.js +287 -0
  43. package/dist/print-designer-api/use-create-html/use-base-component-helper.js +129 -0
  44. package/dist/print-designer-api/use-create-html/use-complex-table-helper/complex-table-tools.js +129 -0
  45. package/dist/print-designer-api/use-create-html/use-complex-table-helper/create-table-header.js +111 -0
  46. package/dist/print-designer-api/use-create-html/use-complex-table-helper/index.js +87 -0
  47. package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-auto-height-preview.js +84 -0
  48. package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-auto-height.js +379 -0
  49. package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-default.js +75 -0
  50. package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-fixed-height.js +220 -0
  51. package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-pagination-preview.js +84 -0
  52. package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-pagination.js +272 -0
  53. package/dist/print-designer-api/use-create-html/use-form-component-helper.js +164 -0
  54. package/dist/print-designer-api/use-create-html/use-format/index.js +102 -0
  55. package/dist/print-designer-api/use-create-html/use-format/use-complex-table-auto.js +337 -0
  56. package/dist/print-designer-api/use-create-html/use-format/use-complex-table-fiexd.js +233 -0
  57. package/dist/print-designer-api/use-create-html/use-format/use-complex-table-pagination.js +286 -0
  58. package/dist/print-designer-api/use-create-html/use-grid-helper.js +35 -0
  59. package/dist/print-designer-api/use-create-html/use-table-layout-helper.js +213 -0
  60. package/dist/print-designer-api/use-create-print-js/index.js +147 -0
  61. package/dist/print-designer-api/use-create-print-js/use-base-component-helper.js +54 -0
  62. package/dist/print-designer-api/use-create-print-js/use-form-component-helper.js +4 -0
  63. package/dist/print-designer-api/use-create-print-js/use-table-layout-helper.js +5 -0
  64. package/dist/print-designer-images/demo.jpg +0 -0
  65. package/dist/print-designer-images/demo02.jpg +0 -0
  66. package/dist/style/default-style.css +137 -0
  67. package/dist/style/main.less +66 -0
  68. package/dist/test/base/designer-config.js +594 -0
  69. package/dist/test/base/index.js +3 -0
  70. package/dist/test/base/print-data.js +40 -0
  71. package/dist/test/complex-table/designer-config.js +1668 -0
  72. package/dist/test/complex-table/index.js +3 -0
  73. package/dist/test/complex-table/print-data.js +294 -0
  74. package/dist/test/form/designer-config.js +2057 -0
  75. package/dist/test/form/index.js +3 -0
  76. package/dist/test/form/print-data.js +38 -0
  77. package/dist/test/index.js +4 -0
  78. package/dist/wui-print-designer-plugins/JsBarcode.all.min.js +2 -0
  79. package/dist/wui-print-designer-plugins/qrcode.min.js +1 -0
  80. package/package.json +65 -0
@@ -0,0 +1,594 @@
1
+ export default {
2
+ printConfig: {
3
+ templateTitle: "检验申请单",
4
+ templateCode: "",
5
+ pageSize: "A5",
6
+ servePrintType: "pdf",
7
+ printer: "",
8
+ silent: true,
9
+ style: {
10
+ paddingTop: "50px",
11
+ paddingBottom: "50px",
12
+ paddingLeft: "50px",
13
+ paddingRight: "50px",
14
+ backgroundColor: "#fff",
15
+ fontSize: "14px"
16
+ }
17
+ },
18
+ formConfig: {
19
+ props: {
20
+ labelWidth: "80px",
21
+ labelPosition: "left",
22
+ size: "small"
23
+ }
24
+ },
25
+ layoutConfig: [
26
+ {
27
+ id: "bf0741e9-bd9e-40e1-9f2e-c113c676351e",
28
+ type: "text",
29
+ title: "文本",
30
+ style: {
31
+ marginBottom: "10px",
32
+ paddingTop: "10px",
33
+ paddingBottom: "10px",
34
+ paddingLeft: "10px",
35
+ paddingRight: "10px",
36
+ fontSize: "20px",
37
+ fontWeight: 700,
38
+ textAlign: "center",
39
+ borderBottomStyle: "solid",
40
+ borderBottomWidth: "2px",
41
+ borderBottomColor: "#919191"
42
+ },
43
+ props: {
44
+ defaultContent: "检验申请单"
45
+ }
46
+ },
47
+ {
48
+ id: "d565e0e2-a9c1-4977-abe9-2ac52bc9de08",
49
+ type: "grid",
50
+ title: "栅格布局",
51
+ style: {},
52
+ children: [
53
+ {
54
+ id: "eedfec36-5603-4a88-8b38-0c57f1f9c848",
55
+ type: "grid-item",
56
+ title: "栅格布局格子",
57
+ props: {
58
+ span: 19
59
+ },
60
+ style: {},
61
+ children: [
62
+ {
63
+ id: "97abf551-ec0c-47c1-a99e-e9b13c50c597",
64
+ type: "barcode",
65
+ title: "条形码",
66
+ style: {},
67
+ props: {
68
+ field: "txm",
69
+ format: "CODE128",
70
+ lineColor: "#000000",
71
+ background: "#ffffff",
72
+ width: 1,
73
+ height: 30,
74
+ displayValue: true,
75
+ fontSize: 12,
76
+ margin: 0,
77
+ textAlign: "",
78
+ textPosition: ""
79
+ }
80
+ }
81
+ ]
82
+ },
83
+ {
84
+ id: "e89f0d2a-50ca-4061-b190-ffa59e87dfa5",
85
+ type: "grid-item",
86
+ title: "栅格布局格子",
87
+ props: {
88
+ span: 5
89
+ },
90
+ style: {},
91
+ children: [
92
+ {
93
+ id: "e1ac1494-d8f9-4f96-8198-49b3c0b1db56",
94
+ type: "dynamicText",
95
+ title: "动态文本",
96
+ style: {
97
+ marginBottom: "0px",
98
+ paddingLeft: "10px",
99
+ label_textAlign: "right",
100
+ text_paddingLeft: "10px",
101
+ text_textAlign: "center"
102
+ },
103
+ props: {
104
+ label: "急诊:",
105
+ field: "jz"
106
+ }
107
+ }
108
+ ]
109
+ },
110
+ {
111
+ id: "fdd4af96-d962-4b08-a89c-99c4a48a2e37",
112
+ type: "grid-item",
113
+ title: "栅格布局格子",
114
+ props: {
115
+ span: 12
116
+ },
117
+ style: {},
118
+ children: [
119
+ {
120
+ id: "41014c42-06d4-41fb-9c2d-330c9823c1ee",
121
+ type: "dynamicText",
122
+ title: "动态文本",
123
+ style: {
124
+ marginBottom: "10px",
125
+ text_paddingLeft: "10px",
126
+ text_textAlign: "left"
127
+ },
128
+ props: {
129
+ label: "挂号序号:",
130
+ field: "ghxh"
131
+ }
132
+ }
133
+ ]
134
+ },
135
+ {
136
+ id: "68cb9739-3be4-46d0-86f4-1cdf406ede4c",
137
+ type: "grid-item",
138
+ title: "栅格布局格子",
139
+ props: {
140
+ span: 12
141
+ },
142
+ style: {},
143
+ children: [
144
+ {
145
+ id: "e41204ec-c9af-401d-8171-67d72bbcf5f3",
146
+ type: "dynamicText",
147
+ title: "动态文本",
148
+ style: {
149
+ marginBottom: "10px",
150
+ text_paddingLeft: "10px",
151
+ text_textAlign: "left"
152
+ },
153
+ props: {
154
+ label: "临床诊断:",
155
+ field: "lczd"
156
+ }
157
+ }
158
+ ]
159
+ },
160
+ {
161
+ id: "74d31fb6-729a-4679-a926-cd031605c3eb",
162
+ type: "grid-item",
163
+ title: "栅格布局格子",
164
+ props: {
165
+ span: 8
166
+ },
167
+ style: {},
168
+ children: [
169
+ {
170
+ id: "116c71a4-c4b3-49fe-8d1e-b2eedf7a8d30",
171
+ type: "dynamicText",
172
+ title: "动态文本",
173
+ style: {
174
+ marginBottom: "10px",
175
+ text_paddingLeft: "10px",
176
+ text_textAlign: "left"
177
+ },
178
+ props: {
179
+ label: "病员姓名:",
180
+ field: "byxm"
181
+ }
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ id: "3cb868c6-c0af-42d3-91a6-2e05bfe21a75",
187
+ type: "grid-item",
188
+ title: "栅格布局格子",
189
+ props: {
190
+ span: 8
191
+ },
192
+ style: {},
193
+ children: [
194
+ {
195
+ id: "9ed15012-1fb1-4007-bf30-44eadfd3bbcc",
196
+ type: "dynamicText",
197
+ title: "动态文本",
198
+ style: {
199
+ marginBottom: "10px",
200
+ text_paddingLeft: "10px",
201
+ text_textAlign: "left"
202
+ },
203
+ props: {
204
+ label: "性别:",
205
+ field: "xb"
206
+ }
207
+ }
208
+ ]
209
+ },
210
+ {
211
+ id: "bfc6534f-40e9-4603-9fbd-9885c28d936d",
212
+ type: "grid-item",
213
+ title: "栅格布局格子",
214
+ props: {
215
+ span: 8
216
+ },
217
+ style: {},
218
+ children: [
219
+ {
220
+ id: "f10f7363-5950-4906-90e5-31563fb34149",
221
+ type: "dynamicText",
222
+ title: "动态文本",
223
+ style: {
224
+ marginBottom: "10px",
225
+ text_paddingLeft: "10px",
226
+ text_textAlign: "left"
227
+ },
228
+ props: {
229
+ label: "年龄:",
230
+ field: "nl"
231
+ }
232
+ }
233
+ ]
234
+ },
235
+ {
236
+ id: "3e84a6a4-c9ee-4ebe-8cea-e8fc5695cdd5",
237
+ type: "grid-item",
238
+ title: "栅格布局格子",
239
+ props: {
240
+ span: 24
241
+ },
242
+ style: {},
243
+ children: [
244
+ {
245
+ id: "d9f22f70-34c1-4eaa-8666-41991594197a",
246
+ type: "dynamicText",
247
+ title: "动态文本",
248
+ style: {
249
+ marginBottom: "10px",
250
+ text_paddingLeft: "10px",
251
+ text_textAlign: "left"
252
+ },
253
+ props: {
254
+ label: "联系电话:",
255
+ field: "lxdh"
256
+ }
257
+ },
258
+ {
259
+ id: "37c931e6-d424-4293-85ff-10c0324d4cc9",
260
+ type: "dynamicText",
261
+ title: "动态文本",
262
+ style: {
263
+ marginBottom: "10px",
264
+ text_paddingLeft: "10px",
265
+ text_textAlign: "left"
266
+ },
267
+ props: {
268
+ label: "身份证号:",
269
+ field: "sfzh"
270
+ }
271
+ },
272
+ {
273
+ id: "b303efa8-737f-45b3-9341-98176d4f3709",
274
+ type: "dynamicText",
275
+ title: "动态文本",
276
+ style: {
277
+ marginBottom: "10px",
278
+ text_paddingLeft: "10px",
279
+ text_textAlign: "left"
280
+ },
281
+ props: {
282
+ label: "家庭住址:",
283
+ field: "jtzz"
284
+ }
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ id: "bd7dcd65-0f31-437c-a5bd-bb9f8ca1363c",
290
+ type: "grid-item",
291
+ title: "栅格布局格子",
292
+ props: {
293
+ span: 12
294
+ },
295
+ style: {},
296
+ children: [
297
+ {
298
+ id: "19c61914-4da8-44b8-8608-1c7587838585",
299
+ type: "dynamicText",
300
+ title: "动态文本",
301
+ style: {
302
+ marginBottom: "10px",
303
+ text_paddingLeft: "10px",
304
+ text_textAlign: "left"
305
+ },
306
+ props: {
307
+ label: "申请单号:",
308
+ field: "sqdh"
309
+ }
310
+ }
311
+ ]
312
+ },
313
+ {
314
+ id: "c0730a26-8635-45d7-aaa6-0f777e3b9bae",
315
+ type: "grid-item",
316
+ title: "栅格布局格子",
317
+ props: {
318
+ span: 12
319
+ },
320
+ style: {},
321
+ children: [
322
+ {
323
+ id: "2d732e89-71d6-4037-84fd-dc3548349a9d",
324
+ type: "dynamicText",
325
+ title: "动态文本",
326
+ style: {
327
+ marginBottom: "10px",
328
+ text_paddingLeft: "10px",
329
+ text_textAlign: "left"
330
+ },
331
+ props: {
332
+ label: "申请科室:",
333
+ field: "sqks"
334
+ }
335
+ }
336
+ ]
337
+ },
338
+ {
339
+ id: "112539bd-94c2-431b-b6a9-77868e3a7559",
340
+ type: "grid-item",
341
+ title: "栅格布局格子",
342
+ props: {
343
+ span: 12
344
+ },
345
+ style: {},
346
+ children: [
347
+ {
348
+ id: "ce509378-05b0-4801-baf8-71c9feda920b",
349
+ type: "dynamicText",
350
+ title: "动态文本",
351
+ style: {
352
+ marginBottom: "10px",
353
+ text_paddingLeft: "10px",
354
+ text_textAlign: "left"
355
+ },
356
+ props: {
357
+ label: "申请医生:",
358
+ field: "sqys"
359
+ }
360
+ }
361
+ ]
362
+ },
363
+ {
364
+ id: "8f2cf241-6f43-418c-9877-1214b5113837",
365
+ type: "grid-item",
366
+ title: "栅格布局格子",
367
+ props: {
368
+ span: 12
369
+ },
370
+ style: {},
371
+ children: [
372
+ {
373
+ id: "f2affe0e-e714-483c-9d50-090ea24a8b46",
374
+ type: "dynamicText",
375
+ title: "动态文本",
376
+ style: {
377
+ marginBottom: "10px",
378
+ text_paddingLeft: "10px",
379
+ text_textAlign: "left"
380
+ },
381
+ props: {
382
+ label: "申请时间:",
383
+ field: "sqsj"
384
+ }
385
+ }
386
+ ]
387
+ },
388
+ {
389
+ id: "42ffcc43-92ff-4a32-96f7-620e882fdd68",
390
+ type: "grid-item",
391
+ title: "栅格布局格子",
392
+ props: {
393
+ span: 24
394
+ },
395
+ style: {},
396
+ children: [
397
+ {
398
+ id: "0072c187-95ba-4ce0-89af-5699e1b0f0d1",
399
+ type: "dynamicText",
400
+ title: "动态文本",
401
+ style: {
402
+ marginBottom: "10px",
403
+ text_paddingLeft: "10px",
404
+ text_textAlign: "left"
405
+ },
406
+ props: {
407
+ label: "主诉:",
408
+ field: "zs"
409
+ }
410
+ },
411
+ {
412
+ id: "c1413a20-b1cf-439f-b707-cac6b4a357d2",
413
+ type: "dynamicText",
414
+ title: "动态文本",
415
+ style: {
416
+ marginBottom: "10px",
417
+ text_paddingLeft: "10px",
418
+ text_textAlign: "left"
419
+ },
420
+ props: {
421
+ label: "现病史:",
422
+ field: "xbs"
423
+ }
424
+ }
425
+ ]
426
+ }
427
+ ],
428
+ props: {}
429
+ },
430
+ {
431
+ id: "1dcf7918-3eeb-403a-9a31-fdd8f6d1b812",
432
+ type: "table",
433
+ title: "表格",
434
+ style: {
435
+ marginBottom: "10px",
436
+ borderStyle: "none",
437
+ borderTopStyle: "none",
438
+ borderTopWidth: "1px",
439
+ borderTopColor: "#ADADAD",
440
+ borderBottomStyle: "none",
441
+ borderLeftStyle: "none",
442
+ borderLeftWidth: "1px",
443
+ borderLeftColor: "#ADADAD",
444
+ borderRightStyle: "none",
445
+ fontSize: "14px",
446
+ textAlign: "left",
447
+ header_paddingTop: "5px",
448
+ header_paddingBottom: "5px",
449
+ header_paddingLeft: "5px",
450
+ header_paddingRight: "5px",
451
+ header_borderTopStyle: "solid",
452
+ header_borderTopWidth: "2px",
453
+ header_borderTopColor: "#666666",
454
+ header_borderBottomStyle: "solid",
455
+ header_borderBottomWidth: "2px",
456
+ header_borderBottomColor: "#666666",
457
+ header_borderRightStyle: "none",
458
+ header_borderRightWidth: "1px",
459
+ header_borderRightColor: "#ADADAD",
460
+ header_fontWeight: 700,
461
+ header_textAlign: "left",
462
+ cell_paddingTop: "5px",
463
+ cell_paddingBottom: "5px",
464
+ cell_paddingLeft: "5px",
465
+ cell_paddingRight: "5px",
466
+ cell_borderBottomStyle: "solid",
467
+ cell_borderBottomWidth: "2px",
468
+ cell_borderBottomColor: "#666666",
469
+ cell_borderRightStyle: "none",
470
+ cell_borderRightWidth: "1px",
471
+ cell_borderRightColor: "#ADADAD",
472
+ cell_textAlign: "left"
473
+ },
474
+ columns: [
475
+ {
476
+ id: "27a794d0-d46c-4066-9ab9-2d790e5c5b1f",
477
+ type: "table-column",
478
+ title: "列",
479
+ props: {
480
+ headerTitle: "项目名称",
481
+ field: "xmmc"
482
+ },
483
+ style: {
484
+ width: "150px"
485
+ }
486
+ },
487
+ {
488
+ id: "0eefa904-4a13-4ff8-a65a-9dc6468e1f68",
489
+ type: "table-column",
490
+ title: "列",
491
+ props: {
492
+ headerTitle: "单价",
493
+ field: "dj"
494
+ },
495
+ style: {
496
+ width: "100px"
497
+ }
498
+ },
499
+ {
500
+ id: "38d8e9c3-87a2-4502-86c9-fbd0c947bb38",
501
+ type: "table-column",
502
+ title: "列",
503
+ props: {
504
+ headerTitle: "数量",
505
+ field: "sl"
506
+ },
507
+ style: {
508
+ width: "100px"
509
+ }
510
+ },
511
+ {
512
+ id: "03b71c81-ffe9-449f-a473-828ca1cd135e",
513
+ type: "table-column",
514
+ title: "列",
515
+ props: {
516
+ headerTitle: "执行科室",
517
+ field: "zxks"
518
+ },
519
+ style: {
520
+ width: "100px"
521
+ }
522
+ }
523
+ ],
524
+ props: {
525
+ field: "jyxm"
526
+ }
527
+ },
528
+ {
529
+ id: "9aa360c7-c88a-4153-af63-9578c4e70ac3",
530
+ type: "grid",
531
+ title: "栅格布局",
532
+ style: {},
533
+ children: [
534
+ {
535
+ id: "0daea1ff-4156-4457-98a4-0266e3d0131e",
536
+ type: "grid-item",
537
+ title: "栅格布局格子",
538
+ props: {
539
+ span: 12
540
+ },
541
+ style: {},
542
+ children: [
543
+ {
544
+ id: "6322f0ef-90eb-42cd-9100-374a2ebfc4d9",
545
+ type: "dynamicText",
546
+ title: "动态文本",
547
+ style: {
548
+ marginBottom: "10px",
549
+ label_marginBottom: "10px",
550
+ label_fontSize: "16px",
551
+ text_paddingLeft: "10px",
552
+ text_fontSize: "16px",
553
+ text_textAlign: "left"
554
+ },
555
+ props: {
556
+ label: "合计金额:",
557
+ field: "hjje"
558
+ }
559
+ }
560
+ ]
561
+ },
562
+ {
563
+ id: "37b4a594-b833-44b7-a7d6-551720ea7007",
564
+ type: "grid-item",
565
+ title: "栅格布局格子",
566
+ props: {
567
+ span: 12
568
+ },
569
+ style: {},
570
+ children: [
571
+ {
572
+ id: "6a984b22-532f-4145-8235-34de7b25ca24",
573
+ type: "dynamicText",
574
+ title: "动态文本",
575
+ style: {
576
+ marginBottom: "10px",
577
+ label_marginBottom: "10px",
578
+ label_fontSize: "16px",
579
+ text_paddingLeft: "10px",
580
+ text_fontSize: "16px",
581
+ text_textAlign: "left"
582
+ },
583
+ props: {
584
+ label: "医生签名:",
585
+ field: "ysqm"
586
+ }
587
+ }
588
+ ]
589
+ }
590
+ ],
591
+ props: {}
592
+ }
593
+ ]
594
+ };
@@ -0,0 +1,3 @@
1
+ import designerConfig from "./designer-config";
2
+ import printData from "./print-data";
3
+ export default { designerConfig, printData };
@@ -0,0 +1,40 @@
1
+ export default {
2
+ txm: "2154456698",
3
+ jz: "是",
4
+ ghxh: "2024114454",
5
+ lczd: "恶性肿瘤",
6
+ byxm: "张运松",
7
+ xb: "男",
8
+ nl: "40岁",
9
+ lxdh: "13522661154",
10
+ sfzh: "510725196412042031",
11
+ jtzz: "贵州省黎平县板桥八组",
12
+ sqdh: "12454575112",
13
+ sqks: "心肺病科",
14
+ sqys: "李时珍",
15
+ sqsj: "2025年2月18日",
16
+ zs: "右肩疼痛伴右上肢麻木1月",
17
+ xbs: "右肩疼痛伴右上肢麻木1月",
18
+ jyxm: [
19
+ {
20
+ xmmc: "人免疫缺陷病毒抗体测定",
21
+ dj: "15.00",
22
+ sl: "1.00",
23
+ zxks: "检验科"
24
+ },
25
+ {
26
+ xmmc: "人免疫缺陷病毒抗体测定2",
27
+ dj: "151.00",
28
+ sl: "12.00",
29
+ zxks: "检验科1"
30
+ },
31
+ {
32
+ xmmc: "人免疫缺陷病毒抗体测定3",
33
+ dj: "105.00",
34
+ sl: "1.00",
35
+ zxks: "检验科2"
36
+ }
37
+ ],
38
+ hjje: "2600.00",
39
+ ysqm: "李时珍"
40
+ };