vue2-client 1.22.39 → 1.22.46

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/.env.iot +1 -0
  2. package/.idea/af-vue2-client.iml +2 -3
  3. package/.idea/inspectionProfiles/Project_Default.xml +17 -0
  4. package/1yarn.lock +11850 -0
  5. package/logs/afgit.config.log +12 -0
  6. package/logs/afgit.config.log.2026-02-27 +7 -0
  7. package/logs/afgit.config_error.log +6 -0
  8. package/logs/afgit.config_error.log.2026-02-27 +3 -0
  9. package/package.json +1 -1
  10. package/pnpm-workspace.yaml +4 -0
  11. package/public/his/editor/mock/bind_data_with_images.html +78 -0
  12. package/public/his/editor/mock/blank.html +645 -0
  13. package/src/assets/img/80359c35a5465167cb25ff87bab49035d041a65558b35-YJOr3x.png +0 -0
  14. package/src/assets/img/hisLogo.png +0 -0
  15. package/src/assets/svg/unknown-icon.svg +3 -3
  16. package/src/base-client/components/common/AfMap/InfoWindowComponent.vue +141 -141
  17. package/src/base-client/components/common/AfMap/demo.vue +492 -492
  18. package/src/base-client/components/common/HIS/HButtons/HButtons.vue +89 -1
  19. package/src/base-client/components/common/HIS/HButtons/HButtonsSuffixDemo.vue +141 -0
  20. package/src/base-client/components/common/Upload/Upload.vue +2 -2
  21. package/src/base-client/components/common/XInspectionDetailDrawer/components/DeviceStatus.vue +1 -1
  22. package/src/base-client/components/his/XHisEditor/ImageReportDemo.vue +156 -0
  23. package/src/base-client/components/his/XHisEditor/XDocTree.vue +529 -529
  24. package/src/base-client/plugins/GetLoginInfoService.js +26 -1
  25. package/src/components/ImagePreview/ImagePreview.vue +323 -323
  26. package/src/constants/crypto.js +9 -1
  27. package/src/pages/login/Login.vue +107 -3
  28. package/src/router/async/router.map.js +6 -1
  29. package/src/services/user.js +7 -3
  30. package/src/utils/EncryptUtil.js +7 -2
  31. package/src/utils/login.js +29 -14
  32. package/src/utils/request.js +14 -3
  33. package/src/utils/util.js +27 -4
  34. package/vue.config.js +10 -0
  35. package/.idea/MarsCodeWorkspaceAppSettings.xml +0 -7
  36. package/.idea/deployment.xml +0 -14
  37. package/.idea/encodings.xml +0 -6
  38. package/.idea/gradle.xml +0 -7
  39. package/.idea/misc.xml +0 -6
@@ -0,0 +1,645 @@
1
+ <html class="preview">
2
+
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <style id="preview" type="text/css">
6
+ @media print {
7
+ .pagebreaker {
8
+ display: none !important;
9
+ }
10
+ }
11
+ </style>
12
+ <style id="printSzie" type="text/css">
13
+ @page {
14
+ margin: 0;
15
+ size: A4 portrait;
16
+ }
17
+ </style>
18
+ <style>
19
+ ::-webkit-scrollbar {
20
+ width: 6px;
21
+ height: 6px;
22
+ }
23
+
24
+ ::-webkit-scrollbar-track {
25
+ background-color: transparent;
26
+ }
27
+
28
+ ::-webkit-scrollbar-thumb {
29
+ border-radius: 5px;
30
+ box-shadow: inset 0 0 0px rgba(240, 240, 240, 0.5);
31
+ background-color: rgba(100, 100, 100, 0.5);
32
+ }
33
+
34
+ ::selection {
35
+ background: rgba(170, 210, 255, 1);
36
+ }
37
+
38
+ .pagebreaker {
39
+ font-family: 'Times New Roman', Times, serif;
40
+ display: block;
41
+ height: 15px;
42
+ }
43
+
44
+ body {
45
+ word-break: break-all;
46
+ font-family: '宋体';
47
+ font-size: 12pt;
48
+ }
49
+
50
+ @media print {
51
+ .pagebreaker {
52
+ display: none !important;
53
+ }
54
+
55
+ html,
56
+ body {
57
+ margin: 0;
58
+ }
59
+ }
60
+
61
+ #_page {
62
+ position: relative;
63
+ z-index: 1;
64
+ line-height: 1.5;
65
+ box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 10px 0px, rgba(0, 0, 0, 0.04) 0px 0px 0px 1px;
66
+ }
67
+
68
+ .preview #_page {
69
+ box-shadow: none;
70
+ }
71
+
72
+ #_header,
73
+ #_body,
74
+ #_footer {
75
+ outline: none;
76
+ }
77
+
78
+ /* 预览模式 */
79
+ .preview body {
80
+ background-color: #666;
81
+ }
82
+
83
+ .preview #_page {
84
+ outline: none;
85
+ }
86
+
87
+ h1,
88
+ h2,
89
+ h3 {
90
+ margin: 0
91
+ }
92
+
93
+ br {
94
+ line-height: 1.5;
95
+ }
96
+
97
+ p {
98
+ margin: 0;
99
+ line-height: 1.5;
100
+ min-height: 1em;
101
+ }
102
+
103
+ /* 章节&段落 */
104
+ span[contenteditable=true],
105
+ p[contenteditable=true],
106
+ section[contenteditable=true] {
107
+ outline: none;
108
+ background-color: #eff;
109
+ }
110
+
111
+ .design p::after {
112
+ font-size: 9pt;
113
+ position: absolute;
114
+ content: '↲';
115
+ color: lightgray;
116
+ }
117
+
118
+ input {
119
+ outline: none;
120
+ }
121
+
122
+ /* input:checked { position: relative; height:15px; width: 20px; box-sizing: border-box; margin: 0px; &:after { content: '✔'; display: block; background:#fff; border-radius: 30%; border: 1px #000 solid; } } */
123
+ textarea {
124
+ outline: none;
125
+ }
126
+
127
+ hr {
128
+ margin-block: 0.1em 0;
129
+ border-style: solid;
130
+ border-top-width: 0;
131
+ border-bottom-width: 1px;
132
+ }
133
+
134
+ field {
135
+ outline: none;
136
+ color: #000;
137
+ caret-color: black;
138
+ text-indent: 0;
139
+ min-height: 1em;
140
+ }
141
+
142
+ field[contenteditable=true],
143
+ field[type=DateTime] {
144
+ background-color: #eff;
145
+ }
146
+
147
+ field[readonly] {
148
+ background-color: #fff;
149
+ }
150
+
151
+ field[selectable=true] {
152
+ background-color: #eff;
153
+ }
154
+
155
+ field[format=number] {
156
+ ime-mode: disabled;
157
+ }
158
+
159
+ .design [data-expression]:not([data-expression=""]) {
160
+ position: relative;
161
+ }
162
+
163
+ .design [data-expression]:not([data-expression=""])::before {
164
+ white-space: nowrap;
165
+ font-size: 9px;
166
+ content: attr(data-expression);
167
+ position: absolute;
168
+ padding: 0px 5px;
169
+ position: absolute;
170
+ bottom: 1.8em;
171
+ background-color: #fdd8;
172
+ border: 1px dotted red;
173
+ border-radius: 3px;
174
+ }
175
+
176
+ field[contenteditable=true]:focus {
177
+ background-color: #aff;
178
+ }
179
+
180
+ field.blank {
181
+ color: lightgray;
182
+ }
183
+
184
+ /* 预览模式 */
185
+ .preview field {
186
+ background-color: #fff;
187
+ }
188
+
189
+ .preview field.blank {
190
+ color: rgba(255, 255, 255, 0);
191
+ }
192
+
193
+ field.error {
194
+ color: red;
195
+ }
196
+
197
+ img {
198
+ max-width: 100%
199
+ }
200
+
201
+ img[type=sign] {
202
+ background-color: #f9f9f9;
203
+ }
204
+
205
+ table {
206
+ border-collapse: collapse;
207
+ border: 1px solid #000;
208
+ word-break: break-all;
209
+ font-size: 12pt;
210
+ }
211
+
212
+ /* 设计模式 */
213
+ .design thead {
214
+ outline: 1px dashed rgba(255, 0, 0, 1);
215
+ }
216
+
217
+ /* 设计模式 */
218
+ .design thead::before {
219
+ font-size: xx-small;
220
+ content: '每页打印';
221
+ cursor: pointer;
222
+ white-space: nowrap;
223
+ color: white;
224
+ padding: 0px 5px;
225
+ position: absolute;
226
+ left: -35px;
227
+ background-color: rgba(255, 0, 0, 0.5);
228
+ border-radius: 3px;
229
+ }
230
+
231
+ table td,
232
+ table th {
233
+ border: 1px solid #000;
234
+ padding: 2px;
235
+ height: 1.5em;
236
+ word-break: break-all;
237
+ }
238
+
239
+ table.noborder td {
240
+ border: none
241
+ }
242
+
243
+ td.noborder {
244
+ border: none
245
+ }
246
+
247
+ /* 设计模式 */
248
+ .design table.noborder td {
249
+ border: 1px dashed lightgray;
250
+ }
251
+
252
+ .design td.noborder {
253
+ border: 1px dashed lightgray;
254
+ }
255
+
256
+ td.selected {
257
+ background-color: rgba(170, 210, 255, 1) !important;
258
+ }
259
+
260
+ /* 设计模式 */
261
+ .design group {
262
+ outline: 1px dashed lightgray;
263
+ }
264
+
265
+ .design [tag=true]::before {
266
+ font-size: xx-small;
267
+ content: attr(title);
268
+ cursor: pointer;
269
+ white-space: nowrap;
270
+ color: white;
271
+ padding: 0px 5px;
272
+ position: absolute;
273
+ left: 5px;
274
+ background-color: rgba(0, 0, 0, 0.5);
275
+ border-radius: 3px;
276
+ }
277
+
278
+ #_dropdownbox,
279
+ #_selector,
280
+ #_datalist {
281
+ z-index: 2;
282
+ list-style: none;
283
+ position: absolute;
284
+ max-height: 300px;
285
+ overflow: auto;
286
+ cursor: hand;
287
+ outline: none;
288
+ display: none;
289
+ background: #fff;
290
+ border: rgba(0, 0, 0, 0.12);
291
+ box-shadow: 0 2px 8px 2px rgb(68 73 77 / 26%);
292
+ border-radius: 4px;
293
+ padding: 1px 0;
294
+ user-select: none;
295
+ -webkit-user-select: none;
296
+ }
297
+
298
+ #_dropdownbox>li,
299
+ #_selector>li,
300
+ #_datalist>li {
301
+ padding: 0 10px;
302
+ font-size: 14px;
303
+ line-height: 1.5;
304
+ min-width: 80px;
305
+ white-space: nowrap;
306
+ align-items: center;
307
+ }
308
+
309
+ #_dropdownbox>li:hover,
310
+ #_selector>li:hover,
311
+ #_datalist>li:hover {
312
+ background: lightgray;
313
+ }
314
+
315
+ .shink {
316
+ animation: shink 0.5s infinite;
317
+ animation-iteration-count: 1;
318
+ }
319
+
320
+ @keyframes shink {
321
+ from {
322
+ background-color: #f99;
323
+ }
324
+
325
+ to {
326
+ background-color: #eff;
327
+ }
328
+ }
329
+
330
+ .mask {
331
+ -webkit-mask-image: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, 0.4))
332
+ }
333
+
334
+ .close {
335
+ position: absolute;
336
+ right: 5px;
337
+ cursor: pointer;
338
+ width: 16px;
339
+ height: 16px;
340
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTguNTU0IDguMDA0bDQuNDAxIDQuMzkxLS41NC42MjJMNy45NzkgOC41OCAzLjU0IDEzLjAxNiAzIDEyLjM5NWw0LjQtNC4zOS00LjQtNC40TDMuNTQgM2w0LjQzOCA0LjQyOUwxMi40MTYgM2wuNTQuNjA2eiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
341
+ }
342
+
343
+ .apply {
344
+ position: absolute;
345
+ right: 30px;
346
+ cursor: pointer;
347
+ width: 16px;
348
+ height: 16px;
349
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0ibm9uZSI+CiA8Zz4KICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+CiAgPGcgc3Ryb2tlPSJudWxsIiBpZD0ic3ZnXzIiPgogICA8cmVjdCBzdHJva2U9IiMwMDAiIGZpbGw9IiNmZmYiIHg9IjEuMjczOTciIHk9IjEiIHdpZHRoPSIxMy44ODYxOSIgaGVpZ2h0PSIxMi45NjE0NiIgb3BhY2l0eT0iMCIgaWQ9InN2Z18zIi8+CiAgIDxwYXRoIHN0cm9rZT0iIzAwMCIgZmlsbD0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJtMS4yODczMiw3LjE0NzI4YzAsMCA0LjgzNDMyLDQuOTc5MTkgNC44MzQzMiw0Ljk3OTE5YzAsMCA4LjY2ODQ2LC05LjE4MDM4IDguNjY4NDYsLTkuMTgwMzgiIGlkPSJzdmdfMSIvPgogIDwvZz4KIDwvZz4KPC9zdmc+);
350
+ }
351
+
352
+ .pagebreak {
353
+ border-top: 2px dashed #00f;
354
+ }
355
+
356
+ .preview .pagebreak {
357
+ display: none;
358
+ }
359
+
360
+ .pageline {
361
+ Width: 100%;
362
+ height: 0;
363
+ border-top: 1px dashed #999;
364
+ position: absolute;
365
+ color: #999;
366
+ font-size: 8pt;
367
+ text-align: right;
368
+ }
369
+
370
+ .pageline>span {
371
+ position: absolute;
372
+ bottom: 5px;
373
+ right: -35px;
374
+ }
375
+
376
+ .pageline>ft {
377
+ position: absolute;
378
+ top: 5px;
379
+ right: -35px;
380
+ }
381
+
382
+ .message {
383
+ position: absolute;
384
+ text-align: center;
385
+ white-space: nowrap;
386
+ top: 20px;
387
+ left: 50%;
388
+ padding: 3px 5px;
389
+ font-size: 11px;
390
+ color: #fff !important;
391
+ max-width: none;
392
+ background: #ff6969;
393
+ z-index: 1;
394
+ border-radius: 5px;
395
+ user-select: none;
396
+ -webkit-user-select: none;
397
+ }
398
+
399
+ .message::after {
400
+ content: '';
401
+ width: 0;
402
+ height: 0;
403
+ border: 5px solid;
404
+ position: absolute;
405
+ top: -10px;
406
+ left: 5px;
407
+ border-color: transparent transparent #ff6969;
408
+ }
409
+
410
+ :root {
411
+ --remark-width: 200px;
412
+ --remark-height: 50px;
413
+ --oblique-y: 40px;
414
+ }
415
+
416
+ .form .remark {
417
+ background-color: pink;
418
+ }
419
+
420
+ .remark-block {
421
+ cursor: pointer;
422
+ position: absolute;
423
+ z-index: 1;
424
+ right: calc(-10px - var(--remark-width));
425
+ padding: 5px;
426
+ box-sizing: border-box;
427
+ width: var(--remark-width);
428
+ background: #fff;
429
+ border-left: solid 2px red;
430
+ box-shadow: 0 2px 8px 2px rgb(68 73 77 / 26%);
431
+ -webkit-box-shadow: 0 2px 8px 2px rgb(68 73 77 / 26%);
432
+ user-select: none;
433
+ -webkit-user-select: none;
434
+ }
435
+
436
+ .revision-block {
437
+ border-left: solid 2px red;
438
+ }
439
+
440
+ .animate-block {
441
+ transition: top 0.5s;
442
+ }
443
+
444
+ .remark-block:hover {
445
+ z-index: 2;
446
+ background: #eff;
447
+ }
448
+
449
+ .remark-line {
450
+ position: absolute;
451
+ top: 0;
452
+ left: 0;
453
+ }
454
+
455
+ .remark-note {
456
+ padding: 5px;
457
+ box-sizing: border-box;
458
+ max-width: var(--remark-width);
459
+ width: 100%;
460
+ min-height: var(--remark-height);
461
+ outline: none;
462
+ user-select: none;
463
+ -webkit-user-select: none;
464
+ }
465
+
466
+ .remark-info {
467
+ cursor: pointer;
468
+ position: absolute;
469
+ top: -15px;
470
+ left: -10px;
471
+ width: 15px;
472
+ height: 10px;
473
+ border: 1px solid lightgray;
474
+ background-color: lightyellow;
475
+ border-radius: 3px;
476
+ }
477
+
478
+ .remark-info:before {
479
+ content: "";
480
+ display: inline-block;
481
+ border: 4px solid transparent;
482
+ border-top: 4px solid lightgray;
483
+ position: absolute;
484
+ left: 3px;
485
+ bottom: -8px;
486
+ width: 0;
487
+ height: 0;
488
+ }
489
+
490
+ .remark-block:hover .straight,
491
+ .remark-block:hover .oblique {
492
+ border-top: 1px solid red;
493
+ }
494
+
495
+ .remark-block:hover .remark-info {
496
+ border-color: red;
497
+ }
498
+
499
+ .remark-block:hover .remark-info:before {
500
+ border-top-color: red;
501
+ }
502
+
503
+ .straight {
504
+ position: absolute;
505
+ right: calc(100% + var(--oblique-y));
506
+ border-top: 1px dashed red;
507
+ }
508
+
509
+ .oblique {
510
+ position: absolute;
511
+ border-top: dashed 1px red;
512
+ left: calc(-1 * var(--oblique-y));
513
+ width: calc(1.1* var(--oblique-y));
514
+ transform: rotate(30deg);
515
+ transform-origin: top left;
516
+ }
517
+
518
+ .remark-header {
519
+ color: #999;
520
+ font-size: 9px;
521
+ width: 100%;
522
+ height: 24px;
523
+ }
524
+
525
+ .remark-delete {
526
+ position: absolute;
527
+ width: 24px;
528
+ height: 24px;
529
+ top: 2px;
530
+ right: 2px;
531
+ background-size: contain;
532
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23464d5a' d='M17 7.714L12.714 12 17 16.286l-.714.714L12 12.714 7.714 17 7 16.286 11.286 12 7 7.714 7.714 7 12 11.286 16.286 7z'/%3E%3C/svg%3E");
533
+ cursor: pointer;
534
+ }
535
+
536
+ .td-line-style1 {
537
+ outline: none;
538
+ background-color: rgb(255, 255, 255);
539
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiPjxsaW5lIHgxPSIwIiB5MT0iMCIgeDI9IjEwMCIgeTI9IjEwMCIgc3R5bGU9InN0cm9rZTpncmF5O3N0cm9rZS13aWR0aDoxcHg7Ii8+PC9zdmc+IA==");
540
+ background-repeat: no-repeat;
541
+ background-size: 100% 100%;
542
+ }
543
+
544
+ .td-line-style2 {
545
+ outline: none;
546
+ background-color: rgb(255, 255, 255);
547
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiPjxsaW5lIHgxPSIxMDAiIHkxPSIwIiB4Mj0iMCIgeTI9IjEwMCIgc3R5bGU9InN0cm9rZTpncmF5O3N0cm9rZS13aWR0aDoxcHg7Ii8+PC9zdmc+IA==");
548
+ background-repeat: no-repeat;
549
+ background-size: 100% 100%;
550
+ }
551
+
552
+ <style><style id="printSzie" type="text/css">@page {
553
+ margin: 0;
554
+ size: A4 portrait;
555
+ }
556
+ </style>
557
+ <title></title>
558
+ </head>
559
+
560
+ <body>
561
+ <div id="_page">
562
+ <div class="print-page" style="position: relative; overflow:hidden; margin:0 auto; background:#fff;width:210mm;height:296.5mm;max-height:296.5mm;">
563
+ <div id="_header" style="min-height: 0.65cm; padding-left: 0.65cm; padding-right: 0.65cm; padding-top: 0.65cm; outline: none; position: relative;" contenteditable="false" class=""></div>
564
+ <div id="_body" style="padding-left:0.65cm;padding-right:0.65cm;text-indent:;min-height: calc(297mm - 49px - 49px);">
565
+ <p style="text-align: center; line-height: 1.5;">
566
+
567
+ <span style="font-size: 22pt; font-weight: bold; line-height: 2; font-family: STSong;">西安中兵西研医院</span>
568
+ </p>
569
+ <p style="text-align: center; line-height: 1.5;"><span style="font-weight: 700; font-size: 15pt; font-family: STSong;">检查报告</span></p>
570
+ <p style="text-align: center; line-height: 1.5;"><span style="font-weight: 700; font-size: 15pt; line-height: 1.5; font-family: STSong;">
571
+ <table class="noborder" id="" title="" data-field="" style="border-width: 0px; line-height: 1.5;">
572
+ <colgroup style="line-height: 1.5;">
573
+ <col style="width: 244px;">
574
+ <col style="width: 244px;">
575
+ <col style="width: 244px;">
576
+ </colgroup>
577
+ <tbody style="line-height: 1.5;">
578
+ <tr style="height: 24px; line-height: 1.5;">
579
+ <td id="" title="" class="" style="background-color: rgb(255, 255, 255); vertical-align: middle; text-align: left; line-height: 1.5;">影像号:<field tabindex="0" id="YXH" name="YXH" type="Text" contenteditable="false" class="blank input" title="填写影像号" multiline="false" required="false">填写影像号</field>&nbsp;&nbsp;</td>
580
+ <td style="line-height: 1.5;">检查日期:<field tabindex="0" id="JCRQ" name="JCRQ" type="DateTime" contenteditable="false" class="blank input" format="yyyy年MM月dd日" title="填写选择日期" code="" required="false">填写选择日期</field>&nbsp;&nbsp;</td>
581
+ <td style="line-height: 1.5;">报告日期:<field tabindex="0" id="BGRQ" name="BGRQ" type="Text" contenteditable="false" class="blank input" title="填写文本框" multiline="false" required="false">填写文本框</field>&nbsp;</td>
582
+ </tr>
583
+ </tbody>
584
+ </table>
585
+ </span></p>
586
+ <hr><br>
587
+ <p style="line-height: 2;">
588
+ <table class="noborder" id="" title="" data-field="" style="border-width: 0px; line-height: 1.5;">
589
+ <colgroup style="line-height: 1.5;">
590
+ <col style="width: 146px;">
591
+ <col style="width: 120px;">
592
+ <col style="width: 124px;">
593
+ <col style="width: 191px;">
594
+ <col style="width: 149px;">
595
+ </colgroup>
596
+ <tbody style="line-height: 1.5;">
597
+ <tr style="height: 24px; line-height: 1.5;">
598
+ <td style="line-height: 1.5; background-color: rgb(255, 255, 255); vertical-align: middle; text-align: left;" id="" title="">姓名:<field tabindex="0" id="name" name="name" type="Text" contenteditable="false" class="blank input" title="填写姓名" multiline="false" required="false">填写姓名</field>&nbsp;</td>
599
+ <td style="line-height: 1.5;">性别:<field tabindex="0" id="sex" name="sex" type="Text" contenteditable="false" class="blank input" title="性别" multiline="false" required="false">性别</field>&nbsp;</td>
600
+ <td style="line-height: 1.5;">年龄:<field tabindex="0" id="age" name="age" type="Text" contenteditable="false" class="blank input" title="年龄" multiline="false" required="false">年龄</field>&nbsp;</td>
601
+ <td class="" style="line-height: 1.5;">住院号:<field tabindex="0" id="ZYH" name="ZYH" type="Text" contenteditable="false" class="blank input" title="填写住院号" multiline="false" required="false">填写住院号</field>&nbsp;</td>
602
+ <td class="" style="line-height: 1.5;">床号:<field tabindex="0" id="CH" name="CH" type="Text" contenteditable="false" class="blank input" title="填写床号" multiline="false" required="false">填写床号</field>&nbsp;</td>
603
+ </tr>
604
+ </tbody>
605
+ </table><span style="line-height: 1.5;">
606
+ <table class="noborder" id="" title="" data-field="" style="border-width: 0px;">
607
+ <colgroup>
608
+ <col style="width: 311px;">
609
+ <col style="width: 404px;">
610
+ </colgroup>
611
+ <tbody style="line-height: 1.5;">
612
+ <tr style="height: 29px;">
613
+ <td>送诊科别:<field tabindex="0" id="SZKB" name="SZKB" type="Text" contenteditable="false" class="blank input" title="填写送科别" multiline="false" required="false">填写送科别</field>&nbsp;</td>
614
+ <td class="">检查项目:<field tabindex="0" id="JCXM" name="JCXM" type="Text" contenteditable="false" class="blank input" title="填写检查项目" multiline="false" required="false">填写检查项目</field>&nbsp;</td>
615
+ </tr>
616
+ </tbody>
617
+ </table><span style="line-height: 1;">&nbsp;</span>
618
+ </span></p>
619
+ <hr style="line-height: 1;"><br>
620
+ <p style="line-height: 2; text-indent: 30px;"><span style="font-weight: bold; font-family: STSong;">
621
+ <div id="ctImages" class="x-image-report-root"></div><br>
622
+ </span><span style="font-weight: bold; font-size: 12pt; line-height: 2.5; font-family: STSong;">影像所见:</span></p>
623
+ <section contenteditable="false" style="text-align: justify; text-indent: 30px;">
624
+ <p id="YXSJ" name="YXSJ" code="" title="影像所见"><br></p>
625
+ </section><span style="font-weight: bold; line-height: 2.5; font-family: STSong;">诊断意见:</span>
626
+ <section contenteditable="false" style="text-align: justify; text-indent: 30px;">
627
+ <p code="" title="诊断意见" id="ZDYJ" name="ZDYJ"></p>
628
+ </section><br>
629
+ <p></p>
630
+ </div>
631
+ <div id="_footer" style="position: relative; min-height: 0.65cm; padding-left: 0.65cm; padding-right: 0.65cm; padding-bottom: 0.65cm; outline: none;" contenteditable="false" class=""></div>
632
+ </div>
633
+ <div class="pagebreaker"></div>
634
+ <div></div>
635
+ </div>
636
+ </body>
637
+
638
+ </html>
639
+ <script>
640
+ document.querySelectorAll("input[type]").forEach((o) => {
641
+ o.addEventListener("click", (e) => {
642
+ e.preventDefault()
643
+ })
644
+ })
645
+ </script>
Binary file
@@ -1,3 +1,3 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg
2
- class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
3
- xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512 0C229.376 0 0 229.376 0 512c0 282.624 229.376 512 512 512 282.624 0 512-229.376 512-512 0-282.624-229.376-512-512-512z" fill="#6E6E6E" opacity=".15"></path><path d="M646.2464 284.4672q-43.349333-39.936-115.165867-39.936-80.9984 0-128.341333 47.240533-47.377067 46.250667-47.377067 130.116267v0.6144l0.068267 0.6144q6.382933 43.997867 47.4112 43.997867 40.994133 0 48.981333-43.690667l0.136534-0.750933v-0.785067q0-43.997867 15.2576-65.1264l0.1024-0.136533 0.068266-0.136534q16.896-25.3952 58.4704-25.3952 31.880533 0 49.3568 17.783467 17.408 18.909867 17.408 49.322667 0 23.722667-16.827733 44.8512l-8.328533 9.557333q-67.9936 62.088533-82.363734 92.4672c-7.304533 14.404267-11.946667 26.4192-13.994666 36.078933l-0.068267 0.273067-0.034133 0.273067c-2.628267 18.602667-0.7168 33.211733 5.802666 43.895466 6.826667 11.298133 18.295467 17.749333 34.269867 19.3536 31.812267 3.1744 49.493333-8.704 53.077333-35.566933 2.321067-10.581333 5.358933-19.456 9.045334-26.7264 1.297067-2.594133 2.389333-4.7104 3.1744-6.382933 0.512-1.024 1.297067-2.525867 2.389333-4.437334 0.170667-0.341333 0.682667-1.024 1.4336-2.116266q1.3312-1.774933 1.911467-2.730667a30.890667 30.890667 0 0 0 1.672533-3.140267 13.277867 13.277867 0 0 1 0.682667-1.365333 13.994667 13.994667 0 0 1 1.058133-1.058133 29.013333 29.013333 0 0 0 4.4032-5.358934q0.8192-1.262933 1.160533-1.6384a48.469333 48.469333 0 0 1 5.802667-5.9392 48.469333 48.469333 0 0 0 3.754667-3.652266 20.616533 20.616533 0 0 1 1.501866-1.501867l0.1024-0.068267 0.068267-0.1024q53.248-47.616 61.098667-56.558933l0.273066-0.273067 0.2048-0.3072q27.306667-37.205333 27.306667-92.706133 0-68.608-44.9536-108.8512z m-82.978133 420.522667q-18.466133-17.646933-44.8512-17.646934-25.770667 0-44.202667 17.6128-18.2272 17.373867-18.2272 44.475734c0 18.090667 6.075733 32.904533 18.2272 44.475733q18.432 17.646933 44.202667 17.646933 26.385067 0 44.202666-16.9984 18.5344-17.749333 18.5344-45.124266 0-26.180267-17.681066-44.270934l-0.1024-0.1024-0.1024-0.1024z" fill="#6E6E6E"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg
2
+ class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512 0C229.376 0 0 229.376 0 512c0 282.624 229.376 512 512 512 282.624 0 512-229.376 512-512 0-282.624-229.376-512-512-512z" fill="#6E6E6E" opacity=".15"></path><path d="M646.2464 284.4672q-43.349333-39.936-115.165867-39.936-80.9984 0-128.341333 47.240533-47.377067 46.250667-47.377067 130.116267v0.6144l0.068267 0.6144q6.382933 43.997867 47.4112 43.997867 40.994133 0 48.981333-43.690667l0.136534-0.750933v-0.785067q0-43.997867 15.2576-65.1264l0.1024-0.136533 0.068266-0.136534q16.896-25.3952 58.4704-25.3952 31.880533 0 49.3568 17.783467 17.408 18.909867 17.408 49.322667 0 23.722667-16.827733 44.8512l-8.328533 9.557333q-67.9936 62.088533-82.363734 92.4672c-7.304533 14.404267-11.946667 26.4192-13.994666 36.078933l-0.068267 0.273067-0.034133 0.273067c-2.628267 18.602667-0.7168 33.211733 5.802666 43.895466 6.826667 11.298133 18.295467 17.749333 34.269867 19.3536 31.812267 3.1744 49.493333-8.704 53.077333-35.566933 2.321067-10.581333 5.358933-19.456 9.045334-26.7264 1.297067-2.594133 2.389333-4.7104 3.1744-6.382933 0.512-1.024 1.297067-2.525867 2.389333-4.437334 0.170667-0.341333 0.682667-1.024 1.4336-2.116266q1.3312-1.774933 1.911467-2.730667a30.890667 30.890667 0 0 0 1.672533-3.140267 13.277867 13.277867 0 0 1 0.682667-1.365333 13.994667 13.994667 0 0 1 1.058133-1.058133 29.013333 29.013333 0 0 0 4.4032-5.358934q0.8192-1.262933 1.160533-1.6384a48.469333 48.469333 0 0 1 5.802667-5.9392 48.469333 48.469333 0 0 0 3.754667-3.652266 20.616533 20.616533 0 0 1 1.501866-1.501867l0.1024-0.068267 0.068267-0.1024q53.248-47.616 61.098667-56.558933l0.273066-0.273067 0.2048-0.3072q27.306667-37.205333 27.306667-92.706133 0-68.608-44.9536-108.8512z m-82.978133 420.522667q-18.466133-17.646933-44.8512-17.646934-25.770667 0-44.202667 17.6128-18.2272 17.373867-18.2272 44.475734c0 18.090667 6.075733 32.904533 18.2272 44.475733q18.432 17.646933 44.202667 17.646933 26.385067 0 44.202666-16.9984 18.5344-17.749333 18.5344-45.124266 0-26.180267-17.681066-44.270934l-0.1024-0.1024-0.1024-0.1024z" fill="#6E6E6E"></path></svg>