@hailin-zheng/editor-core 1.0.5 → 1.0.6
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/lib/doc-ruler.d.ts +51 -0
- package/{src/med_editor/doc-ruler.ts → lib/doc-ruler.js} +73 -100
- package/lib/doc-ruler.js.map +1 -0
- package/lib/framework/common-util.d.ts +63 -0
- package/lib/framework/common-util.js +178 -0
- package/lib/framework/common-util.js.map +1 -0
- package/lib/framework/document-change.d.ts +265 -0
- package/{src/med_editor/framework/document-change.ts → lib/framework/document-change.js} +257 -307
- package/lib/framework/document-change.js.map +1 -0
- package/lib/framework/document-combine.d.ts +24 -0
- package/{src/med_editor/framework/document-combine.ts → lib/framework/document-combine.js} +11 -15
- package/lib/framework/document-combine.js.map +1 -0
- package/lib/framework/document-comment.d.ts +46 -0
- package/{src/med_editor/framework/document-comment.ts → lib/framework/document-comment.js} +37 -57
- package/lib/framework/document-comment.js.map +1 -0
- package/lib/framework/document-context.d.ts +149 -0
- package/{src/med_editor/framework/document-context.ts → lib/framework/document-context.js} +101 -181
- package/lib/framework/document-context.js.map +1 -0
- package/lib/framework/document-eval-func.d.ts +18 -0
- package/{src/med_editor/framework/document-eval-func.ts → lib/framework/document-eval-func.js} +11 -16
- package/lib/framework/document-eval-func.js.map +1 -0
- package/lib/framework/document-event.d.ts +213 -0
- package/{src/med_editor/framework/document-event.ts → lib/framework/document-event.js} +216 -244
- package/lib/framework/document-event.js.map +1 -0
- package/lib/framework/document-history.d.ts +26 -0
- package/{src/med_editor/framework/document-history.ts → lib/framework/document-history.js} +14 -25
- package/lib/framework/document-history.js.map +1 -0
- package/lib/framework/document-images-loader.d.ts +16 -0
- package/{src/med_editor/framework/document-images-loader.ts → lib/framework/document-images-loader.js} +17 -25
- package/lib/framework/document-images-loader.js.map +1 -0
- package/lib/framework/document-input-cursor.d.ts +78 -0
- package/{src/med_editor/framework/document-input-cursor.ts → lib/framework/document-input-cursor.js} +71 -76
- package/lib/framework/document-input-cursor.js.map +1 -0
- package/lib/framework/document-paint.d.ts +34 -0
- package/{src/med_editor/framework/document-paint.ts → lib/framework/document-paint.js} +28 -35
- package/lib/framework/document-paint.js.map +1 -0
- package/lib/framework/document-print-offscreen.d.ts +38 -0
- package/{src/med_editor/framework/document-print-offscreen.ts → lib/framework/document-print-offscreen.js} +19 -25
- package/lib/framework/document-print-offscreen.js.map +1 -0
- package/lib/framework/document-print.d.ts +60 -0
- package/{src/med_editor/framework/document-print.ts → lib/framework/document-print.js} +41 -57
- package/lib/framework/document-print.js.map +1 -0
- package/lib/framework/document-segmenter.d.ts +2 -0
- package/lib/framework/document-segmenter.js +106 -0
- package/lib/framework/document-segmenter.js.map +1 -0
- package/lib/framework/document-selection.d.ts +89 -0
- package/{src/med_editor/framework/document-selection.ts → lib/framework/document-selection.js} +84 -117
- package/lib/framework/document-selection.js.map +1 -0
- package/lib/framework/document-template.d.ts +4 -0
- package/{src/med_editor/framework/document-template.ts → lib/framework/document-template.js} +3 -3
- package/lib/framework/document-template.js.map +1 -0
- package/lib/framework/document-textline-mode.d.ts +7 -0
- package/lib/framework/document-textline-mode.js +30 -0
- package/lib/framework/document-textline-mode.js.map +1 -0
- package/lib/framework/element-define.d.ts +319 -0
- package/{src/med_editor/framework/element-define.ts → lib/framework/element-define.js} +206 -301
- package/lib/framework/element-define.js.map +1 -0
- package/lib/framework/element-event-define.d.ts +99 -0
- package/lib/framework/element-event-define.js +108 -0
- package/lib/framework/element-event-define.js.map +1 -0
- package/lib/framework/element-measure.d.ts +97 -0
- package/{src/med_editor/framework/element-measure.ts → lib/framework/element-measure.js} +121 -143
- package/lib/framework/element-measure.js.map +1 -0
- package/lib/framework/element-paint.d.ts +42 -0
- package/{src/med_editor/framework/element-paint.ts → lib/framework/element-paint.js} +37 -43
- package/lib/framework/element-paint.js.map +1 -0
- package/lib/framework/element-props.d.ts +301 -0
- package/{src/med_editor/framework/element-props.ts → lib/framework/element-props.js} +202 -331
- package/lib/framework/element-props.js.map +1 -0
- package/lib/framework/element-reader.d.ts +19 -0
- package/{src/med_editor/framework/element-reader.ts → lib/framework/element-reader.js} +30 -38
- package/lib/framework/element-reader.js.map +1 -0
- package/lib/framework/element-render-cut.d.ts +55 -0
- package/{src/med_editor/framework/element-render-cut.ts → lib/framework/element-render-cut.js} +106 -113
- package/lib/framework/element-render-cut.js.map +1 -0
- package/lib/framework/element-serialize.d.ts +30 -0
- package/{src/med_editor/framework/element-serialize.ts → lib/framework/element-serialize.js} +25 -40
- package/lib/framework/element-serialize.js.map +1 -0
- package/lib/framework/element-util.d.ts +369 -0
- package/{src/med_editor/framework/element-util.ts → lib/framework/element-util.js} +216 -318
- package/lib/framework/element-util.js.map +1 -0
- package/lib/framework/impl/checkbox/checkbox-impl.d.ts +24 -0
- package/{src/med_editor/framework/impl/checkbox/checkbox-impl.ts → lib/framework/impl/checkbox/checkbox-impl.js} +18 -25
- package/lib/framework/impl/checkbox/checkbox-impl.js.map +1 -0
- package/lib/framework/impl/comments/comment-content-impl.d.ts +40 -0
- package/{src/med_editor/framework/impl/comments/comment-content-impl.ts → lib/framework/impl/comments/comment-content-impl.js} +31 -45
- package/lib/framework/impl/comments/comment-content-impl.js.map +1 -0
- package/lib/framework/impl/comments/comment-element-impl.d.ts +21 -0
- package/{src/med_editor/framework/impl/comments/comment-element-impl.ts → lib/framework/impl/comments/comment-element-impl.js} +18 -21
- package/lib/framework/impl/comments/comment-element-impl.js.map +1 -0
- package/lib/framework/impl/comments/comments-container-impl.d.ts +22 -0
- package/{src/med_editor/framework/impl/comments/comments-container-impl.ts → lib/framework/impl/comments/comments-container-impl.js} +15 -21
- package/lib/framework/impl/comments/comments-container-impl.js.map +1 -0
- package/lib/framework/impl/comments/comments-util.d.ts +12 -0
- package/{src/med_editor/framework/impl/comments/comments-util.ts → lib/framework/impl/comments/comments-util.js} +17 -34
- package/lib/framework/impl/comments/comments-util.js.map +1 -0
- package/lib/framework/impl/comments/validate-msg-impl.d.ts +21 -0
- package/{src/med_editor/framework/impl/comments/validate-msg-impl.ts → lib/framework/impl/comments/validate-msg-impl.js} +15 -26
- package/lib/framework/impl/comments/validate-msg-impl.js.map +1 -0
- package/lib/framework/impl/data-element/data-decorate-impl.d.ts +30 -0
- package/{src/med_editor/framework/impl/data-element/data-decorate-impl.ts → lib/framework/impl/data-element/data-decorate-impl.js} +21 -25
- package/lib/framework/impl/data-element/data-decorate-impl.js.map +1 -0
- package/lib/framework/impl/data-element/data-element-barcode.d.ts +31 -0
- package/{src/med_editor/framework/impl/data-element/data-element-barcode.ts → lib/framework/impl/data-element/data-element-barcode.js} +27 -39
- package/lib/framework/impl/data-element/data-element-barcode.js.map +1 -0
- package/lib/framework/impl/data-element/data-element-base-impl.d.ts +68 -0
- package/{src/med_editor/framework/impl/data-element/data-element-base-impl.ts → lib/framework/impl/data-element/data-element-base-impl.js} +44 -73
- package/lib/framework/impl/data-element/data-element-base-impl.js.map +1 -0
- package/lib/framework/impl/data-element/data-element-check-impl.d.ts +35 -0
- package/{src/med_editor/framework/impl/data-element/data-element-check-impl.ts → lib/framework/impl/data-element/data-element-check-impl.js} +33 -46
- package/lib/framework/impl/data-element/data-element-check-impl.js.map +1 -0
- package/lib/framework/impl/data-element/data-element-date-impl.d.ts +23 -0
- package/{src/med_editor/framework/impl/data-element/data-element-date-impl.ts → lib/framework/impl/data-element/data-element-date-impl.js} +22 -39
- package/lib/framework/impl/data-element/data-element-date-impl.js.map +1 -0
- package/lib/framework/impl/data-element/data-element-group-impl.d.ts +23 -0
- package/{src/med_editor/framework/impl/data-element/data-element-group-impl.ts → lib/framework/impl/data-element/data-element-group-impl.js} +29 -49
- package/lib/framework/impl/data-element/data-element-group-impl.js.map +1 -0
- package/lib/framework/impl/data-element/data-element-image-impl.d.ts +30 -0
- package/{src/med_editor/framework/impl/data-element/data-element-image-impl.ts → lib/framework/impl/data-element/data-element-image-impl.js} +26 -36
- package/lib/framework/impl/data-element/data-element-image-impl.js.map +1 -0
- package/lib/framework/impl/data-element/data-element-list-impl.d.ts +22 -0
- package/{src/med_editor/framework/impl/data-element/data-element-list-impl.ts → lib/framework/impl/data-element/data-element-list-impl.js} +30 -41
- package/lib/framework/impl/data-element/data-element-list-impl.js.map +1 -0
- package/lib/framework/impl/data-element/data-element-text-impl.d.ts +23 -0
- package/{src/med_editor/framework/impl/data-element/data-element-text-impl.ts → lib/framework/impl/data-element/data-element-text-impl.js} +20 -34
- package/lib/framework/impl/data-element/data-element-text-impl.js.map +1 -0
- package/lib/framework/impl/decorate/fill-null-space-imple.d.ts +21 -0
- package/{src/med_editor/framework/impl/decorate/fill-null-space-imple.ts → lib/framework/impl/decorate/fill-null-space-imple.js} +10 -15
- package/lib/framework/impl/decorate/fill-null-space-imple.js.map +1 -0
- package/lib/framework/impl/document/doc-body-impl.d.ts +27 -0
- package/{src/med_editor/framework/impl/document/doc-body-impl.ts → lib/framework/impl/document/doc-body-impl.js} +15 -31
- package/lib/framework/impl/document/doc-body-impl.js.map +1 -0
- package/lib/framework/impl/document/doc-body-part-impl.d.ts +30 -0
- package/{src/med_editor/framework/impl/document/doc-body-part-impl.ts → lib/framework/impl/document/doc-body-part-impl.js} +16 -26
- package/lib/framework/impl/document/doc-body-part-impl.js.map +1 -0
- package/lib/framework/impl/document/doc-container-impl.d.ts +16 -0
- package/lib/framework/impl/document/doc-container-impl.js +21 -0
- package/lib/framework/impl/document/doc-container-impl.js.map +1 -0
- package/lib/framework/impl/document/doc-footer-impl.d.ts +26 -0
- package/{src/med_editor/framework/impl/document/doc-footer-impl.ts → lib/framework/impl/document/doc-footer-impl.js} +18 -29
- package/lib/framework/impl/document/doc-footer-impl.js.map +1 -0
- package/lib/framework/impl/document/doc-header-impl.d.ts +26 -0
- package/{src/med_editor/framework/impl/document/doc-header-impl.ts → lib/framework/impl/document/doc-header-impl.js} +16 -33
- package/lib/framework/impl/document/doc-header-impl.js.map +1 -0
- package/lib/framework/impl/document/doc-impl.d.ts +61 -0
- package/{src/med_editor/framework/impl/document/doc-impl.ts → lib/framework/impl/document/doc-impl.js} +42 -59
- package/lib/framework/impl/document/doc-impl.js.map +1 -0
- package/lib/framework/impl/media-formula/menstrual-history.d.ts +35 -0
- package/{src/med_editor/framework/impl/media-formula/menstrual-history.ts → lib/framework/impl/media-formula/menstrual-history.js} +35 -57
- package/lib/framework/impl/media-formula/menstrual-history.js.map +1 -0
- package/lib/framework/impl/paragraph/p-impl.d.ts +45 -0
- package/{src/med_editor/framework/impl/paragraph/p-impl.ts → lib/framework/impl/paragraph/p-impl.js} +28 -62
- package/lib/framework/impl/paragraph/p-impl.js.map +1 -0
- package/lib/framework/impl/picture/image-impl.d.ts +31 -0
- package/{src/med_editor/framework/impl/picture/image-impl.ts → lib/framework/impl/picture/image-impl.js} +23 -35
- package/lib/framework/impl/picture/image-impl.js.map +1 -0
- package/lib/framework/impl/radio/radio-impl.d.ts +22 -0
- package/{src/med_editor/framework/impl/radio/radio-impl.ts → lib/framework/impl/radio/radio-impl.js} +19 -26
- package/lib/framework/impl/radio/radio-impl.js.map +1 -0
- package/lib/framework/impl/symbol/br-symbol-impl.d.ts +22 -0
- package/{src/med_editor/framework/impl/symbol/br-symbol-impl.ts → lib/framework/impl/symbol/br-symbol-impl.js} +14 -20
- package/lib/framework/impl/symbol/br-symbol-impl.js.map +1 -0
- package/lib/framework/impl/symbol/p-symbol-impl.d.ts +19 -0
- package/{src/med_editor/framework/impl/symbol/p-symbol-impl.ts → lib/framework/impl/symbol/p-symbol-impl.js} +11 -14
- package/lib/framework/impl/symbol/p-symbol-impl.js.map +1 -0
- package/lib/framework/impl/table/table-cell-impl.d.ts +37 -0
- package/{src/med_editor/framework/impl/table/table-cell-impl.ts → lib/framework/impl/table/table-cell-impl.js} +28 -39
- package/lib/framework/impl/table/table-cell-impl.js.map +1 -0
- package/lib/framework/impl/table/table-impl.d.ts +55 -0
- package/{src/med_editor/framework/impl/table/table-impl.ts → lib/framework/impl/table/table-impl.js} +82 -120
- package/lib/framework/impl/table/table-impl.js.map +1 -0
- package/lib/framework/impl/table/table-row-impl.d.ts +26 -0
- package/{src/med_editor/framework/impl/table/table-row-impl.ts → lib/framework/impl/table/table-row-impl.js} +16 -24
- package/lib/framework/impl/table/table-row-impl.js.map +1 -0
- package/lib/framework/impl/table/table-split-cell-patch.d.ts +20 -0
- package/{src/med_editor/framework/impl/table/table-split-cell-patch.ts → lib/framework/impl/table/table-split-cell-patch.js} +22 -31
- package/lib/framework/impl/table/table-split-cell-patch.js.map +1 -0
- package/lib/framework/impl/table/table-split-cell.d.ts +90 -0
- package/{src/med_editor/framework/impl/table/table-split-cell.ts → lib/framework/impl/table/table-split-cell.js} +94 -105
- package/lib/framework/impl/table/table-split-cell.js.map +1 -0
- package/lib/framework/impl/table/table-util.d.ts +150 -0
- package/{src/med_editor/framework/impl/table/table-util.ts → lib/framework/impl/table/table-util.js} +157 -195
- package/lib/framework/impl/table/table-util.js.map +1 -0
- package/lib/framework/impl/text/text-impl.d.ts +32 -0
- package/{src/med_editor/framework/impl/text/text-impl.ts → lib/framework/impl/text/text-impl.js} +32 -47
- package/lib/framework/impl/text/text-impl.js.map +1 -0
- package/lib/framework/impl/text/track-run-impl.d.ts +27 -0
- package/{src/med_editor/framework/impl/text/track-run-impl.ts → lib/framework/impl/text/track-run-impl.js} +28 -51
- package/lib/framework/impl/text/track-run-impl.js.map +1 -0
- package/lib/framework/notify.d.ts +13 -0
- package/{src/med_editor/framework/notify.ts → lib/framework/notify.js} +36 -50
- package/lib/framework/notify.js.map +1 -0
- package/lib/framework/range-util.d.ts +40 -0
- package/{src/med_editor/framework/range-util.ts → lib/framework/range-util.js} +71 -80
- package/lib/framework/range-util.js.map +1 -0
- package/lib/framework/render-context.d.ts +91 -0
- package/{src/med_editor/framework/render-context.ts → lib/framework/render-context.js} +64 -111
- package/lib/framework/render-context.js.map +1 -0
- package/lib/framework/render-define.d.ts +109 -0
- package/{src/med_editor/framework/render-define.ts → lib/framework/render-define.js} +61 -90
- package/lib/framework/render-define.js.map +1 -0
- package/lib/framework/selection-overlays.d.ts +30 -0
- package/{src/med_editor/framework/selection-overlays.ts → lib/framework/selection-overlays.js} +16 -26
- package/lib/framework/selection-overlays.js.map +1 -0
- package/lib/texteditor.d.ts +318 -0
- package/{src/med_editor/texteditor.ts → lib/texteditor.js} +189 -287
- package/lib/texteditor.js.map +1 -0
- package/lib/util/subject.d.ts +34 -0
- package/lib/util/subject.js +88 -0
- package/lib/util/subject.js.map +1 -0
- package/lib/util/table-bind.d.ts +5 -0
- package/{src/med_editor/util/table-bind.ts → lib/util/table-bind.js} +2 -2
- package/lib/util/table-bind.js.map +1 -0
- package/package.json +6 -2
- package/src/med_editor/framework/common-util.ts +0 -200
- package/src/med_editor/framework/document-segmenter.ts +0 -211
- package/src/med_editor/framework/document-textline-mode.ts +0 -34
- package/src/med_editor/framework/element-event-define.ts +0 -142
- package/src/med_editor/framework/impl/document/doc-container-impl.ts +0 -24
- package/src/med_editor/util/subject.ts +0 -118
- package/src/med_editor//345/205/245/351/231/242/350/256/260/345/275/225.json +0 -3573
- package/src/med_editor//345/205/245/351/231/242/350/256/260/345/275/225/346/265/213/350/257/225.json +0 -3573
- package/src/med_editor//345/205/245/351/231/242/350/256/260/345/275/225/346/265/213/350/257/225bug.json +0 -315
- package/src/med_editor//345/205/245/351/231/242/350/256/260/345/275/225/346/265/213/350/257/225/346/211/271/346/263/250.json +0 -122
- package/src/med_editor//345/205/245/351/231/242/350/256/260/345/275/225/346/265/213/350/257/225/346/226/207/346/241/243/351/252/214/350/257/201.json +0 -3599
- package/src/med_editor//345/205/245/351/231/242/350/256/260/345/275/225/346/265/213/350/257/225/351/225/277/346/226/207/346/234/254.json +0 -24586
- package/src/med_editor//345/220/210/345/271/266/347/227/205/347/250/213/345/275/225.json +0 -2874
- package/src/med_editor//346/211/213/346/234/257/350/256/260/345/275/225.json +0 -341
- package/src/med_editor//346/231/256/351/200/232doc/347/261/273/346/226/207/346/241/243.json +0 -2201
- package/src/med_editor//346/243/200/351/252/214/347/224/263/350/257/267/345/215/225.json +0 -1069
- package/src/med_editor//347/227/205/347/250/213/345/275/225//345/206/205/351/225/234/344/270/213/346/262/273/347/226/227/350/256/260/345/275/225.json +0 -125
- package/src/med_editor//347/227/205/347/250/213/345/275/225//345/220/210/345/271/266/347/227/205/347/250/213/345/275/225/346/250/241/346/235/277.json +0 -86
- package/src/med_editor//347/227/205/347/250/213/345/275/225//346/227/245/345/270/270/347/227/205/347/250/213/350/256/260/345/275/225.json +0 -115
- package/src/med_editor//347/227/205/347/250/213/345/275/225//346/237/245/346/210/277/350/256/260/345/275/2251.json +0 -108
- package/src/med_editor//347/227/205/347/250/213/345/275/225//351/246/226/346/254/241/344/270/212/347/272/247/345/214/273/345/270/210/346/237/245/346/210/277/350/256/260/345/275/225.json +0 -272
- package/src/med_editor//351/225/277/346/234/237/345/214/273/345/230/261/345/215/225.json +0 -1070
- package/tsconfig.json +0 -25
- package/webpack.config.js +0 -46
@@ -1,1069 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"type": "doc",
|
3
|
-
"props": {
|
4
|
-
"width": 210,
|
5
|
-
"height": 297,
|
6
|
-
"padding": {
|
7
|
-
"top": 5,
|
8
|
-
"bottom": 10,
|
9
|
-
"left": 10,
|
10
|
-
"right": 10
|
11
|
-
}
|
12
|
-
},
|
13
|
-
"children": [
|
14
|
-
{
|
15
|
-
"type": "header",
|
16
|
-
"props": {},
|
17
|
-
"children": [
|
18
|
-
{
|
19
|
-
"type": "tb",
|
20
|
-
"props": {
|
21
|
-
"cols": [
|
22
|
-
{
|
23
|
-
"width": 80
|
24
|
-
},
|
25
|
-
{
|
26
|
-
"width": "1"
|
27
|
-
},
|
28
|
-
{
|
29
|
-
"width": 80
|
30
|
-
}
|
31
|
-
],
|
32
|
-
"border": "none"
|
33
|
-
},
|
34
|
-
"children": [
|
35
|
-
{
|
36
|
-
"type": "tr",
|
37
|
-
"props": {},
|
38
|
-
"children": [
|
39
|
-
{
|
40
|
-
"type": "tbc",
|
41
|
-
"props": {},
|
42
|
-
"children": [
|
43
|
-
{
|
44
|
-
"type": "p",
|
45
|
-
"props": {},
|
46
|
-
"children": [
|
47
|
-
{
|
48
|
-
"type": "img",
|
49
|
-
"props": {
|
50
|
-
"width": 80,
|
51
|
-
"height": 80,
|
52
|
-
"border": "none",
|
53
|
-
"src": "/app.png"
|
54
|
-
}
|
55
|
-
}
|
56
|
-
]
|
57
|
-
}
|
58
|
-
]
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"type": "tbc",
|
62
|
-
"props": {},
|
63
|
-
"children": [
|
64
|
-
{
|
65
|
-
"type": "p",
|
66
|
-
"props": {
|
67
|
-
"textAlign": "center"
|
68
|
-
},
|
69
|
-
"children": [
|
70
|
-
{
|
71
|
-
"type": "text",
|
72
|
-
"props": {
|
73
|
-
"fontSize": 26
|
74
|
-
},
|
75
|
-
"content": "XXX医院"
|
76
|
-
}
|
77
|
-
]
|
78
|
-
},
|
79
|
-
{
|
80
|
-
"type": "p",
|
81
|
-
"props": {
|
82
|
-
"textAlign": "center"
|
83
|
-
},
|
84
|
-
"children": [
|
85
|
-
{
|
86
|
-
"type": "text",
|
87
|
-
"props": {
|
88
|
-
"fontSize": 26
|
89
|
-
},
|
90
|
-
"content": "临床检验化验申请单"
|
91
|
-
}
|
92
|
-
]
|
93
|
-
}
|
94
|
-
]
|
95
|
-
},
|
96
|
-
{
|
97
|
-
"type": "tbc",
|
98
|
-
"props": {}
|
99
|
-
}
|
100
|
-
]
|
101
|
-
}
|
102
|
-
]
|
103
|
-
}
|
104
|
-
]
|
105
|
-
},
|
106
|
-
{
|
107
|
-
"type": "body",
|
108
|
-
"props": {},
|
109
|
-
"children": [
|
110
|
-
{
|
111
|
-
"type": "tb",
|
112
|
-
"props": {
|
113
|
-
"cols": [
|
114
|
-
{
|
115
|
-
"width": 80
|
116
|
-
},
|
117
|
-
{
|
118
|
-
"width": 119
|
119
|
-
},
|
120
|
-
{
|
121
|
-
"width": 119
|
122
|
-
},
|
123
|
-
{
|
124
|
-
"width": 119
|
125
|
-
},
|
126
|
-
{
|
127
|
-
"width": 119
|
128
|
-
},
|
129
|
-
{
|
130
|
-
"width": 163
|
131
|
-
}
|
132
|
-
]
|
133
|
-
},
|
134
|
-
"children": [
|
135
|
-
{
|
136
|
-
"type": "tr",
|
137
|
-
"props": {},
|
138
|
-
"children": [
|
139
|
-
{
|
140
|
-
"type": "tbc",
|
141
|
-
"props": {},
|
142
|
-
"children": [
|
143
|
-
{
|
144
|
-
"type": "p",
|
145
|
-
"props": {},
|
146
|
-
"children": [
|
147
|
-
{
|
148
|
-
"type": "text",
|
149
|
-
"props": {
|
150
|
-
"fontName": "宋体",
|
151
|
-
"fontSize": 18
|
152
|
-
},
|
153
|
-
"content": "姓名:"
|
154
|
-
}
|
155
|
-
]
|
156
|
-
}
|
157
|
-
]
|
158
|
-
},
|
159
|
-
{
|
160
|
-
"type": "tbc",
|
161
|
-
"props": {},
|
162
|
-
"children": [
|
163
|
-
{
|
164
|
-
"type": "p",
|
165
|
-
"props": {},
|
166
|
-
"children": [
|
167
|
-
{
|
168
|
-
"type": "data-ele",
|
169
|
-
"props": {
|
170
|
-
"type": "text",
|
171
|
-
"valueTextProps": {
|
172
|
-
"color": "black",
|
173
|
-
"fontName": "宋体",
|
174
|
-
"fontSize": 18
|
175
|
-
},
|
176
|
-
"nullText": "姓名",
|
177
|
-
"nullTextProps": {
|
178
|
-
"color": "blue",
|
179
|
-
"fontName": "宋体",
|
180
|
-
"fontSize": 18
|
181
|
-
}
|
182
|
-
},
|
183
|
-
"children": [
|
184
|
-
{
|
185
|
-
"type": "text",
|
186
|
-
"props": {
|
187
|
-
"color": "blue",
|
188
|
-
"fontName": "宋体",
|
189
|
-
"fontSize": 18
|
190
|
-
},
|
191
|
-
"content": "姓名"
|
192
|
-
}
|
193
|
-
]
|
194
|
-
}
|
195
|
-
]
|
196
|
-
}
|
197
|
-
]
|
198
|
-
},
|
199
|
-
{
|
200
|
-
"type": "tbc",
|
201
|
-
"props": {},
|
202
|
-
"children": [
|
203
|
-
{
|
204
|
-
"type": "p",
|
205
|
-
"props": {},
|
206
|
-
"children": [
|
207
|
-
{
|
208
|
-
"type": "text",
|
209
|
-
"props": {
|
210
|
-
"fontName": "宋体",
|
211
|
-
"fontSize": 18
|
212
|
-
},
|
213
|
-
"content": "性别:"
|
214
|
-
},
|
215
|
-
{
|
216
|
-
"type": "data-ele",
|
217
|
-
"props": {
|
218
|
-
"type": "text",
|
219
|
-
"valueTextProps": {
|
220
|
-
"color": "black",
|
221
|
-
"fontName": "宋体",
|
222
|
-
"fontSize": 18
|
223
|
-
},
|
224
|
-
"nullText": "性别",
|
225
|
-
"nullTextProps": {
|
226
|
-
"color": "blue",
|
227
|
-
"fontName": "宋体",
|
228
|
-
"fontSize": 18
|
229
|
-
}
|
230
|
-
},
|
231
|
-
"children": [
|
232
|
-
{
|
233
|
-
"type": "text",
|
234
|
-
"props": {
|
235
|
-
"color": "blue",
|
236
|
-
"fontName": "宋体",
|
237
|
-
"fontSize": 18
|
238
|
-
},
|
239
|
-
"content": "性别"
|
240
|
-
}
|
241
|
-
]
|
242
|
-
}
|
243
|
-
]
|
244
|
-
}
|
245
|
-
]
|
246
|
-
},
|
247
|
-
{
|
248
|
-
"type": "tbc",
|
249
|
-
"props": {},
|
250
|
-
"children": [
|
251
|
-
{
|
252
|
-
"type": "p",
|
253
|
-
"props": {},
|
254
|
-
"children": [
|
255
|
-
{
|
256
|
-
"type": "text",
|
257
|
-
"props": {
|
258
|
-
"fontName": "宋体",
|
259
|
-
"fontSize": 18
|
260
|
-
},
|
261
|
-
"content": "年龄:"
|
262
|
-
},
|
263
|
-
{
|
264
|
-
"type": "data-ele",
|
265
|
-
"props": {
|
266
|
-
"type": "text",
|
267
|
-
"valueTextProps": {
|
268
|
-
"color": "black",
|
269
|
-
"fontName": "宋体",
|
270
|
-
"fontSize": 18
|
271
|
-
},
|
272
|
-
"nullText": "年龄",
|
273
|
-
"nullTextProps": {
|
274
|
-
"color": "blue",
|
275
|
-
"fontName": "宋体",
|
276
|
-
"fontSize": 18
|
277
|
-
}
|
278
|
-
},
|
279
|
-
"children": [
|
280
|
-
{
|
281
|
-
"type": "text",
|
282
|
-
"props": {
|
283
|
-
"color": "blue",
|
284
|
-
"fontName": "宋体",
|
285
|
-
"fontSize": 18
|
286
|
-
},
|
287
|
-
"content": "年龄"
|
288
|
-
}
|
289
|
-
]
|
290
|
-
}
|
291
|
-
]
|
292
|
-
}
|
293
|
-
]
|
294
|
-
},
|
295
|
-
{
|
296
|
-
"type": "tbc",
|
297
|
-
"props": {},
|
298
|
-
"children": [
|
299
|
-
{
|
300
|
-
"type": "p",
|
301
|
-
"props": {},
|
302
|
-
"children": [
|
303
|
-
{
|
304
|
-
"type": "text",
|
305
|
-
"props": {
|
306
|
-
"fontName": "宋体",
|
307
|
-
"fontSize": 18
|
308
|
-
},
|
309
|
-
"content": "科别:"
|
310
|
-
},
|
311
|
-
{
|
312
|
-
"type": "data-ele",
|
313
|
-
"props": {
|
314
|
-
"type": "text",
|
315
|
-
"valueTextProps": {
|
316
|
-
"color": "black",
|
317
|
-
"fontName": "宋体",
|
318
|
-
"fontSize": 18
|
319
|
-
},
|
320
|
-
"nullText": "科别",
|
321
|
-
"nullTextProps": {
|
322
|
-
"color": "blue",
|
323
|
-
"fontName": "宋体",
|
324
|
-
"fontSize": 18
|
325
|
-
}
|
326
|
-
},
|
327
|
-
"children": [
|
328
|
-
{
|
329
|
-
"type": "text",
|
330
|
-
"props": {
|
331
|
-
"color": "blue",
|
332
|
-
"fontName": "宋体",
|
333
|
-
"fontSize": 18
|
334
|
-
},
|
335
|
-
"content": "科别"
|
336
|
-
}
|
337
|
-
]
|
338
|
-
}
|
339
|
-
]
|
340
|
-
}
|
341
|
-
]
|
342
|
-
},
|
343
|
-
{
|
344
|
-
"type": "tbc",
|
345
|
-
"props": {},
|
346
|
-
"children": [
|
347
|
-
{
|
348
|
-
"type": "p",
|
349
|
-
"props": {},
|
350
|
-
"children": [
|
351
|
-
{
|
352
|
-
"type": "text",
|
353
|
-
"props": {
|
354
|
-
"fontName": "宋体",
|
355
|
-
"fontSize": 18
|
356
|
-
},
|
357
|
-
"content": "床号:"
|
358
|
-
},
|
359
|
-
{
|
360
|
-
"type": "data-ele",
|
361
|
-
"props": {
|
362
|
-
"type": "text",
|
363
|
-
"valueTextProps": {
|
364
|
-
"color": "black",
|
365
|
-
"fontName": "宋体",
|
366
|
-
"fontSize": 18
|
367
|
-
},
|
368
|
-
"nullText": "床号",
|
369
|
-
"nullTextProps": {
|
370
|
-
"color": "blue",
|
371
|
-
"fontName": "宋体",
|
372
|
-
"fontSize": 18
|
373
|
-
}
|
374
|
-
},
|
375
|
-
"children": [
|
376
|
-
{
|
377
|
-
"type": "text",
|
378
|
-
"props": {
|
379
|
-
"color": "blue",
|
380
|
-
"fontName": "宋体",
|
381
|
-
"fontSize": 18
|
382
|
-
},
|
383
|
-
"content": "床号"
|
384
|
-
}
|
385
|
-
]
|
386
|
-
}
|
387
|
-
]
|
388
|
-
}
|
389
|
-
]
|
390
|
-
}
|
391
|
-
]
|
392
|
-
},
|
393
|
-
{
|
394
|
-
"type": "tr",
|
395
|
-
"props": {},
|
396
|
-
"children": [
|
397
|
-
{
|
398
|
-
"type": "tbc",
|
399
|
-
"props": {
|
400
|
-
"hMerge": "restart"
|
401
|
-
},
|
402
|
-
"children": [
|
403
|
-
{
|
404
|
-
"type": "p",
|
405
|
-
"props": {},
|
406
|
-
"children": [
|
407
|
-
{
|
408
|
-
"type": "text",
|
409
|
-
"props": {
|
410
|
-
"fontName": "宋体",
|
411
|
-
"fontSize": 18
|
412
|
-
},
|
413
|
-
"content": "简要病史及体征:"
|
414
|
-
},
|
415
|
-
{
|
416
|
-
"type": "data-ele",
|
417
|
-
"props": {
|
418
|
-
"type": "text",
|
419
|
-
"valueTextProps": {
|
420
|
-
"color": "black",
|
421
|
-
"fontName": "宋体",
|
422
|
-
"fontSize": 18
|
423
|
-
},
|
424
|
-
"nullText": "简要病史",
|
425
|
-
"nullTextProps": {
|
426
|
-
"color": "blue",
|
427
|
-
"fontName": "宋体",
|
428
|
-
"fontSize": 18
|
429
|
-
}
|
430
|
-
},
|
431
|
-
"children": [
|
432
|
-
{
|
433
|
-
"type": "text",
|
434
|
-
"props": {
|
435
|
-
"color": "blue",
|
436
|
-
"fontName": "宋体",
|
437
|
-
"fontSize": 18
|
438
|
-
},
|
439
|
-
"content": "简要病史"
|
440
|
-
}
|
441
|
-
]
|
442
|
-
}
|
443
|
-
]
|
444
|
-
}
|
445
|
-
]
|
446
|
-
},
|
447
|
-
{
|
448
|
-
"type": "tbc",
|
449
|
-
"props": {
|
450
|
-
"hMerge": "continue"
|
451
|
-
},
|
452
|
-
"children": []
|
453
|
-
},
|
454
|
-
{
|
455
|
-
"type": "tbc",
|
456
|
-
"props": {
|
457
|
-
"hMerge": "continue"
|
458
|
-
},
|
459
|
-
"children": []
|
460
|
-
},
|
461
|
-
{
|
462
|
-
"type": "tbc",
|
463
|
-
"props": {
|
464
|
-
"hMerge": "continue"
|
465
|
-
},
|
466
|
-
"children": []
|
467
|
-
},
|
468
|
-
{
|
469
|
-
"type": "tbc",
|
470
|
-
"props": {
|
471
|
-
"hMerge": "continue"
|
472
|
-
},
|
473
|
-
"children": []
|
474
|
-
},
|
475
|
-
{
|
476
|
-
"type": "tbc",
|
477
|
-
"props": {
|
478
|
-
"hMerge": "continue"
|
479
|
-
},
|
480
|
-
"children": []
|
481
|
-
}
|
482
|
-
]
|
483
|
-
},
|
484
|
-
{
|
485
|
-
"type": "tr",
|
486
|
-
"props": {},
|
487
|
-
"children": [
|
488
|
-
{
|
489
|
-
"type": "tbc",
|
490
|
-
"props": {
|
491
|
-
"hMerge": "restart"
|
492
|
-
},
|
493
|
-
"children": [
|
494
|
-
{
|
495
|
-
"type": "p",
|
496
|
-
"props": {},
|
497
|
-
"children": [
|
498
|
-
{
|
499
|
-
"type": "text",
|
500
|
-
"props": {
|
501
|
-
"fontName": "宋体",
|
502
|
-
"fontSize": 18
|
503
|
-
},
|
504
|
-
"content": "临床诊断:"
|
505
|
-
},
|
506
|
-
{
|
507
|
-
"type": "data-ele",
|
508
|
-
"props": {
|
509
|
-
"type": "text",
|
510
|
-
"valueTextProps": {
|
511
|
-
"color": "black",
|
512
|
-
"fontName": "宋体",
|
513
|
-
"fontSize": 18
|
514
|
-
},
|
515
|
-
"nullText": "诊断",
|
516
|
-
"nullTextProps": {
|
517
|
-
"color": "blue",
|
518
|
-
"fontName": "宋体",
|
519
|
-
"fontSize": 18
|
520
|
-
}
|
521
|
-
},
|
522
|
-
"children": [
|
523
|
-
{
|
524
|
-
"type": "text",
|
525
|
-
"props": {
|
526
|
-
"color": "blue",
|
527
|
-
"fontName": "宋体",
|
528
|
-
"fontSize": 18
|
529
|
-
},
|
530
|
-
"content": "诊断"
|
531
|
-
}
|
532
|
-
]
|
533
|
-
}
|
534
|
-
]
|
535
|
-
}
|
536
|
-
]
|
537
|
-
},
|
538
|
-
{
|
539
|
-
"type": "tbc",
|
540
|
-
"props": {
|
541
|
-
"hMerge": "continue"
|
542
|
-
},
|
543
|
-
"children": []
|
544
|
-
},
|
545
|
-
{
|
546
|
-
"type": "tbc",
|
547
|
-
"props": {
|
548
|
-
"hMerge": "continue"
|
549
|
-
},
|
550
|
-
"children": []
|
551
|
-
},
|
552
|
-
{
|
553
|
-
"type": "tbc",
|
554
|
-
"props": {
|
555
|
-
"hMerge": "continue"
|
556
|
-
},
|
557
|
-
"children": []
|
558
|
-
},
|
559
|
-
{
|
560
|
-
"type": "tbc",
|
561
|
-
"props": {
|
562
|
-
"hMerge": "continue"
|
563
|
-
},
|
564
|
-
"children": []
|
565
|
-
},
|
566
|
-
{
|
567
|
-
"type": "tbc",
|
568
|
-
"props": {
|
569
|
-
"hMerge": "continue"
|
570
|
-
},
|
571
|
-
"children": []
|
572
|
-
}
|
573
|
-
]
|
574
|
-
},
|
575
|
-
{
|
576
|
-
"type": "tr",
|
577
|
-
"props": {},
|
578
|
-
"children": [
|
579
|
-
{
|
580
|
-
"type": "tbc",
|
581
|
-
"props": {
|
582
|
-
"hMerge": "restart"
|
583
|
-
},
|
584
|
-
"children": [
|
585
|
-
{
|
586
|
-
"type": "p",
|
587
|
-
"props": {},
|
588
|
-
"children": [
|
589
|
-
{
|
590
|
-
"type": "text",
|
591
|
-
"props": {
|
592
|
-
"fontName": "宋体",
|
593
|
-
"fontSize": 18
|
594
|
-
},
|
595
|
-
"content": "申请检查项目:"
|
596
|
-
}
|
597
|
-
]
|
598
|
-
}
|
599
|
-
]
|
600
|
-
},
|
601
|
-
{
|
602
|
-
"type": "tbc",
|
603
|
-
"props": {
|
604
|
-
"hMerge": "continue"
|
605
|
-
},
|
606
|
-
"children": []
|
607
|
-
},
|
608
|
-
{
|
609
|
-
"type": "tbc",
|
610
|
-
"props": {
|
611
|
-
"hMerge": "continue"
|
612
|
-
},
|
613
|
-
"children": []
|
614
|
-
},
|
615
|
-
{
|
616
|
-
"type": "tbc",
|
617
|
-
"props": {
|
618
|
-
"hMerge": "continue"
|
619
|
-
},
|
620
|
-
"children": []
|
621
|
-
},
|
622
|
-
{
|
623
|
-
"type": "tbc",
|
624
|
-
"props": {
|
625
|
-
"hMerge": "continue"
|
626
|
-
},
|
627
|
-
"children": []
|
628
|
-
},
|
629
|
-
{
|
630
|
-
"type": "tbc",
|
631
|
-
"props": {
|
632
|
-
"hMerge": "continue"
|
633
|
-
},
|
634
|
-
"children": []
|
635
|
-
}
|
636
|
-
]
|
637
|
-
},
|
638
|
-
{
|
639
|
-
"type": "tr",
|
640
|
-
"props": {},
|
641
|
-
"children": [
|
642
|
-
{
|
643
|
-
"type": "tbc",
|
644
|
-
"props": {
|
645
|
-
"hMerge": "restart"
|
646
|
-
},
|
647
|
-
"children": [
|
648
|
-
{
|
649
|
-
"type": "p",
|
650
|
-
"props": {},
|
651
|
-
"children": [
|
652
|
-
{
|
653
|
-
"type": "data-ele",
|
654
|
-
"props": {
|
655
|
-
"type": "text",
|
656
|
-
"valueTextProps": {
|
657
|
-
"color": "black",
|
658
|
-
"fontName": "宋体",
|
659
|
-
"fontSize": 18
|
660
|
-
},
|
661
|
-
"nullText": "检查项目",
|
662
|
-
"nullTextProps": {
|
663
|
-
"color": "blue",
|
664
|
-
"fontName": "宋体",
|
665
|
-
"fontSize": 18
|
666
|
-
}
|
667
|
-
},
|
668
|
-
"children": [
|
669
|
-
{
|
670
|
-
"type": "text",
|
671
|
-
"props": {
|
672
|
-
"color": "blue",
|
673
|
-
"fontName": "宋体",
|
674
|
-
"fontSize": 18
|
675
|
-
},
|
676
|
-
"content": "检查项目"
|
677
|
-
}
|
678
|
-
]
|
679
|
-
}
|
680
|
-
]
|
681
|
-
}
|
682
|
-
]
|
683
|
-
},
|
684
|
-
{
|
685
|
-
"type": "tbc",
|
686
|
-
"props": {
|
687
|
-
"hMerge": "continue"
|
688
|
-
},
|
689
|
-
"children": []
|
690
|
-
},
|
691
|
-
{
|
692
|
-
"type": "tbc",
|
693
|
-
"props": {
|
694
|
-
"hMerge": "continue"
|
695
|
-
},
|
696
|
-
"children": []
|
697
|
-
},
|
698
|
-
{
|
699
|
-
"type": "tbc",
|
700
|
-
"props": {
|
701
|
-
"hMerge": "continue"
|
702
|
-
},
|
703
|
-
"children": []
|
704
|
-
},
|
705
|
-
{
|
706
|
-
"type": "tbc",
|
707
|
-
"props": {
|
708
|
-
"hMerge": "continue"
|
709
|
-
},
|
710
|
-
"children": []
|
711
|
-
},
|
712
|
-
{
|
713
|
-
"type": "tbc",
|
714
|
-
"props": {
|
715
|
-
"hMerge": "continue"
|
716
|
-
},
|
717
|
-
"children": []
|
718
|
-
}
|
719
|
-
]
|
720
|
-
},
|
721
|
-
{
|
722
|
-
"type": "tr",
|
723
|
-
"props": {},
|
724
|
-
"children": [
|
725
|
-
{
|
726
|
-
"type": "tbc",
|
727
|
-
"props": {
|
728
|
-
"hMerge": "restart"
|
729
|
-
},
|
730
|
-
"children": [
|
731
|
-
{
|
732
|
-
"type": "p",
|
733
|
-
"props": {},
|
734
|
-
"children": []
|
735
|
-
}
|
736
|
-
]
|
737
|
-
},
|
738
|
-
{
|
739
|
-
"type": "tbc",
|
740
|
-
"props": {
|
741
|
-
"hMerge": "continue"
|
742
|
-
},
|
743
|
-
"children": []
|
744
|
-
},
|
745
|
-
{
|
746
|
-
"type": "tbc",
|
747
|
-
"props": {
|
748
|
-
"hMerge": "restart"
|
749
|
-
},
|
750
|
-
"children": [
|
751
|
-
{
|
752
|
-
"type": "p",
|
753
|
-
"props": {},
|
754
|
-
"children": [
|
755
|
-
{
|
756
|
-
"type": "text",
|
757
|
-
"props": {
|
758
|
-
"fontName": "宋体",
|
759
|
-
"fontSize": 18
|
760
|
-
},
|
761
|
-
"content": "申请医生:"
|
762
|
-
},
|
763
|
-
{
|
764
|
-
"type": "data-ele",
|
765
|
-
"props": {
|
766
|
-
"type": "text",
|
767
|
-
"valueTextProps": {
|
768
|
-
"color": "black",
|
769
|
-
"fontName": "宋体",
|
770
|
-
"fontSize": 18
|
771
|
-
},
|
772
|
-
"nullText": "医生",
|
773
|
-
"nullTextProps": {
|
774
|
-
"color": "blue",
|
775
|
-
"fontName": "宋体",
|
776
|
-
"fontSize": 18
|
777
|
-
}
|
778
|
-
},
|
779
|
-
"children": [
|
780
|
-
{
|
781
|
-
"type": "text",
|
782
|
-
"props": {
|
783
|
-
"color": "blue",
|
784
|
-
"fontName": "宋体",
|
785
|
-
"fontSize": 18
|
786
|
-
},
|
787
|
-
"content": "医生"
|
788
|
-
}
|
789
|
-
]
|
790
|
-
}
|
791
|
-
]
|
792
|
-
}
|
793
|
-
]
|
794
|
-
},
|
795
|
-
{
|
796
|
-
"type": "tbc",
|
797
|
-
"props": {
|
798
|
-
"hMerge": "continue"
|
799
|
-
},
|
800
|
-
"children": []
|
801
|
-
},
|
802
|
-
{
|
803
|
-
"type": "tbc",
|
804
|
-
"props": {
|
805
|
-
"hMerge": "restart"
|
806
|
-
},
|
807
|
-
"children": [
|
808
|
-
{
|
809
|
-
"type": "p",
|
810
|
-
"props": {},
|
811
|
-
"children": [
|
812
|
-
{
|
813
|
-
"type": "text",
|
814
|
-
"props": {
|
815
|
-
"fontName": "宋体",
|
816
|
-
"fontSize": 18
|
817
|
-
},
|
818
|
-
"content": "申请时间:"
|
819
|
-
},
|
820
|
-
{
|
821
|
-
"type": "data-ele",
|
822
|
-
"props": {
|
823
|
-
"type": "text",
|
824
|
-
"valueTextProps": {
|
825
|
-
"color": "black",
|
826
|
-
"fontName": "宋体",
|
827
|
-
"fontSize": 18
|
828
|
-
},
|
829
|
-
"nullText": "时间",
|
830
|
-
"nullTextProps": {
|
831
|
-
"color": "blue",
|
832
|
-
"fontName": "宋体",
|
833
|
-
"fontSize": 18
|
834
|
-
}
|
835
|
-
},
|
836
|
-
"children": [
|
837
|
-
{
|
838
|
-
"type": "text",
|
839
|
-
"props": {
|
840
|
-
"color": "blue",
|
841
|
-
"fontName": "宋体",
|
842
|
-
"fontSize": 18
|
843
|
-
},
|
844
|
-
"content": "时间"
|
845
|
-
}
|
846
|
-
]
|
847
|
-
}
|
848
|
-
]
|
849
|
-
}
|
850
|
-
]
|
851
|
-
},
|
852
|
-
{
|
853
|
-
"type": "tbc",
|
854
|
-
"props": {
|
855
|
-
"hMerge": "continue"
|
856
|
-
},
|
857
|
-
"children": []
|
858
|
-
}
|
859
|
-
]
|
860
|
-
},
|
861
|
-
{
|
862
|
-
"type": "tr",
|
863
|
-
"props": {},
|
864
|
-
"children": [
|
865
|
-
{
|
866
|
-
"type": "tbc",
|
867
|
-
"props": {
|
868
|
-
"hMerge": "restart"
|
869
|
-
},
|
870
|
-
"children": [
|
871
|
-
{
|
872
|
-
"type": "p",
|
873
|
-
"props": {},
|
874
|
-
"children": []
|
875
|
-
}
|
876
|
-
]
|
877
|
-
},
|
878
|
-
{
|
879
|
-
"type": "tbc",
|
880
|
-
"props": {
|
881
|
-
"hMerge": "continue"
|
882
|
-
},
|
883
|
-
"children": []
|
884
|
-
},
|
885
|
-
{
|
886
|
-
"type": "tbc",
|
887
|
-
"props": {
|
888
|
-
"hMerge": "restart"
|
889
|
-
},
|
890
|
-
"children": [
|
891
|
-
{
|
892
|
-
"type": "p",
|
893
|
-
"props": {},
|
894
|
-
"children": [
|
895
|
-
{
|
896
|
-
"type": "text",
|
897
|
-
"props": {
|
898
|
-
"fontName": "宋体",
|
899
|
-
"fontSize": 18
|
900
|
-
},
|
901
|
-
"content": "检验医生:"
|
902
|
-
},
|
903
|
-
{
|
904
|
-
"type": "data-ele",
|
905
|
-
"props": {
|
906
|
-
"type": "text",
|
907
|
-
"valueTextProps": {
|
908
|
-
"color": "black",
|
909
|
-
"fontName": "宋体",
|
910
|
-
"fontSize": 18
|
911
|
-
},
|
912
|
-
"nullText": "医生",
|
913
|
-
"nullTextProps": {
|
914
|
-
"color": "blue",
|
915
|
-
"fontName": "宋体",
|
916
|
-
"fontSize": 18
|
917
|
-
}
|
918
|
-
},
|
919
|
-
"children": [
|
920
|
-
{
|
921
|
-
"type": "text",
|
922
|
-
"props": {
|
923
|
-
"color": "blue",
|
924
|
-
"fontName": "宋体",
|
925
|
-
"fontSize": 18
|
926
|
-
},
|
927
|
-
"content": "医生"
|
928
|
-
}
|
929
|
-
]
|
930
|
-
}
|
931
|
-
]
|
932
|
-
}
|
933
|
-
]
|
934
|
-
},
|
935
|
-
{
|
936
|
-
"type": "tbc",
|
937
|
-
"props": {
|
938
|
-
"hMerge": "continue"
|
939
|
-
},
|
940
|
-
"children": []
|
941
|
-
},
|
942
|
-
{
|
943
|
-
"type": "tbc",
|
944
|
-
"props": {
|
945
|
-
"hMerge": "restart"
|
946
|
-
},
|
947
|
-
"children": [
|
948
|
-
{
|
949
|
-
"type": "p",
|
950
|
-
"props": {},
|
951
|
-
"children": [
|
952
|
-
{
|
953
|
-
"type": "text",
|
954
|
-
"props": {
|
955
|
-
"fontName": "宋体",
|
956
|
-
"fontSize": 18
|
957
|
-
},
|
958
|
-
"content": "报告时间:"
|
959
|
-
},
|
960
|
-
{
|
961
|
-
"type": "data-ele",
|
962
|
-
"props": {
|
963
|
-
"type": "text",
|
964
|
-
"valueTextProps": {
|
965
|
-
"color": "black",
|
966
|
-
"fontName": "宋体",
|
967
|
-
"fontSize": 18
|
968
|
-
},
|
969
|
-
"nullText": "时间",
|
970
|
-
"nullTextProps": {
|
971
|
-
"color": "blue",
|
972
|
-
"fontName": "宋体",
|
973
|
-
"fontSize": 18
|
974
|
-
}
|
975
|
-
},
|
976
|
-
"children": [
|
977
|
-
{
|
978
|
-
"type": "text",
|
979
|
-
"props": {
|
980
|
-
"color": "blue",
|
981
|
-
"fontName": "宋体",
|
982
|
-
"fontSize": 18
|
983
|
-
},
|
984
|
-
"content": "时间"
|
985
|
-
}
|
986
|
-
]
|
987
|
-
}
|
988
|
-
]
|
989
|
-
}
|
990
|
-
]
|
991
|
-
},
|
992
|
-
{
|
993
|
-
"type": "tbc",
|
994
|
-
"props": {
|
995
|
-
"hMerge": "continue"
|
996
|
-
},
|
997
|
-
"children": []
|
998
|
-
}
|
999
|
-
]
|
1000
|
-
}
|
1001
|
-
]
|
1002
|
-
},
|
1003
|
-
{
|
1004
|
-
"type": "p",
|
1005
|
-
"props": {},
|
1006
|
-
"children": [
|
1007
|
-
{
|
1008
|
-
"type": "text",
|
1009
|
-
"props": {
|
1010
|
-
"fontSize": 18
|
1011
|
-
},
|
1012
|
-
"content": "注意事项:"
|
1013
|
-
}
|
1014
|
-
]
|
1015
|
-
},
|
1016
|
-
{
|
1017
|
-
"type": "p",
|
1018
|
-
"props": {},
|
1019
|
-
"children": [
|
1020
|
-
{
|
1021
|
-
"type": "text",
|
1022
|
-
"props": {
|
1023
|
-
"fontSize": 18
|
1024
|
-
},
|
1025
|
-
"content": "1、门诊病人持检查申请单在收费处交费并做好准备;"
|
1026
|
-
}
|
1027
|
-
]
|
1028
|
-
},
|
1029
|
-
{
|
1030
|
-
"type": "p",
|
1031
|
-
"props": {},
|
1032
|
-
"children": [
|
1033
|
-
{
|
1034
|
-
"type": "text",
|
1035
|
-
"props": {
|
1036
|
-
"fontSize": 18
|
1037
|
-
},
|
1038
|
-
"content": "2、消化系统检查前需禁食、禁水8小时以上;"
|
1039
|
-
}
|
1040
|
-
]
|
1041
|
-
},
|
1042
|
-
{
|
1043
|
-
"type": "p",
|
1044
|
-
"props": {},
|
1045
|
-
"children": [
|
1046
|
-
{
|
1047
|
-
"type": "text",
|
1048
|
-
"props": {
|
1049
|
-
"fontSize": 18
|
1050
|
-
},
|
1051
|
-
"content": "3、泌尿系统及盆腔检查前适度充盈膀胱;"
|
1052
|
-
}
|
1053
|
-
]
|
1054
|
-
}
|
1055
|
-
]
|
1056
|
-
},
|
1057
|
-
{
|
1058
|
-
"type": "footer",
|
1059
|
-
"props": {},
|
1060
|
-
"children": [
|
1061
|
-
{
|
1062
|
-
"type": "p",
|
1063
|
-
"props": {},
|
1064
|
-
"children": []
|
1065
|
-
}
|
1066
|
-
]
|
1067
|
-
}
|
1068
|
-
]
|
1069
|
-
}
|