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,1668 @@
1
+ export default {
2
+ printConfig: {
3
+ templateTitle: "",
4
+ templateCode: "",
5
+ pageSize: "A4",
6
+ customHeight: 0,
7
+ customWidth: 0,
8
+ landscape: true,
9
+ servePrintType: "pdf",
10
+ printer: "",
11
+ silent: true,
12
+ style: {
13
+ paddingTop: "30px",
14
+ paddingBottom: "30px",
15
+ paddingLeft: "30px",
16
+ paddingRight: "30px",
17
+ backgroundColor: "#fff",
18
+ fontSize: "14px"
19
+ }
20
+ },
21
+ formConfig: {
22
+ props: {
23
+ labelWidth: "80px",
24
+ labelPosition: "left",
25
+ size: "default"
26
+ }
27
+ },
28
+ layoutConfig: [
29
+ {
30
+ id: "36b85453-d4bd-43c4-93b8-5dbf6176b8ec",
31
+ type: "tableLayout",
32
+ title: "表格布局",
33
+ style: {
34
+ marginBottom: "5px",
35
+ cell_container_minHeight: "20px",
36
+ cell_paddingTop: "0px",
37
+ cell_paddingBottom: "0px",
38
+ cell_paddingLeft: "0px",
39
+ cell_paddingRight: "0px",
40
+ cell_textAlign: "left"
41
+ },
42
+ children: [
43
+ {
44
+ id: "19c4029e-9064-4eac-8dd2-1104cae806c0",
45
+ type: "text",
46
+ title: "文本",
47
+ style: {
48
+ paddingTop: "0px",
49
+ paddingBottom: "0px",
50
+ paddingLeft: "0px",
51
+ paddingRight: "0px",
52
+ height: "80px",
53
+ fontSize: "20px",
54
+ textAlign: "center",
55
+ lineHeight: "80px"
56
+ },
57
+ props: {
58
+ defaultContent: "住院产科患者护理记录单",
59
+ showOnLastPage: false
60
+ },
61
+ rowIndex: 0,
62
+ colIndex: 0
63
+ },
64
+ {
65
+ id: "24251652-502e-448e-806d-7bcda6637690",
66
+ type: "barcode",
67
+ title: "条形码",
68
+ style: {
69
+ barcode_width: "100px",
70
+ barcode_height: "80px"
71
+ },
72
+ props: {
73
+ field: "txm",
74
+ format: "CODE128",
75
+ lineColor: "#000000",
76
+ background: "#ffffff",
77
+ width: 1,
78
+ height: 50,
79
+ displayValue: true,
80
+ fontSize: 12,
81
+ margin: 0,
82
+ textAlign: "",
83
+ textPosition: ""
84
+ },
85
+ rowIndex: 0,
86
+ colIndex: 1
87
+ },
88
+ {
89
+ id: "48eb36c6-fa2d-4a52-88cb-a820782ff83c",
90
+ type: "qrcode",
91
+ title: "二维码",
92
+ style: {},
93
+ props: {
94
+ field: "ewm",
95
+ width: 80,
96
+ height: 80,
97
+ showOnLastPage: false
98
+ },
99
+ rowIndex: 0,
100
+ colIndex: 2
101
+ }
102
+ ],
103
+ props: {
104
+ row: 1,
105
+ col: 3
106
+ },
107
+ styleRules: {
108
+ "0-1": {
109
+ container_custom_slashDirection: "top-left",
110
+ width: "90px",
111
+ paddingRight: "10px"
112
+ },
113
+ "0-2": {
114
+ container_custom_slashDirection: "top-left",
115
+ width: "80px"
116
+ },
117
+ "0-0": {
118
+ container_custom_slashDirection: "top-left",
119
+ paddingRight: "5px"
120
+ }
121
+ }
122
+ },
123
+ {
124
+ id: "6642ff41-cc5f-46c6-bf0b-dcec7aedb4f6",
125
+ type: "grid",
126
+ title: "栅格布局",
127
+ style: {},
128
+ children: [
129
+ {
130
+ id: "f58b4713-97ea-4b00-b0a1-fae17eb3f690",
131
+ type: "grid-item",
132
+ title: "栅格布局格子",
133
+ props: {
134
+ span: 3
135
+ },
136
+ style: {},
137
+ children: [
138
+ {
139
+ id: "0cc94a3d-1099-441e-a889-8640456b3dfb",
140
+ type: "dynamicText",
141
+ title: "动态文本",
142
+ style: {
143
+ text_paddingLeft: "3px",
144
+ text_textAlign: "left"
145
+ },
146
+ props: {
147
+ label: "姓名:",
148
+ field: "xm"
149
+ }
150
+ }
151
+ ]
152
+ },
153
+ {
154
+ id: "81eae27b-e700-4675-8047-7ee25f9ca106",
155
+ type: "grid-item",
156
+ title: "栅格布局格子",
157
+ props: {
158
+ span: 2
159
+ },
160
+ style: {},
161
+ children: [
162
+ {
163
+ id: "5229ab36-0743-4d93-ba28-4d7b8942e4cd",
164
+ type: "dynamicText",
165
+ title: "动态文本",
166
+ style: {
167
+ text_paddingLeft: "3px",
168
+ text_textAlign: "left"
169
+ },
170
+ props: {
171
+ label: "性别:",
172
+ field: "xb"
173
+ }
174
+ }
175
+ ]
176
+ },
177
+ {
178
+ id: "008551f0-215e-4cd4-80e1-ada4b0009569",
179
+ type: "grid-item",
180
+ title: "栅格布局格子",
181
+ props: {
182
+ span: 2
183
+ },
184
+ style: {},
185
+ children: [
186
+ {
187
+ id: "fc6bf0e2-297e-460d-acbe-d7c453130716",
188
+ type: "dynamicText",
189
+ title: "动态文本",
190
+ style: {
191
+ text_paddingLeft: "3px",
192
+ text_textAlign: "left"
193
+ },
194
+ props: {
195
+ label: "年龄:",
196
+ field: "nl"
197
+ }
198
+ }
199
+ ]
200
+ },
201
+ {
202
+ id: "defc5921-a1f1-48a3-8527-ae7a17eef760",
203
+ type: "grid-item",
204
+ title: "栅格布局格子",
205
+ props: {
206
+ span: 3
207
+ },
208
+ style: {},
209
+ children: [
210
+ {
211
+ id: "df7ee48a-f40c-4706-bfd1-b6589a5fb8b5",
212
+ type: "dynamicText",
213
+ title: "动态文本",
214
+ style: {
215
+ text_paddingLeft: "3px",
216
+ text_textAlign: "left"
217
+ },
218
+ props: {
219
+ label: "当前床号:",
220
+ field: "dqch"
221
+ }
222
+ }
223
+ ]
224
+ },
225
+ {
226
+ id: "e5835b5a-daba-404f-9fb4-d43c27574936",
227
+ type: "grid-item",
228
+ title: "栅格布局格子",
229
+ props: {
230
+ span: 4
231
+ },
232
+ style: {},
233
+ children: [
234
+ {
235
+ id: "ebf6535c-f4b3-47ba-a151-e737ff43149b",
236
+ type: "dynamicText",
237
+ title: "动态文本",
238
+ style: {
239
+ text_paddingLeft: "3px",
240
+ text_textAlign: "left"
241
+ },
242
+ props: {
243
+ label: "当前科室:",
244
+ field: "dqks"
245
+ }
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ id: "3587cd2a-6034-4aac-b5d0-85915136d75e",
251
+ type: "grid-item",
252
+ title: "栅格布局格子",
253
+ props: {
254
+ span: 5
255
+ },
256
+ style: {},
257
+ children: [
258
+ {
259
+ id: "b8096ed0-c651-43f5-839a-f168cca5dab5",
260
+ type: "dynamicText",
261
+ title: "动态文本",
262
+ style: {
263
+ text_paddingLeft: "3px",
264
+ text_textAlign: "left"
265
+ },
266
+ props: {
267
+ label: "住院号:",
268
+ field: "zyh"
269
+ }
270
+ }
271
+ ]
272
+ },
273
+ {
274
+ id: "ab4aa9ec-2fc1-41b3-b299-ab10dc248e4c",
275
+ type: "grid-item",
276
+ title: "栅格布局格子",
277
+ props: {
278
+ span: 5
279
+ },
280
+ style: {},
281
+ children: [
282
+ {
283
+ id: "e50c4098-f8e3-4de1-a637-0c40bef1c70a",
284
+ type: "dynamicText",
285
+ title: "动态文本",
286
+ style: {
287
+ text_paddingLeft: "3px",
288
+ text_textAlign: "left"
289
+ },
290
+ props: {
291
+ label: "西医入院诊断:",
292
+ field: "xyryzd"
293
+ }
294
+ }
295
+ ]
296
+ }
297
+ ],
298
+ props: {}
299
+ },
300
+ {
301
+ id: "38207a03-0780-48ee-b144-3831e2cca287",
302
+ type: "complexTable",
303
+ title: "复杂表格",
304
+ style: {
305
+ borderTopStyle: "solid",
306
+ borderTopWidth: "1px",
307
+ borderTopColor: "#090909",
308
+ borderLeftStyle: "solid",
309
+ borderLeftWidth: "1px",
310
+ borderLeftColor: "#090909",
311
+ common_fontSize: "12px",
312
+ headerCell_container_minHeight: "20px",
313
+ headerCell_paddingTop: "2px",
314
+ headerCell_paddingBottom: "2px",
315
+ headerCell_paddingLeft: "2px",
316
+ headerCell_paddingRight: "2px",
317
+ headerCell_borderBottomStyle: "solid",
318
+ headerCell_borderBottomWidth: "1px",
319
+ headerCell_borderBottomColor: "#090909",
320
+ headerCell_borderRightStyle: "solid",
321
+ headerCell_borderRightWidth: "1px",
322
+ headerCell_borderRightColor: "#090909",
323
+ headerCell_container_textAlign: "left",
324
+ contentCell_container_minHeight: "20px",
325
+ contentCell_paddingTop: "2px",
326
+ contentCell_paddingBottom: "2px",
327
+ contentCell_paddingLeft: "4px",
328
+ contentCell_paddingRight: "4px",
329
+ contentCell_borderBottomStyle: "solid",
330
+ contentCell_borderBottomWidth: "1px",
331
+ contentCell_borderBottomColor: "#090909",
332
+ contentCell_borderRightStyle: "solid",
333
+ contentCell_borderRightWidth: "1px",
334
+ contentCell_borderRightColor: "#090909",
335
+ contentCell_container_textAlign: "left"
336
+ },
337
+ props: {
338
+ field: "tableData",
339
+ headerRow: 3,
340
+ col: 18,
341
+ columnsField: [
342
+ {
343
+ field: "fssj"
344
+ },
345
+ {
346
+ field: "wbzs"
347
+ },
348
+ {
349
+ field: "xjzs"
350
+ },
351
+ {
352
+ field: "jnsf"
353
+ },
354
+ {
355
+ field: "rfcyqk"
356
+ },
357
+ {
358
+ field: "rl"
359
+ },
360
+ {
361
+ field: "zdmrwy"
362
+ },
363
+ {
364
+ field: "zxy"
365
+ },
366
+ {
367
+ field: "pfzjc"
368
+ },
369
+ {
370
+ field: "gdgd"
371
+ },
372
+ {
373
+ field: "zgr"
374
+ },
375
+ {
376
+ field: "zgy"
377
+ },
378
+ {
379
+ field: "hygz"
380
+ },
381
+ {
382
+ field: "hyhz"
383
+ },
384
+ {
385
+ field: "xbl"
386
+ },
387
+ {
388
+ field: "xbys"
389
+ },
390
+ {
391
+ field: "bqgcjcs"
392
+ },
393
+ {
394
+ field: "qz"
395
+ }
396
+ ],
397
+ isPaginationMode: true,
398
+ isPaginationEnabled: true,
399
+ perPageMaxRow: 24,
400
+ contentRowHeight: 20,
401
+ canContinue: false,
402
+ continuePrintMode: "autoHeight",
403
+ autoHeightSpanCell: false
404
+ },
405
+ headerLayout: [
406
+ {
407
+ rowIndex: 0,
408
+ colIndex: 0,
409
+ rowspan: 3
410
+ },
411
+ {
412
+ rowIndex: 0,
413
+ colIndex: 1,
414
+ colspan: 8
415
+ },
416
+ {
417
+ rowIndex: 1,
418
+ colIndex: 1,
419
+ rowspan: 2
420
+ },
421
+ {
422
+ rowIndex: 1,
423
+ colIndex: 2,
424
+ rowspan: 2
425
+ },
426
+ {
427
+ rowIndex: 1,
428
+ colIndex: 3,
429
+ rowspan: 2
430
+ },
431
+ {
432
+ rowIndex: 1,
433
+ colIndex: 4,
434
+ rowspan: 2
435
+ },
436
+ {
437
+ rowIndex: 1,
438
+ colIndex: 5,
439
+ rowspan: 2
440
+ },
441
+ {
442
+ rowIndex: 1,
443
+ colIndex: 6,
444
+ rowspan: 2
445
+ },
446
+ {
447
+ rowIndex: 1,
448
+ colIndex: 7,
449
+ rowspan: 2
450
+ },
451
+ {
452
+ rowIndex: 1,
453
+ colIndex: 8,
454
+ rowspan: 2
455
+ },
456
+ {
457
+ rowIndex: 0,
458
+ colIndex: 9,
459
+ colspan: 7
460
+ },
461
+ {
462
+ rowIndex: 0,
463
+ colIndex: 16,
464
+ rowspan: 3
465
+ },
466
+ {
467
+ rowIndex: 0,
468
+ colIndex: 17,
469
+ rowspan: 3
470
+ },
471
+ {
472
+ rowIndex: 1,
473
+ colIndex: 9,
474
+ rowspan: 2
475
+ },
476
+ {
477
+ rowIndex: 1,
478
+ colIndex: 10,
479
+ colspan: 2
480
+ },
481
+ {
482
+ rowIndex: 1,
483
+ colIndex: 12,
484
+ colspan: 2
485
+ },
486
+ {
487
+ rowIndex: 1,
488
+ colIndex: 14,
489
+ colspan: 2
490
+ }
491
+ ],
492
+ headerRules: {
493
+ "0-0": {
494
+ props: {
495
+ title: "发生时间",
496
+ slash: true,
497
+ slashDirection: "top-left",
498
+ slashTextLeft: "时间",
499
+ slashTextRight: "项目",
500
+ centerHorizontally: true,
501
+ centerVertical: true
502
+ },
503
+ style: {
504
+ width: "80px",
505
+ height: "",
506
+ marginTop: "",
507
+ marginBottom: "",
508
+ marginLeft: "",
509
+ marginRight: "",
510
+ paddingTop: "",
511
+ paddingBottom: "",
512
+ paddingLeft: "",
513
+ paddingRight: "",
514
+ borderStyle: "",
515
+ borderWidth: "",
516
+ borderColor: "",
517
+ borderTopStyle: "",
518
+ borderTopWidth: "",
519
+ borderTopColor: "",
520
+ borderBottomStyle: "",
521
+ borderBottomWidth: "",
522
+ borderBottomColor: "",
523
+ borderLeftStyle: "",
524
+ borderLeftWidth: "",
525
+ borderLeftColor: "",
526
+ borderRightStyle: "",
527
+ borderRightWidth: "",
528
+ borderRightColor: "",
529
+ backgroundColor: "",
530
+ container_fontSize: "",
531
+ container_fontWeight: "",
532
+ container_textDecoration: "",
533
+ container_textAlign: "left",
534
+ container_lineHeight: "",
535
+ container_letterSpacing: ""
536
+ }
537
+ },
538
+ "0-1": {
539
+ props: {
540
+ title: "母乳喂养",
541
+ slash: false,
542
+ slashDirection: "top-left",
543
+ slashTextLeft: "",
544
+ slashTextRight: "",
545
+ centerHorizontally: true,
546
+ centerVertical: true
547
+ },
548
+ style: {
549
+ width: "",
550
+ height: "",
551
+ marginTop: "",
552
+ marginBottom: "",
553
+ marginLeft: "",
554
+ marginRight: "",
555
+ paddingTop: "",
556
+ paddingBottom: "",
557
+ paddingLeft: "",
558
+ paddingRight: "",
559
+ borderStyle: "",
560
+ borderWidth: "",
561
+ borderColor: "",
562
+ borderTopStyle: "",
563
+ borderTopWidth: "",
564
+ borderTopColor: "",
565
+ borderBottomStyle: "",
566
+ borderBottomWidth: "",
567
+ borderBottomColor: "",
568
+ borderLeftStyle: "",
569
+ borderLeftWidth: "",
570
+ borderLeftColor: "",
571
+ borderRightStyle: "",
572
+ borderRightWidth: "",
573
+ borderRightColor: "",
574
+ backgroundColor: "",
575
+ container_fontSize: "",
576
+ container_fontWeight: "",
577
+ container_textDecoration: "",
578
+ container_textAlign: "left",
579
+ container_lineHeight: "",
580
+ container_letterSpacing: ""
581
+ }
582
+ },
583
+ "0-2": {
584
+ props: {
585
+ title: "",
586
+ slash: false,
587
+ slashDirection: "top-left",
588
+ slashTextLeft: "",
589
+ slashTextRight: "",
590
+ centerHorizontally: true,
591
+ centerVertical: true
592
+ },
593
+ style: {
594
+ width: "",
595
+ height: "",
596
+ marginTop: "",
597
+ marginBottom: "",
598
+ marginLeft: "",
599
+ marginRight: "",
600
+ paddingTop: "",
601
+ paddingBottom: "",
602
+ paddingLeft: "",
603
+ paddingRight: "",
604
+ borderStyle: "",
605
+ borderWidth: "",
606
+ borderColor: "",
607
+ borderTopStyle: "",
608
+ borderTopWidth: "",
609
+ borderTopColor: "",
610
+ borderBottomStyle: "",
611
+ borderBottomWidth: "",
612
+ borderBottomColor: "",
613
+ borderLeftStyle: "",
614
+ borderLeftWidth: "",
615
+ borderLeftColor: "",
616
+ borderRightStyle: "",
617
+ borderRightWidth: "",
618
+ borderRightColor: "",
619
+ backgroundColor: "",
620
+ container_fontSize: "",
621
+ container_fontWeight: "",
622
+ container_textDecoration: "",
623
+ container_textAlign: "left",
624
+ container_lineHeight: "",
625
+ container_letterSpacing: ""
626
+ }
627
+ },
628
+ "1-1": {
629
+ props: {
630
+ title: "喂哺姿势",
631
+ slash: false,
632
+ slashDirection: "top-left",
633
+ slashTextLeft: "",
634
+ slashTextRight: "",
635
+ centerHorizontally: true,
636
+ centerVertical: true
637
+ },
638
+ style: {
639
+ width: "40px",
640
+ height: "",
641
+ marginTop: "",
642
+ marginBottom: "",
643
+ marginLeft: "",
644
+ marginRight: "",
645
+ paddingTop: "",
646
+ paddingBottom: "",
647
+ paddingLeft: "",
648
+ paddingRight: "",
649
+ borderStyle: "",
650
+ borderWidth: "",
651
+ borderColor: "",
652
+ borderTopStyle: "",
653
+ borderTopWidth: "",
654
+ borderTopColor: "",
655
+ borderBottomStyle: "",
656
+ borderBottomWidth: "",
657
+ borderBottomColor: "",
658
+ borderLeftStyle: "",
659
+ borderLeftWidth: "",
660
+ borderLeftColor: "",
661
+ borderRightStyle: "",
662
+ borderRightWidth: "",
663
+ borderRightColor: "",
664
+ backgroundColor: "",
665
+ container_fontSize: "",
666
+ container_fontWeight: "",
667
+ container_textDecoration: "",
668
+ container_textAlign: "left",
669
+ container_lineHeight: "",
670
+ container_letterSpacing: ""
671
+ }
672
+ },
673
+ "2-1": {
674
+ props: {
675
+ title: "",
676
+ slash: false,
677
+ slashDirection: "top-left",
678
+ slashTextLeft: "",
679
+ slashTextRight: "",
680
+ centerHorizontally: true,
681
+ centerVertical: true
682
+ },
683
+ style: {
684
+ width: "",
685
+ height: "",
686
+ marginTop: "",
687
+ marginBottom: "",
688
+ marginLeft: "",
689
+ marginRight: "",
690
+ paddingTop: "",
691
+ paddingBottom: "",
692
+ paddingLeft: "",
693
+ paddingRight: "",
694
+ borderStyle: "",
695
+ borderWidth: "",
696
+ borderColor: "",
697
+ borderTopStyle: "",
698
+ borderTopWidth: "",
699
+ borderTopColor: "",
700
+ borderBottomStyle: "",
701
+ borderBottomWidth: "",
702
+ borderBottomColor: "",
703
+ borderLeftStyle: "",
704
+ borderLeftWidth: "",
705
+ borderLeftColor: "",
706
+ borderRightStyle: "",
707
+ borderRightWidth: "",
708
+ borderRightColor: "",
709
+ backgroundColor: "",
710
+ container_fontSize: "",
711
+ container_fontWeight: "",
712
+ container_textDecoration: "",
713
+ container_textAlign: "left",
714
+ container_lineHeight: "",
715
+ container_letterSpacing: ""
716
+ }
717
+ },
718
+ "1-2": {
719
+ props: {
720
+ title: "衔接姿势",
721
+ slash: false,
722
+ slashDirection: "top-left",
723
+ slashTextLeft: "",
724
+ slashTextRight: "",
725
+ centerHorizontally: true,
726
+ centerVertical: true
727
+ },
728
+ style: {
729
+ width: "40px",
730
+ height: "",
731
+ marginTop: "",
732
+ marginBottom: "",
733
+ marginLeft: "",
734
+ marginRight: "",
735
+ paddingTop: "",
736
+ paddingBottom: "",
737
+ paddingLeft: "",
738
+ paddingRight: "",
739
+ borderStyle: "",
740
+ borderWidth: "",
741
+ borderColor: "",
742
+ borderTopStyle: "",
743
+ borderTopWidth: "",
744
+ borderTopColor: "",
745
+ borderBottomStyle: "",
746
+ borderBottomWidth: "",
747
+ borderBottomColor: "",
748
+ borderLeftStyle: "",
749
+ borderLeftWidth: "",
750
+ borderLeftColor: "",
751
+ borderRightStyle: "",
752
+ borderRightWidth: "",
753
+ borderRightColor: "",
754
+ backgroundColor: "",
755
+ container_fontSize: "",
756
+ container_fontWeight: "",
757
+ container_textDecoration: "",
758
+ container_textAlign: "left",
759
+ container_lineHeight: "",
760
+ container_letterSpacing: ""
761
+ }
762
+ },
763
+ "1-3": {
764
+ props: {
765
+ title: "挤奶手法",
766
+ slash: false,
767
+ slashDirection: "top-left",
768
+ slashTextLeft: "",
769
+ slashTextRight: "",
770
+ centerHorizontally: true,
771
+ centerVertical: true
772
+ },
773
+ style: {
774
+ width: "40px",
775
+ height: "",
776
+ marginTop: "",
777
+ marginBottom: "",
778
+ marginLeft: "",
779
+ marginRight: "",
780
+ paddingTop: "",
781
+ paddingBottom: "",
782
+ paddingLeft: "",
783
+ paddingRight: "",
784
+ borderStyle: "",
785
+ borderWidth: "",
786
+ borderColor: "",
787
+ borderTopStyle: "",
788
+ borderTopWidth: "",
789
+ borderTopColor: "",
790
+ borderBottomStyle: "",
791
+ borderBottomWidth: "",
792
+ borderBottomColor: "",
793
+ borderLeftStyle: "",
794
+ borderLeftWidth: "",
795
+ borderLeftColor: "",
796
+ borderRightStyle: "",
797
+ borderRightWidth: "",
798
+ borderRightColor: "",
799
+ backgroundColor: "",
800
+ container_fontSize: "",
801
+ container_fontWeight: "",
802
+ container_textDecoration: "",
803
+ container_textAlign: "left",
804
+ container_lineHeight: "",
805
+ container_letterSpacing: ""
806
+ }
807
+ },
808
+ "1-4": {
809
+ props: {
810
+ title: "乳房充盈情况",
811
+ slash: false,
812
+ slashDirection: "top-left",
813
+ slashTextLeft: "",
814
+ slashTextRight: "",
815
+ centerHorizontally: true,
816
+ centerVertical: true
817
+ },
818
+ style: {
819
+ width: "40px",
820
+ height: "",
821
+ marginTop: "",
822
+ marginBottom: "",
823
+ marginLeft: "",
824
+ marginRight: "",
825
+ paddingTop: "",
826
+ paddingBottom: "",
827
+ paddingLeft: "",
828
+ paddingRight: "",
829
+ borderStyle: "",
830
+ borderWidth: "",
831
+ borderColor: "",
832
+ borderTopStyle: "",
833
+ borderTopWidth: "",
834
+ borderTopColor: "",
835
+ borderBottomStyle: "",
836
+ borderBottomWidth: "",
837
+ borderBottomColor: "",
838
+ borderLeftStyle: "",
839
+ borderLeftWidth: "",
840
+ borderLeftColor: "",
841
+ borderRightStyle: "",
842
+ borderRightWidth: "",
843
+ borderRightColor: "",
844
+ backgroundColor: "",
845
+ container_fontSize: "",
846
+ container_fontWeight: "",
847
+ container_textDecoration: "",
848
+ container_textAlign: "left",
849
+ container_lineHeight: "",
850
+ container_letterSpacing: ""
851
+ }
852
+ },
853
+ "1-5": {
854
+ props: {
855
+ title: "乳量",
856
+ slash: false,
857
+ slashDirection: "top-left",
858
+ slashTextLeft: "",
859
+ slashTextRight: "",
860
+ centerHorizontally: true,
861
+ centerVertical: true
862
+ },
863
+ style: {
864
+ width: "40px",
865
+ height: "",
866
+ marginTop: "",
867
+ marginBottom: "",
868
+ marginLeft: "",
869
+ marginRight: "",
870
+ paddingTop: "",
871
+ paddingBottom: "",
872
+ paddingLeft: "",
873
+ paddingRight: "",
874
+ borderStyle: "",
875
+ borderWidth: "",
876
+ borderColor: "",
877
+ borderTopStyle: "",
878
+ borderTopWidth: "",
879
+ borderTopColor: "",
880
+ borderBottomStyle: "",
881
+ borderBottomWidth: "",
882
+ borderBottomColor: "",
883
+ borderLeftStyle: "",
884
+ borderLeftWidth: "",
885
+ borderLeftColor: "",
886
+ borderRightStyle: "",
887
+ borderRightWidth: "",
888
+ borderRightColor: "",
889
+ backgroundColor: "",
890
+ container_fontSize: "",
891
+ container_fontWeight: "",
892
+ container_textDecoration: "",
893
+ container_textAlign: "left",
894
+ container_lineHeight: "",
895
+ container_letterSpacing: ""
896
+ }
897
+ },
898
+ "1-6": {
899
+ props: {
900
+ title: "指导母乳喂养",
901
+ slash: false,
902
+ slashDirection: "top-left",
903
+ slashTextLeft: "",
904
+ slashTextRight: "",
905
+ centerHorizontally: true,
906
+ centerVertical: true
907
+ },
908
+ style: {
909
+ width: "40px",
910
+ height: "",
911
+ marginTop: "",
912
+ marginBottom: "",
913
+ marginLeft: "",
914
+ marginRight: "",
915
+ paddingTop: "",
916
+ paddingBottom: "",
917
+ paddingLeft: "",
918
+ paddingRight: "",
919
+ borderStyle: "",
920
+ borderWidth: "",
921
+ borderColor: "",
922
+ borderTopStyle: "",
923
+ borderTopWidth: "",
924
+ borderTopColor: "",
925
+ borderBottomStyle: "",
926
+ borderBottomWidth: "",
927
+ borderBottomColor: "",
928
+ borderLeftStyle: "",
929
+ borderLeftWidth: "",
930
+ borderLeftColor: "",
931
+ borderRightStyle: "",
932
+ borderRightWidth: "",
933
+ borderRightColor: "",
934
+ backgroundColor: "",
935
+ container_fontSize: "",
936
+ container_fontWeight: "",
937
+ container_textDecoration: "",
938
+ container_textAlign: "left",
939
+ container_lineHeight: "",
940
+ container_letterSpacing: ""
941
+ }
942
+ },
943
+ "1-7": {
944
+ props: {
945
+ title: "早吸吮",
946
+ slash: false,
947
+ slashDirection: "top-left",
948
+ slashTextLeft: "",
949
+ slashTextRight: "",
950
+ centerHorizontally: true,
951
+ centerVertical: true
952
+ },
953
+ style: {
954
+ width: "60px",
955
+ height: "",
956
+ marginTop: "",
957
+ marginBottom: "",
958
+ marginLeft: "",
959
+ marginRight: "",
960
+ paddingTop: "",
961
+ paddingBottom: "",
962
+ paddingLeft: "",
963
+ paddingRight: "",
964
+ borderStyle: "",
965
+ borderWidth: "",
966
+ borderColor: "",
967
+ borderTopStyle: "",
968
+ borderTopWidth: "",
969
+ borderTopColor: "",
970
+ borderBottomStyle: "",
971
+ borderBottomWidth: "",
972
+ borderBottomColor: "",
973
+ borderLeftStyle: "",
974
+ borderLeftWidth: "",
975
+ borderLeftColor: "",
976
+ borderRightStyle: "",
977
+ borderRightWidth: "",
978
+ borderRightColor: "",
979
+ backgroundColor: "",
980
+ container_fontSize: "",
981
+ container_fontWeight: "",
982
+ container_textDecoration: "",
983
+ container_textAlign: "left",
984
+ container_lineHeight: "",
985
+ container_letterSpacing: ""
986
+ }
987
+ },
988
+ "1-8": {
989
+ props: {
990
+ title: "皮肤早接触",
991
+ slash: false,
992
+ slashDirection: "top-left",
993
+ slashTextLeft: "",
994
+ slashTextRight: "",
995
+ centerHorizontally: true,
996
+ centerVertical: true
997
+ },
998
+ style: {
999
+ width: "40px",
1000
+ height: "",
1001
+ marginTop: "",
1002
+ marginBottom: "",
1003
+ marginLeft: "",
1004
+ marginRight: "",
1005
+ paddingTop: "",
1006
+ paddingBottom: "",
1007
+ paddingLeft: "",
1008
+ paddingRight: "",
1009
+ borderStyle: "",
1010
+ borderWidth: "",
1011
+ borderColor: "",
1012
+ borderTopStyle: "",
1013
+ borderTopWidth: "",
1014
+ borderTopColor: "",
1015
+ borderBottomStyle: "",
1016
+ borderBottomWidth: "",
1017
+ borderBottomColor: "",
1018
+ borderLeftStyle: "",
1019
+ borderLeftWidth: "",
1020
+ borderLeftColor: "",
1021
+ borderRightStyle: "",
1022
+ borderRightWidth: "",
1023
+ borderRightColor: "",
1024
+ backgroundColor: "",
1025
+ container_fontSize: "",
1026
+ container_fontWeight: "",
1027
+ container_textDecoration: "",
1028
+ container_textAlign: "left",
1029
+ container_lineHeight: "",
1030
+ container_letterSpacing: ""
1031
+ }
1032
+ },
1033
+ "0-9": {
1034
+ props: {
1035
+ title: "产后",
1036
+ slash: false,
1037
+ slashDirection: "top-left",
1038
+ slashTextLeft: "",
1039
+ slashTextRight: "",
1040
+ centerHorizontally: true,
1041
+ centerVertical: true
1042
+ },
1043
+ style: {
1044
+ width: "",
1045
+ height: "",
1046
+ marginTop: "",
1047
+ marginBottom: "",
1048
+ marginLeft: "",
1049
+ marginRight: "",
1050
+ paddingTop: "",
1051
+ paddingBottom: "",
1052
+ paddingLeft: "",
1053
+ paddingRight: "",
1054
+ borderStyle: "",
1055
+ borderWidth: "",
1056
+ borderColor: "",
1057
+ borderTopStyle: "",
1058
+ borderTopWidth: "",
1059
+ borderTopColor: "",
1060
+ borderBottomStyle: "",
1061
+ borderBottomWidth: "",
1062
+ borderBottomColor: "",
1063
+ borderLeftStyle: "",
1064
+ borderLeftWidth: "",
1065
+ borderLeftColor: "",
1066
+ borderRightStyle: "",
1067
+ borderRightWidth: "",
1068
+ borderRightColor: "",
1069
+ backgroundColor: "",
1070
+ container_fontSize: "",
1071
+ container_fontWeight: "",
1072
+ container_textDecoration: "",
1073
+ container_textAlign: "left",
1074
+ container_lineHeight: "",
1075
+ container_letterSpacing: ""
1076
+ }
1077
+ },
1078
+ "0-16": {
1079
+ props: {
1080
+ title: "病情观察及措施",
1081
+ slash: false,
1082
+ slashDirection: "top-left",
1083
+ slashTextLeft: "",
1084
+ slashTextRight: "",
1085
+ centerHorizontally: true,
1086
+ centerVertical: true
1087
+ },
1088
+ style: {
1089
+ width: "150px",
1090
+ height: "",
1091
+ marginTop: "",
1092
+ marginBottom: "",
1093
+ marginLeft: "",
1094
+ marginRight: "",
1095
+ paddingTop: "",
1096
+ paddingBottom: "",
1097
+ paddingLeft: "",
1098
+ paddingRight: "",
1099
+ borderStyle: "",
1100
+ borderWidth: "",
1101
+ borderColor: "",
1102
+ borderTopStyle: "",
1103
+ borderTopWidth: "",
1104
+ borderTopColor: "",
1105
+ borderBottomStyle: "",
1106
+ borderBottomWidth: "",
1107
+ borderBottomColor: "",
1108
+ borderLeftStyle: "",
1109
+ borderLeftWidth: "",
1110
+ borderLeftColor: "",
1111
+ borderRightStyle: "",
1112
+ borderRightWidth: "",
1113
+ borderRightColor: "",
1114
+ backgroundColor: "",
1115
+ container_fontSize: "",
1116
+ container_fontWeight: "",
1117
+ container_textDecoration: "",
1118
+ container_textAlign: "left",
1119
+ container_lineHeight: "",
1120
+ container_letterSpacing: ""
1121
+ }
1122
+ },
1123
+ "0-17": {
1124
+ props: {
1125
+ title: "签字",
1126
+ slash: false,
1127
+ slashDirection: "top-left",
1128
+ slashTextLeft: "",
1129
+ slashTextRight: "",
1130
+ centerHorizontally: true,
1131
+ centerVertical: true
1132
+ },
1133
+ style: {
1134
+ width: "50px",
1135
+ height: "",
1136
+ marginTop: "",
1137
+ marginBottom: "",
1138
+ marginLeft: "",
1139
+ marginRight: "",
1140
+ paddingTop: "",
1141
+ paddingBottom: "",
1142
+ paddingLeft: "",
1143
+ paddingRight: "",
1144
+ borderStyle: "",
1145
+ borderWidth: "",
1146
+ borderColor: "",
1147
+ borderTopStyle: "",
1148
+ borderTopWidth: "",
1149
+ borderTopColor: "",
1150
+ borderBottomStyle: "",
1151
+ borderBottomWidth: "",
1152
+ borderBottomColor: "",
1153
+ borderLeftStyle: "",
1154
+ borderLeftWidth: "",
1155
+ borderLeftColor: "",
1156
+ borderRightStyle: "",
1157
+ borderRightWidth: "",
1158
+ borderRightColor: "",
1159
+ backgroundColor: "",
1160
+ container_fontSize: "",
1161
+ container_fontWeight: "",
1162
+ container_textDecoration: "",
1163
+ container_textAlign: "left",
1164
+ container_lineHeight: "",
1165
+ container_letterSpacing: ""
1166
+ }
1167
+ },
1168
+ "1-9": {
1169
+ props: {
1170
+ title: "宫底高度",
1171
+ slash: false,
1172
+ slashDirection: "top-left",
1173
+ slashTextLeft: "",
1174
+ slashTextRight: "",
1175
+ centerHorizontally: true,
1176
+ centerVertical: true
1177
+ },
1178
+ style: {
1179
+ width: "40px",
1180
+ height: "",
1181
+ marginTop: "",
1182
+ marginBottom: "",
1183
+ marginLeft: "",
1184
+ marginRight: "",
1185
+ paddingTop: "",
1186
+ paddingBottom: "",
1187
+ paddingLeft: "",
1188
+ paddingRight: "",
1189
+ borderStyle: "",
1190
+ borderWidth: "",
1191
+ borderColor: "",
1192
+ borderTopStyle: "",
1193
+ borderTopWidth: "",
1194
+ borderTopColor: "",
1195
+ borderBottomStyle: "",
1196
+ borderBottomWidth: "",
1197
+ borderBottomColor: "",
1198
+ borderLeftStyle: "",
1199
+ borderLeftWidth: "",
1200
+ borderLeftColor: "",
1201
+ borderRightStyle: "",
1202
+ borderRightWidth: "",
1203
+ borderRightColor: "",
1204
+ backgroundColor: "",
1205
+ container_fontSize: "",
1206
+ container_fontWeight: "",
1207
+ container_textDecoration: "",
1208
+ container_textAlign: "left",
1209
+ container_lineHeight: "",
1210
+ container_letterSpacing: ""
1211
+ }
1212
+ },
1213
+ "1-10": {
1214
+ props: {
1215
+ title: "子宫",
1216
+ slash: false,
1217
+ slashDirection: "top-left",
1218
+ slashTextLeft: "",
1219
+ slashTextRight: "",
1220
+ centerHorizontally: true,
1221
+ centerVertical: true
1222
+ },
1223
+ style: {
1224
+ width: "",
1225
+ height: "",
1226
+ marginTop: "",
1227
+ marginBottom: "",
1228
+ marginLeft: "",
1229
+ marginRight: "",
1230
+ paddingTop: "",
1231
+ paddingBottom: "",
1232
+ paddingLeft: "",
1233
+ paddingRight: "",
1234
+ borderStyle: "",
1235
+ borderWidth: "",
1236
+ borderColor: "",
1237
+ borderTopStyle: "",
1238
+ borderTopWidth: "",
1239
+ borderTopColor: "",
1240
+ borderBottomStyle: "",
1241
+ borderBottomWidth: "",
1242
+ borderBottomColor: "",
1243
+ borderLeftStyle: "",
1244
+ borderLeftWidth: "",
1245
+ borderLeftColor: "",
1246
+ borderRightStyle: "",
1247
+ borderRightWidth: "",
1248
+ borderRightColor: "",
1249
+ backgroundColor: "",
1250
+ container_fontSize: "",
1251
+ container_fontWeight: "",
1252
+ container_textDecoration: "",
1253
+ container_textAlign: "left",
1254
+ container_lineHeight: "",
1255
+ container_letterSpacing: ""
1256
+ }
1257
+ },
1258
+ "2-10": {
1259
+ props: {
1260
+ title: "软",
1261
+ slash: false,
1262
+ slashDirection: "top-left",
1263
+ slashTextLeft: "",
1264
+ slashTextRight: "",
1265
+ centerHorizontally: true,
1266
+ centerVertical: true
1267
+ },
1268
+ style: {
1269
+ width: "30px",
1270
+ height: "",
1271
+ marginTop: "",
1272
+ marginBottom: "",
1273
+ marginLeft: "",
1274
+ marginRight: "",
1275
+ paddingTop: "",
1276
+ paddingBottom: "",
1277
+ paddingLeft: "",
1278
+ paddingRight: "",
1279
+ borderStyle: "",
1280
+ borderWidth: "",
1281
+ borderColor: "",
1282
+ borderTopStyle: "",
1283
+ borderTopWidth: "",
1284
+ borderTopColor: "",
1285
+ borderBottomStyle: "",
1286
+ borderBottomWidth: "",
1287
+ borderBottomColor: "",
1288
+ borderLeftStyle: "",
1289
+ borderLeftWidth: "",
1290
+ borderLeftColor: "",
1291
+ borderRightStyle: "",
1292
+ borderRightWidth: "",
1293
+ borderRightColor: "",
1294
+ backgroundColor: "",
1295
+ container_fontSize: "",
1296
+ container_fontWeight: "",
1297
+ container_textDecoration: "",
1298
+ container_textAlign: "left",
1299
+ container_lineHeight: "",
1300
+ container_letterSpacing: ""
1301
+ }
1302
+ },
1303
+ "2-11": {
1304
+ props: {
1305
+ title: "硬",
1306
+ slash: false,
1307
+ slashDirection: "top-left",
1308
+ slashTextLeft: "",
1309
+ slashTextRight: "",
1310
+ centerHorizontally: true,
1311
+ centerVertical: true
1312
+ },
1313
+ style: {
1314
+ width: "30px",
1315
+ height: "",
1316
+ marginTop: "",
1317
+ marginBottom: "",
1318
+ marginLeft: "",
1319
+ marginRight: "",
1320
+ paddingTop: "",
1321
+ paddingBottom: "",
1322
+ paddingLeft: "",
1323
+ paddingRight: "",
1324
+ borderStyle: "",
1325
+ borderWidth: "",
1326
+ borderColor: "",
1327
+ borderTopStyle: "",
1328
+ borderTopWidth: "",
1329
+ borderTopColor: "",
1330
+ borderBottomStyle: "",
1331
+ borderBottomWidth: "",
1332
+ borderBottomColor: "",
1333
+ borderLeftStyle: "",
1334
+ borderLeftWidth: "",
1335
+ borderLeftColor: "",
1336
+ borderRightStyle: "",
1337
+ borderRightWidth: "",
1338
+ borderRightColor: "",
1339
+ backgroundColor: "",
1340
+ container_fontSize: "",
1341
+ container_fontWeight: "",
1342
+ container_textDecoration: "",
1343
+ container_textAlign: "left",
1344
+ container_lineHeight: "",
1345
+ container_letterSpacing: ""
1346
+ }
1347
+ },
1348
+ "1-12": {
1349
+ props: {
1350
+ title: "会阴",
1351
+ slash: false,
1352
+ slashDirection: "top-left",
1353
+ slashTextLeft: "",
1354
+ slashTextRight: "",
1355
+ centerHorizontally: true,
1356
+ centerVertical: true
1357
+ },
1358
+ style: {
1359
+ width: "",
1360
+ height: "",
1361
+ marginTop: "",
1362
+ marginBottom: "",
1363
+ marginLeft: "",
1364
+ marginRight: "",
1365
+ paddingTop: "",
1366
+ paddingBottom: "",
1367
+ paddingLeft: "",
1368
+ paddingRight: "",
1369
+ borderStyle: "",
1370
+ borderWidth: "",
1371
+ borderColor: "",
1372
+ borderTopStyle: "",
1373
+ borderTopWidth: "",
1374
+ borderTopColor: "",
1375
+ borderBottomStyle: "",
1376
+ borderBottomWidth: "",
1377
+ borderBottomColor: "",
1378
+ borderLeftStyle: "",
1379
+ borderLeftWidth: "",
1380
+ borderLeftColor: "",
1381
+ borderRightStyle: "",
1382
+ borderRightWidth: "",
1383
+ borderRightColor: "",
1384
+ backgroundColor: "",
1385
+ container_fontSize: "",
1386
+ container_fontWeight: "",
1387
+ container_textDecoration: "",
1388
+ container_textAlign: "left",
1389
+ container_lineHeight: "",
1390
+ container_letterSpacing: ""
1391
+ }
1392
+ },
1393
+ "2-12": {
1394
+ props: {
1395
+ title: "干燥",
1396
+ slash: false,
1397
+ slashDirection: "top-left",
1398
+ slashTextLeft: "",
1399
+ slashTextRight: "",
1400
+ centerHorizontally: true,
1401
+ centerVertical: true
1402
+ },
1403
+ style: {
1404
+ width: "40px",
1405
+ height: "",
1406
+ marginTop: "",
1407
+ marginBottom: "",
1408
+ marginLeft: "",
1409
+ marginRight: "",
1410
+ paddingTop: "",
1411
+ paddingBottom: "",
1412
+ paddingLeft: "",
1413
+ paddingRight: "",
1414
+ borderStyle: "",
1415
+ borderWidth: "",
1416
+ borderColor: "",
1417
+ borderTopStyle: "",
1418
+ borderTopWidth: "",
1419
+ borderTopColor: "",
1420
+ borderBottomStyle: "",
1421
+ borderBottomWidth: "",
1422
+ borderBottomColor: "",
1423
+ borderLeftStyle: "",
1424
+ borderLeftWidth: "",
1425
+ borderLeftColor: "",
1426
+ borderRightStyle: "",
1427
+ borderRightWidth: "",
1428
+ borderRightColor: "",
1429
+ backgroundColor: "",
1430
+ container_fontSize: "",
1431
+ container_fontWeight: "",
1432
+ container_textDecoration: "",
1433
+ container_textAlign: "left",
1434
+ container_lineHeight: "",
1435
+ container_letterSpacing: ""
1436
+ }
1437
+ },
1438
+ "2-13": {
1439
+ props: {
1440
+ title: "红肿",
1441
+ slash: false,
1442
+ slashDirection: "top-left",
1443
+ slashTextLeft: "",
1444
+ slashTextRight: "",
1445
+ centerHorizontally: true,
1446
+ centerVertical: true
1447
+ },
1448
+ style: {
1449
+ width: "40px",
1450
+ height: "",
1451
+ marginTop: "",
1452
+ marginBottom: "",
1453
+ marginLeft: "",
1454
+ marginRight: "",
1455
+ paddingTop: "",
1456
+ paddingBottom: "",
1457
+ paddingLeft: "",
1458
+ paddingRight: "",
1459
+ borderStyle: "",
1460
+ borderWidth: "",
1461
+ borderColor: "",
1462
+ borderTopStyle: "",
1463
+ borderTopWidth: "",
1464
+ borderTopColor: "",
1465
+ borderBottomStyle: "",
1466
+ borderBottomWidth: "",
1467
+ borderBottomColor: "",
1468
+ borderLeftStyle: "",
1469
+ borderLeftWidth: "",
1470
+ borderLeftColor: "",
1471
+ borderRightStyle: "",
1472
+ borderRightWidth: "",
1473
+ borderRightColor: "",
1474
+ backgroundColor: "",
1475
+ container_fontSize: "",
1476
+ container_fontWeight: "",
1477
+ container_textDecoration: "",
1478
+ container_textAlign: "left",
1479
+ container_lineHeight: "",
1480
+ container_letterSpacing: ""
1481
+ }
1482
+ },
1483
+ "1-14": {
1484
+ props: {
1485
+ title: "小便",
1486
+ slash: false,
1487
+ slashDirection: "top-left",
1488
+ slashTextLeft: "",
1489
+ slashTextRight: "",
1490
+ centerHorizontally: true,
1491
+ centerVertical: true
1492
+ },
1493
+ style: {
1494
+ width: "",
1495
+ height: "",
1496
+ marginTop: "",
1497
+ marginBottom: "",
1498
+ marginLeft: "",
1499
+ marginRight: "",
1500
+ paddingTop: "",
1501
+ paddingBottom: "",
1502
+ paddingLeft: "",
1503
+ paddingRight: "",
1504
+ borderStyle: "",
1505
+ borderWidth: "",
1506
+ borderColor: "",
1507
+ borderTopStyle: "",
1508
+ borderTopWidth: "",
1509
+ borderTopColor: "",
1510
+ borderBottomStyle: "",
1511
+ borderBottomWidth: "",
1512
+ borderBottomColor: "",
1513
+ borderLeftStyle: "",
1514
+ borderLeftWidth: "",
1515
+ borderLeftColor: "",
1516
+ borderRightStyle: "",
1517
+ borderRightWidth: "",
1518
+ borderRightColor: "",
1519
+ backgroundColor: "",
1520
+ container_fontSize: "",
1521
+ container_fontWeight: "",
1522
+ container_textDecoration: "",
1523
+ container_textAlign: "left",
1524
+ container_lineHeight: "",
1525
+ container_letterSpacing: ""
1526
+ }
1527
+ },
1528
+ "2-14": {
1529
+ props: {
1530
+ title: "量",
1531
+ slash: false,
1532
+ slashDirection: "top-left",
1533
+ slashTextLeft: "",
1534
+ slashTextRight: "",
1535
+ centerHorizontally: true,
1536
+ centerVertical: true
1537
+ },
1538
+ style: {
1539
+ width: "40px",
1540
+ height: "",
1541
+ marginTop: "",
1542
+ marginBottom: "",
1543
+ marginLeft: "",
1544
+ marginRight: "",
1545
+ paddingTop: "",
1546
+ paddingBottom: "",
1547
+ paddingLeft: "",
1548
+ paddingRight: "",
1549
+ borderStyle: "",
1550
+ borderWidth: "",
1551
+ borderColor: "",
1552
+ borderTopStyle: "",
1553
+ borderTopWidth: "",
1554
+ borderTopColor: "",
1555
+ borderBottomStyle: "",
1556
+ borderBottomWidth: "",
1557
+ borderBottomColor: "",
1558
+ borderLeftStyle: "",
1559
+ borderLeftWidth: "",
1560
+ borderLeftColor: "",
1561
+ borderRightStyle: "",
1562
+ borderRightWidth: "",
1563
+ borderRightColor: "",
1564
+ backgroundColor: "",
1565
+ container_fontSize: "",
1566
+ container_fontWeight: "",
1567
+ container_textDecoration: "",
1568
+ container_textAlign: "left",
1569
+ container_lineHeight: "",
1570
+ container_letterSpacing: ""
1571
+ }
1572
+ },
1573
+ "2-15": {
1574
+ props: {
1575
+ title: "颜色",
1576
+ slash: false,
1577
+ slashDirection: "top-left",
1578
+ slashTextLeft: "",
1579
+ slashTextRight: "",
1580
+ centerHorizontally: true,
1581
+ centerVertical: true
1582
+ },
1583
+ style: {
1584
+ width: "40px",
1585
+ height: "",
1586
+ marginTop: "",
1587
+ marginBottom: "",
1588
+ marginLeft: "",
1589
+ marginRight: "",
1590
+ paddingTop: "",
1591
+ paddingBottom: "",
1592
+ paddingLeft: "",
1593
+ paddingRight: "",
1594
+ borderStyle: "",
1595
+ borderWidth: "",
1596
+ borderColor: "",
1597
+ borderTopStyle: "",
1598
+ borderTopWidth: "",
1599
+ borderTopColor: "",
1600
+ borderBottomStyle: "",
1601
+ borderBottomWidth: "",
1602
+ borderBottomColor: "",
1603
+ borderLeftStyle: "",
1604
+ borderLeftWidth: "",
1605
+ borderLeftColor: "",
1606
+ borderRightStyle: "",
1607
+ borderRightWidth: "",
1608
+ borderRightColor: "",
1609
+ backgroundColor: "",
1610
+ container_fontSize: "",
1611
+ container_fontWeight: "",
1612
+ container_textDecoration: "",
1613
+ container_textAlign: "left",
1614
+ container_lineHeight: "",
1615
+ container_letterSpacing: ""
1616
+ }
1617
+ }
1618
+ }
1619
+ },
1620
+ {
1621
+ id: "35fde8b2-6b35-42f4-ac02-8fb7051cceea",
1622
+ type: "grid",
1623
+ title: "栅格布局",
1624
+ style: {},
1625
+ children: [
1626
+ {
1627
+ id: "d646794c-8a01-46b8-8d16-39e93a3ebe65",
1628
+ type: "grid-item",
1629
+ title: "栅格布局格子",
1630
+ props: {
1631
+ span: 18
1632
+ },
1633
+ style: {},
1634
+ children: []
1635
+ },
1636
+ {
1637
+ id: "314e514c-375c-487f-86ae-0a32d551b80a",
1638
+ type: "grid-item",
1639
+ title: "栅格布局格子",
1640
+ props: {
1641
+ span: 6
1642
+ },
1643
+ style: {},
1644
+ children: [
1645
+ {
1646
+ id: "1b9d059e-4df8-4479-aa72-da83b2dac8f9",
1647
+ type: "dynamicText",
1648
+ title: "动态文本",
1649
+ style: {
1650
+ paddingLeft: "100px",
1651
+ text_paddingLeft: "3px",
1652
+ text_textAlign: "right"
1653
+ },
1654
+ props: {
1655
+ label: "执行护士:",
1656
+ field: "zxhs",
1657
+ isDateTime: false,
1658
+ dateTimeFormat: "",
1659
+ showOnLastPage: true
1660
+ }
1661
+ }
1662
+ ]
1663
+ }
1664
+ ],
1665
+ props: {}
1666
+ }
1667
+ ]
1668
+ };