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.
- package/README.md +29 -0
- package/dist/font/iconfont.css +151 -0
- package/dist/font/iconfont.js +1 -0
- package/dist/font/iconfont.json +247 -0
- package/dist/font/iconfont.ttf +0 -0
- package/dist/font/iconfont.woff +0 -0
- package/dist/font/iconfont.woff2 +0 -0
- package/dist/index.css +1 -0
- package/dist/index.es.js +51053 -0
- package/dist/index.umd.js +1030 -0
- package/dist/print-designer-api/create-style/create-base-component-style.js +116 -0
- package/dist/print-designer-api/create-style/create-complex-table-style.js +472 -0
- package/dist/print-designer-api/create-style/create-form-component-style.js +78 -0
- package/dist/print-designer-api/create-style/create-form-item-style.js +144 -0
- package/dist/print-designer-api/create-style/create-grid-style.js +49 -0
- package/dist/print-designer-api/create-style/create-table-layout-style.js +128 -0
- package/dist/print-designer-api/create-style/create-table-style.js +93 -0
- package/dist/print-designer-api/print-designer-helper.js +912 -0
- package/dist/print-designer-api/print-designer-style-helper.js +96 -0
- package/dist/print-designer-api/print-designer-utils.js +27 -0
- package/dist/print-designer-api/print-global-style/base.less +20 -0
- package/dist/print-designer-api/print-global-style/common.less +3 -0
- package/dist/print-designer-api/print-global-style/custom.less +4 -0
- package/dist/print-designer-api/print-global-style/index.css +812 -0
- package/dist/print-designer-api/print-global-style/index.js +813 -0
- package/dist/print-designer-api/print-global-style/index.less +9 -0
- package/dist/print-designer-api/print-global-style/print-base-component.less +123 -0
- package/dist/print-designer-api/print-global-style/print-container.less +57 -0
- package/dist/print-designer-api/print-global-style/print-continue/index.less +14 -0
- package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/auto-continue-not-span.less +61 -0
- package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/auto-continue-preview.less +12 -0
- package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/auto-continue-span.less +88 -0
- package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/fixed-continue.less +37 -0
- package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/index.less +96 -0
- package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/pagination-preview.less +12 -0
- package/dist/print-designer-api/print-global-style/print-continue/print-complex-table/pagination.less +61 -0
- package/dist/print-designer-api/print-global-style/print-form-component.less +161 -0
- package/dist/print-designer-api/print-global-style/print-form-item.less +162 -0
- package/dist/print-designer-api/print-global-style/printing.less +16 -0
- package/dist/print-designer-api/print-soket.js +31 -0
- package/dist/print-designer-api/use-create-html/create-html-utils.js +43 -0
- package/dist/print-designer-api/use-create-html/index.js +287 -0
- package/dist/print-designer-api/use-create-html/use-base-component-helper.js +129 -0
- package/dist/print-designer-api/use-create-html/use-complex-table-helper/complex-table-tools.js +129 -0
- package/dist/print-designer-api/use-create-html/use-complex-table-helper/create-table-header.js +111 -0
- package/dist/print-designer-api/use-create-html/use-complex-table-helper/index.js +87 -0
- package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-auto-height-preview.js +84 -0
- package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-auto-height.js +379 -0
- package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-default.js +75 -0
- package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-fixed-height.js +220 -0
- package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-pagination-preview.js +84 -0
- package/dist/print-designer-api/use-create-html/use-complex-table-helper/use-pagination.js +272 -0
- package/dist/print-designer-api/use-create-html/use-form-component-helper.js +164 -0
- package/dist/print-designer-api/use-create-html/use-format/index.js +102 -0
- package/dist/print-designer-api/use-create-html/use-format/use-complex-table-auto.js +337 -0
- package/dist/print-designer-api/use-create-html/use-format/use-complex-table-fiexd.js +233 -0
- package/dist/print-designer-api/use-create-html/use-format/use-complex-table-pagination.js +286 -0
- package/dist/print-designer-api/use-create-html/use-grid-helper.js +35 -0
- package/dist/print-designer-api/use-create-html/use-table-layout-helper.js +213 -0
- package/dist/print-designer-api/use-create-print-js/index.js +147 -0
- package/dist/print-designer-api/use-create-print-js/use-base-component-helper.js +54 -0
- package/dist/print-designer-api/use-create-print-js/use-form-component-helper.js +4 -0
- package/dist/print-designer-api/use-create-print-js/use-table-layout-helper.js +5 -0
- package/dist/print-designer-images/demo.jpg +0 -0
- package/dist/print-designer-images/demo02.jpg +0 -0
- package/dist/style/default-style.css +137 -0
- package/dist/style/main.less +66 -0
- package/dist/test/base/designer-config.js +594 -0
- package/dist/test/base/index.js +3 -0
- package/dist/test/base/print-data.js +40 -0
- package/dist/test/complex-table/designer-config.js +1668 -0
- package/dist/test/complex-table/index.js +3 -0
- package/dist/test/complex-table/print-data.js +294 -0
- package/dist/test/form/designer-config.js +2057 -0
- package/dist/test/form/index.js +3 -0
- package/dist/test/form/print-data.js +38 -0
- package/dist/test/index.js +4 -0
- package/dist/wui-print-designer-plugins/JsBarcode.all.min.js +2 -0
- package/dist/wui-print-designer-plugins/qrcode.min.js +1 -0
- package/package.json +65 -0
|
@@ -0,0 +1,2057 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
printConfig: {
|
|
3
|
+
templateTitle: "",
|
|
4
|
+
templateCode: "",
|
|
5
|
+
pageSize: "A4",
|
|
6
|
+
servePrintType: "pdf",
|
|
7
|
+
printer: "",
|
|
8
|
+
silent: true,
|
|
9
|
+
style: {
|
|
10
|
+
paddingTop: "30px",
|
|
11
|
+
paddingBottom: "30px",
|
|
12
|
+
paddingLeft: "30px",
|
|
13
|
+
paddingRight: "30px",
|
|
14
|
+
backgroundColor: "#fff",
|
|
15
|
+
fontSize: "14px"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
formConfig: {
|
|
19
|
+
props: {
|
|
20
|
+
labelWidth: "0px",
|
|
21
|
+
labelPosition: "left",
|
|
22
|
+
size: "small"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
layoutConfig: [
|
|
26
|
+
{
|
|
27
|
+
id: "84c90f32-7f56-4554-a6fd-3df15f6c7b0e",
|
|
28
|
+
type: "text",
|
|
29
|
+
title: "文本",
|
|
30
|
+
style: {
|
|
31
|
+
paddingTop: "5px",
|
|
32
|
+
paddingBottom: "5px",
|
|
33
|
+
paddingLeft: "5px",
|
|
34
|
+
paddingRight: "5px",
|
|
35
|
+
fontSize: "16px",
|
|
36
|
+
fontWeight: 700,
|
|
37
|
+
textAlign: "center"
|
|
38
|
+
},
|
|
39
|
+
props: {
|
|
40
|
+
defaultContent: "锁骨骨折护理效果评价量表"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
id: "13468682-e9f4-4389-8498-951429a05955",
|
|
45
|
+
type: "grid",
|
|
46
|
+
title: "栅格布局",
|
|
47
|
+
style: {},
|
|
48
|
+
children: [
|
|
49
|
+
{
|
|
50
|
+
id: "3f097f4d-d865-4135-b468-51a8e4994579",
|
|
51
|
+
type: "grid-item",
|
|
52
|
+
title: "栅格布局格子",
|
|
53
|
+
props: {
|
|
54
|
+
span: 3
|
|
55
|
+
},
|
|
56
|
+
style: {},
|
|
57
|
+
children: [
|
|
58
|
+
{
|
|
59
|
+
id: "fc0c04ae-fee3-4e3f-b9d1-2acb9164309d",
|
|
60
|
+
type: "dynamicText",
|
|
61
|
+
title: "动态文本",
|
|
62
|
+
style: {
|
|
63
|
+
label_paddingLeft: "5px",
|
|
64
|
+
label_fontWeight: 700,
|
|
65
|
+
text_paddingLeft: "3px",
|
|
66
|
+
text_textAlign: "left",
|
|
67
|
+
text_borderBottomStyle: "solid",
|
|
68
|
+
text_borderBottomWidth: "1px",
|
|
69
|
+
text_borderBottomColor: "#6D6D6D"
|
|
70
|
+
},
|
|
71
|
+
props: {
|
|
72
|
+
label: "科室:",
|
|
73
|
+
field: "dept"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
id: "3e6b3e02-90a0-4f6f-9edb-4fc29820b513",
|
|
80
|
+
type: "grid-item",
|
|
81
|
+
title: "栅格布局格子",
|
|
82
|
+
props: {
|
|
83
|
+
span: 3
|
|
84
|
+
},
|
|
85
|
+
style: {},
|
|
86
|
+
children: [
|
|
87
|
+
{
|
|
88
|
+
id: "5ab52c87-2b9f-4192-b05d-af076f481a85",
|
|
89
|
+
type: "dynamicText",
|
|
90
|
+
title: "动态文本",
|
|
91
|
+
style: {
|
|
92
|
+
label_paddingLeft: "5px",
|
|
93
|
+
label_fontWeight: 700,
|
|
94
|
+
text_paddingLeft: "3px",
|
|
95
|
+
text_textAlign: "left",
|
|
96
|
+
text_borderBottomStyle: "solid",
|
|
97
|
+
text_borderBottomWidth: "1px",
|
|
98
|
+
text_borderBottomColor: "#6D6D6D"
|
|
99
|
+
},
|
|
100
|
+
props: {
|
|
101
|
+
label: "床号:",
|
|
102
|
+
field: "bedNumber"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
id: "41d19a56-a117-41c2-8541-de54c50d4108",
|
|
109
|
+
type: "grid-item",
|
|
110
|
+
title: "栅格布局格子",
|
|
111
|
+
props: {
|
|
112
|
+
span: 3
|
|
113
|
+
},
|
|
114
|
+
style: {},
|
|
115
|
+
children: [
|
|
116
|
+
{
|
|
117
|
+
id: "bdeacd8c-891a-4eab-b6b8-50a2c82710bd",
|
|
118
|
+
type: "dynamicText",
|
|
119
|
+
title: "动态文本",
|
|
120
|
+
style: {
|
|
121
|
+
label_paddingLeft: "5px",
|
|
122
|
+
label_fontWeight: 700,
|
|
123
|
+
text_paddingLeft: "3px",
|
|
124
|
+
text_textAlign: "left",
|
|
125
|
+
text_borderBottomStyle: "solid",
|
|
126
|
+
text_borderBottomWidth: "1px",
|
|
127
|
+
text_borderBottomColor: "#6D6D6D"
|
|
128
|
+
},
|
|
129
|
+
props: {
|
|
130
|
+
label: "姓名:",
|
|
131
|
+
field: "name"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
id: "f1b02567-cb44-4847-8ebd-48bf8b2da428",
|
|
138
|
+
type: "grid-item",
|
|
139
|
+
title: "栅格布局格子",
|
|
140
|
+
props: {
|
|
141
|
+
span: 4
|
|
142
|
+
},
|
|
143
|
+
style: {},
|
|
144
|
+
children: [
|
|
145
|
+
{
|
|
146
|
+
id: "1e37a386-687c-44a6-819c-cbdbcae692da",
|
|
147
|
+
type: "dynamicText",
|
|
148
|
+
title: "动态文本",
|
|
149
|
+
style: {
|
|
150
|
+
label_paddingLeft: "5px",
|
|
151
|
+
label_fontWeight: 700,
|
|
152
|
+
text_paddingLeft: "3px",
|
|
153
|
+
text_textAlign: "left",
|
|
154
|
+
text_borderBottomStyle: "solid",
|
|
155
|
+
text_borderBottomWidth: "1px",
|
|
156
|
+
text_borderBottomColor: "#6D6D6D"
|
|
157
|
+
},
|
|
158
|
+
props: {
|
|
159
|
+
label: "住院号:",
|
|
160
|
+
field: "hospitalNumber"
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
id: "4f46fff5-3a12-48ac-ba45-6e513568fc57",
|
|
167
|
+
type: "grid-item",
|
|
168
|
+
title: "栅格布局格子",
|
|
169
|
+
props: {
|
|
170
|
+
span: 4
|
|
171
|
+
},
|
|
172
|
+
style: {},
|
|
173
|
+
children: [
|
|
174
|
+
{
|
|
175
|
+
id: "51475c35-20bb-4a2c-bf64-7e1af84cb1aa",
|
|
176
|
+
type: "dynamicText",
|
|
177
|
+
title: "动态文本",
|
|
178
|
+
style: {
|
|
179
|
+
label_paddingLeft: "5px",
|
|
180
|
+
label_fontWeight: 700,
|
|
181
|
+
text_paddingLeft: "3px",
|
|
182
|
+
text_textAlign: "left",
|
|
183
|
+
text_borderBottomStyle: "solid",
|
|
184
|
+
text_borderBottomWidth: "1px",
|
|
185
|
+
text_borderBottomColor: "#6D6D6D"
|
|
186
|
+
},
|
|
187
|
+
props: {
|
|
188
|
+
label: "诊断:",
|
|
189
|
+
field: "diagnose"
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
]
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
id: "04665c51-9390-4ffd-ae28-0488c6b2691e",
|
|
196
|
+
type: "grid-item",
|
|
197
|
+
title: "栅格布局格子",
|
|
198
|
+
props: {
|
|
199
|
+
span: 7
|
|
200
|
+
},
|
|
201
|
+
style: {},
|
|
202
|
+
children: [
|
|
203
|
+
{
|
|
204
|
+
id: "114c6e74-a11a-480a-ad89-e3d24d8142da",
|
|
205
|
+
type: "dynamicText",
|
|
206
|
+
title: "动态文本",
|
|
207
|
+
style: {
|
|
208
|
+
label_paddingLeft: "5px",
|
|
209
|
+
label_fontWeight: 700,
|
|
210
|
+
text_paddingLeft: "3px",
|
|
211
|
+
text_textAlign: "left",
|
|
212
|
+
text_borderBottomStyle: "solid",
|
|
213
|
+
text_borderBottomWidth: "1px",
|
|
214
|
+
text_borderBottomColor: "#6D6D6D"
|
|
215
|
+
},
|
|
216
|
+
props: {
|
|
217
|
+
label: "护理方案评价得分:",
|
|
218
|
+
field: "score"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
props: {}
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
id: "a5d33e29-03bf-45e0-a3cf-ae2557f5c36d",
|
|
228
|
+
type: "tableLayout",
|
|
229
|
+
title: "表格布局",
|
|
230
|
+
style: {
|
|
231
|
+
marginTop: "5px",
|
|
232
|
+
borderTopStyle: "solid",
|
|
233
|
+
borderTopWidth: "1px",
|
|
234
|
+
borderTopColor: "#090909",
|
|
235
|
+
borderLeftStyle: "solid",
|
|
236
|
+
borderLeftWidth: "1px",
|
|
237
|
+
borderLeftColor: "#090909",
|
|
238
|
+
cell_container_minHeight: "20px",
|
|
239
|
+
cell_paddingTop: "2px",
|
|
240
|
+
cell_paddingBottom: "2px",
|
|
241
|
+
cell_paddingLeft: "2px",
|
|
242
|
+
cell_paddingRight: "2px",
|
|
243
|
+
cell_borderBottomStyle: "solid",
|
|
244
|
+
cell_borderBottomWidth: "1px",
|
|
245
|
+
cell_borderBottomColor: "#090909",
|
|
246
|
+
cell_borderRightStyle: "solid",
|
|
247
|
+
cell_borderRightWidth: "1px",
|
|
248
|
+
cell_borderRightColor: "#090909",
|
|
249
|
+
cell_textAlign: "left"
|
|
250
|
+
},
|
|
251
|
+
children: [
|
|
252
|
+
{
|
|
253
|
+
id: "04484d19-8bad-463a-9bcd-81d56a268664",
|
|
254
|
+
type: "input",
|
|
255
|
+
title: "输入框",
|
|
256
|
+
rowIndex: 2,
|
|
257
|
+
colIndex: 5,
|
|
258
|
+
style: {},
|
|
259
|
+
props: {
|
|
260
|
+
field: "beforeDtae1",
|
|
261
|
+
defaultValue: ""
|
|
262
|
+
},
|
|
263
|
+
formComponentProps: {
|
|
264
|
+
placeholder: "",
|
|
265
|
+
size: ""
|
|
266
|
+
},
|
|
267
|
+
formItemProps: {
|
|
268
|
+
label: "",
|
|
269
|
+
labelWidth: "",
|
|
270
|
+
labelPosition: ""
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
id: "9eefe074-8f92-4461-982d-16c835784eb5",
|
|
275
|
+
type: "text",
|
|
276
|
+
title: "文本",
|
|
277
|
+
rowIndex: 2,
|
|
278
|
+
colIndex: 0,
|
|
279
|
+
style: {
|
|
280
|
+
paddingTop: "0px",
|
|
281
|
+
paddingBottom: "0px",
|
|
282
|
+
paddingLeft: "0px",
|
|
283
|
+
paddingRight: "0px",
|
|
284
|
+
fontSize: "14px",
|
|
285
|
+
textAlign: "center"
|
|
286
|
+
},
|
|
287
|
+
props: {
|
|
288
|
+
defaultContent: "伤肢疼痛"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
id: "3baa579c-b130-456f-b852-e22447ac5d62",
|
|
293
|
+
type: "text",
|
|
294
|
+
title: "文本",
|
|
295
|
+
rowIndex: 0,
|
|
296
|
+
colIndex: 0,
|
|
297
|
+
style: {
|
|
298
|
+
fontSize: "14px",
|
|
299
|
+
fontWeight: 700,
|
|
300
|
+
textAlign: "center"
|
|
301
|
+
},
|
|
302
|
+
props: {
|
|
303
|
+
defaultContent: "症状"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
id: "1897c907-39cf-4db9-9322-7f20ca5c0b14",
|
|
308
|
+
type: "text",
|
|
309
|
+
title: "文本",
|
|
310
|
+
rowIndex: 0,
|
|
311
|
+
colIndex: 1,
|
|
312
|
+
style: {
|
|
313
|
+
fontSize: "14px",
|
|
314
|
+
fontWeight: 700,
|
|
315
|
+
textAlign: "center"
|
|
316
|
+
},
|
|
317
|
+
props: {
|
|
318
|
+
defaultContent: "无(0分)"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
id: "4e776f48-47e0-4ae0-81c0-2d48a67d7609",
|
|
323
|
+
type: "text",
|
|
324
|
+
title: "文本",
|
|
325
|
+
rowIndex: 0,
|
|
326
|
+
colIndex: 2,
|
|
327
|
+
style: {
|
|
328
|
+
fontSize: "14px",
|
|
329
|
+
fontWeight: 700,
|
|
330
|
+
textAlign: "center"
|
|
331
|
+
},
|
|
332
|
+
props: {
|
|
333
|
+
defaultContent: "轻(2分)"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
id: "ef47346e-266c-40da-a6d9-7ee28862f5ff",
|
|
338
|
+
type: "text",
|
|
339
|
+
title: "文本",
|
|
340
|
+
rowIndex: 0,
|
|
341
|
+
colIndex: 3,
|
|
342
|
+
style: {
|
|
343
|
+
fontSize: "14px",
|
|
344
|
+
fontWeight: 700,
|
|
345
|
+
textAlign: "center"
|
|
346
|
+
},
|
|
347
|
+
props: {
|
|
348
|
+
defaultContent: "中(4分)"
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
id: "793e0f2e-9ed0-4276-94e0-de66384dfece",
|
|
353
|
+
type: "text",
|
|
354
|
+
title: "文本",
|
|
355
|
+
rowIndex: 0,
|
|
356
|
+
colIndex: 4,
|
|
357
|
+
style: {
|
|
358
|
+
fontSize: "14px",
|
|
359
|
+
fontWeight: 700,
|
|
360
|
+
textAlign: "center"
|
|
361
|
+
},
|
|
362
|
+
props: {
|
|
363
|
+
defaultContent: "重(6分)"
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
id: "e55b4ea3-5cf8-4b02-ac5c-7f213b55eaee",
|
|
368
|
+
type: "text",
|
|
369
|
+
title: "文本",
|
|
370
|
+
rowIndex: 0,
|
|
371
|
+
colIndex: 5,
|
|
372
|
+
style: {
|
|
373
|
+
fontSize: "14px",
|
|
374
|
+
fontWeight: 700,
|
|
375
|
+
textAlign: "center"
|
|
376
|
+
},
|
|
377
|
+
props: {
|
|
378
|
+
defaultContent: "实施前评价"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
id: "d260d5fd-c1a2-499b-9ec8-4da4d827291b",
|
|
383
|
+
type: "text",
|
|
384
|
+
title: "文本",
|
|
385
|
+
rowIndex: 0,
|
|
386
|
+
colIndex: 7,
|
|
387
|
+
style: {
|
|
388
|
+
fontSize: "14px",
|
|
389
|
+
fontWeight: 700,
|
|
390
|
+
textAlign: "center"
|
|
391
|
+
},
|
|
392
|
+
props: {
|
|
393
|
+
defaultContent: "实施前评价"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
id: "06492de6-741d-4d33-97d1-ee789c4f3b61",
|
|
398
|
+
type: "text",
|
|
399
|
+
title: "文本",
|
|
400
|
+
rowIndex: 0,
|
|
401
|
+
colIndex: 9,
|
|
402
|
+
style: {
|
|
403
|
+
fontSize: "14px",
|
|
404
|
+
fontWeight: 700,
|
|
405
|
+
textAlign: "center"
|
|
406
|
+
},
|
|
407
|
+
props: {
|
|
408
|
+
defaultContent: "护理效果得分"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
id: "35ef268a-cb3e-4fff-8c90-7373817a6ae9",
|
|
413
|
+
type: "text",
|
|
414
|
+
title: "文本",
|
|
415
|
+
rowIndex: 1,
|
|
416
|
+
colIndex: 5,
|
|
417
|
+
style: {
|
|
418
|
+
paddingTop: "5px",
|
|
419
|
+
paddingBottom: "5px",
|
|
420
|
+
paddingLeft: "5px",
|
|
421
|
+
paddingRight: "5px",
|
|
422
|
+
fontSize: "14px",
|
|
423
|
+
fontWeight: 700,
|
|
424
|
+
textAlign: "center"
|
|
425
|
+
},
|
|
426
|
+
props: {
|
|
427
|
+
defaultContent: "日期"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
id: "00da491b-b15d-49d7-88c9-876a0e7e57ea",
|
|
432
|
+
type: "text",
|
|
433
|
+
title: "文本",
|
|
434
|
+
rowIndex: 1,
|
|
435
|
+
colIndex: 6,
|
|
436
|
+
style: {
|
|
437
|
+
paddingTop: "5px",
|
|
438
|
+
paddingBottom: "5px",
|
|
439
|
+
paddingLeft: "5px",
|
|
440
|
+
paddingRight: "5px",
|
|
441
|
+
fontSize: "14px",
|
|
442
|
+
fontWeight: 700,
|
|
443
|
+
textAlign: "center"
|
|
444
|
+
},
|
|
445
|
+
props: {
|
|
446
|
+
defaultContent: "分值"
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
id: "0121c4b4-74fd-424e-bf63-dbad7cff4264",
|
|
451
|
+
type: "text",
|
|
452
|
+
title: "文本",
|
|
453
|
+
rowIndex: 1,
|
|
454
|
+
colIndex: 7,
|
|
455
|
+
style: {
|
|
456
|
+
paddingTop: "5px",
|
|
457
|
+
paddingBottom: "5px",
|
|
458
|
+
paddingLeft: "5px",
|
|
459
|
+
paddingRight: "5px",
|
|
460
|
+
fontSize: "14px",
|
|
461
|
+
fontWeight: 700,
|
|
462
|
+
textAlign: "center"
|
|
463
|
+
},
|
|
464
|
+
props: {
|
|
465
|
+
defaultContent: "日期"
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
id: "68a5ec79-50ef-40f0-8e18-7e9d48fda224",
|
|
470
|
+
type: "text",
|
|
471
|
+
title: "文本",
|
|
472
|
+
rowIndex: 1,
|
|
473
|
+
colIndex: 8,
|
|
474
|
+
style: {
|
|
475
|
+
paddingTop: "5px",
|
|
476
|
+
paddingBottom: "5px",
|
|
477
|
+
paddingLeft: "5px",
|
|
478
|
+
paddingRight: "5px",
|
|
479
|
+
fontSize: "14px",
|
|
480
|
+
fontWeight: 700,
|
|
481
|
+
textAlign: "center"
|
|
482
|
+
},
|
|
483
|
+
props: {
|
|
484
|
+
defaultContent: "分值"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
id: "3b33c2db-a721-470a-84a2-3cecd8c1c96f",
|
|
489
|
+
type: "text",
|
|
490
|
+
title: "文本",
|
|
491
|
+
rowIndex: 3,
|
|
492
|
+
colIndex: 0,
|
|
493
|
+
style: {
|
|
494
|
+
paddingTop: "0px",
|
|
495
|
+
paddingBottom: "0px",
|
|
496
|
+
paddingLeft: "0px",
|
|
497
|
+
paddingRight: "0px",
|
|
498
|
+
fontSize: "14px",
|
|
499
|
+
textAlign: "center"
|
|
500
|
+
},
|
|
501
|
+
props: {
|
|
502
|
+
defaultContent: "伤肢麻木"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
id: "360e17ac-f9d6-4a31-86b6-1f9d4adaf5e5",
|
|
507
|
+
type: "text",
|
|
508
|
+
title: "文本",
|
|
509
|
+
rowIndex: 4,
|
|
510
|
+
colIndex: 0,
|
|
511
|
+
style: {
|
|
512
|
+
paddingTop: "0px",
|
|
513
|
+
paddingBottom: "0px",
|
|
514
|
+
paddingLeft: "0px",
|
|
515
|
+
paddingRight: "0px",
|
|
516
|
+
fontSize: "14px",
|
|
517
|
+
textAlign: "center"
|
|
518
|
+
},
|
|
519
|
+
props: {
|
|
520
|
+
defaultContent: "伤肢功能障碍\n"
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
id: "d0c8a955-6550-4f73-a0b6-117fe4000dda",
|
|
525
|
+
type: "text",
|
|
526
|
+
title: "文本",
|
|
527
|
+
rowIndex: 5,
|
|
528
|
+
colIndex: 0,
|
|
529
|
+
style: {
|
|
530
|
+
paddingTop: "0px",
|
|
531
|
+
paddingBottom: "0px",
|
|
532
|
+
paddingLeft: "0px",
|
|
533
|
+
paddingRight: "0px",
|
|
534
|
+
fontSize: "14px",
|
|
535
|
+
textAlign: "center"
|
|
536
|
+
},
|
|
537
|
+
props: {
|
|
538
|
+
defaultContent: "患肢肿胀"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
id: "3b897586-e66e-4fdd-a6a2-b14968bd6b5e",
|
|
543
|
+
type: "text",
|
|
544
|
+
title: "文本",
|
|
545
|
+
rowIndex: 6,
|
|
546
|
+
colIndex: 0,
|
|
547
|
+
style: {
|
|
548
|
+
paddingTop: "0px",
|
|
549
|
+
paddingBottom: "0px",
|
|
550
|
+
paddingLeft: "0px",
|
|
551
|
+
paddingRight: "0px",
|
|
552
|
+
fontSize: "14px",
|
|
553
|
+
textAlign: "center"
|
|
554
|
+
},
|
|
555
|
+
props: {
|
|
556
|
+
defaultContent: "伤肢畸形"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
id: "105675ff-caba-4a8c-8d94-886cff392a64",
|
|
561
|
+
type: "text",
|
|
562
|
+
title: "文本",
|
|
563
|
+
rowIndex: 7,
|
|
564
|
+
colIndex: 0,
|
|
565
|
+
style: {
|
|
566
|
+
paddingTop: "0px",
|
|
567
|
+
paddingBottom: "0px",
|
|
568
|
+
paddingLeft: "0px",
|
|
569
|
+
paddingRight: "0px",
|
|
570
|
+
fontSize: "14px",
|
|
571
|
+
textAlign: "center"
|
|
572
|
+
},
|
|
573
|
+
props: {
|
|
574
|
+
defaultContent: "末梢循环"
|
|
575
|
+
}
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
id: "a27d907e-b32c-4862-8a1a-f24145ee482f",
|
|
579
|
+
type: "text",
|
|
580
|
+
title: "文本",
|
|
581
|
+
rowIndex: 2,
|
|
582
|
+
colIndex: 1,
|
|
583
|
+
style: {
|
|
584
|
+
paddingTop: "0px",
|
|
585
|
+
paddingBottom: "0px",
|
|
586
|
+
paddingLeft: "0px",
|
|
587
|
+
paddingRight: "0px",
|
|
588
|
+
fontSize: "14px",
|
|
589
|
+
textAlign: "left"
|
|
590
|
+
},
|
|
591
|
+
props: {
|
|
592
|
+
defaultContent: "无疼痛(FPS-R评分:0分)"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
id: "58831568-1d53-4dfb-ac85-4118155e51af",
|
|
597
|
+
type: "text",
|
|
598
|
+
title: "文本",
|
|
599
|
+
rowIndex: 3,
|
|
600
|
+
colIndex: 1,
|
|
601
|
+
style: {
|
|
602
|
+
paddingTop: "0px",
|
|
603
|
+
paddingBottom: "0px",
|
|
604
|
+
paddingLeft: "0px",
|
|
605
|
+
paddingRight: "0px",
|
|
606
|
+
fontSize: "14px",
|
|
607
|
+
textAlign: "left"
|
|
608
|
+
},
|
|
609
|
+
props: {
|
|
610
|
+
defaultContent: "无麻木"
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
id: "981a0a20-2c38-4573-8721-41ac6cfc99da",
|
|
615
|
+
type: "text",
|
|
616
|
+
title: "文本",
|
|
617
|
+
rowIndex: 4,
|
|
618
|
+
colIndex: 1,
|
|
619
|
+
style: {
|
|
620
|
+
paddingTop: "0px",
|
|
621
|
+
paddingBottom: "0px",
|
|
622
|
+
paddingLeft: "0px",
|
|
623
|
+
paddingRight: "0px",
|
|
624
|
+
fontSize: "14px",
|
|
625
|
+
textAlign: "center"
|
|
626
|
+
},
|
|
627
|
+
props: {
|
|
628
|
+
defaultContent: "无"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
id: "f1d57b04-23e3-4689-b8a9-04dcb80df9fb",
|
|
633
|
+
type: "text",
|
|
634
|
+
title: "文本",
|
|
635
|
+
rowIndex: 5,
|
|
636
|
+
colIndex: 1,
|
|
637
|
+
style: {
|
|
638
|
+
paddingTop: "0px",
|
|
639
|
+
paddingBottom: "0px",
|
|
640
|
+
paddingLeft: "0px",
|
|
641
|
+
paddingRight: "0px",
|
|
642
|
+
fontSize: "14px",
|
|
643
|
+
textAlign: "left"
|
|
644
|
+
},
|
|
645
|
+
props: {
|
|
646
|
+
defaultContent: "有皮纹,与健侧无差异"
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
id: "2b9e12bc-54db-4255-a9c9-3e406b2749d5",
|
|
651
|
+
type: "text",
|
|
652
|
+
title: "文本",
|
|
653
|
+
rowIndex: 6,
|
|
654
|
+
colIndex: 1,
|
|
655
|
+
style: {
|
|
656
|
+
paddingTop: "0px",
|
|
657
|
+
paddingBottom: "0px",
|
|
658
|
+
paddingLeft: "0px",
|
|
659
|
+
paddingRight: "0px",
|
|
660
|
+
fontSize: "14px",
|
|
661
|
+
textAlign: "center"
|
|
662
|
+
},
|
|
663
|
+
props: {
|
|
664
|
+
defaultContent: "无"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
id: "865d99ce-929a-4fc4-8efc-65e8e51f4d7b",
|
|
669
|
+
type: "text",
|
|
670
|
+
title: "文本",
|
|
671
|
+
rowIndex: 7,
|
|
672
|
+
colIndex: 1,
|
|
673
|
+
style: {
|
|
674
|
+
paddingTop: "0px",
|
|
675
|
+
paddingBottom: "0px",
|
|
676
|
+
paddingLeft: "0px",
|
|
677
|
+
paddingRight: "0px",
|
|
678
|
+
fontSize: "14px",
|
|
679
|
+
textAlign: "center"
|
|
680
|
+
},
|
|
681
|
+
props: {
|
|
682
|
+
defaultContent: "无"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
id: "8a45df4d-1e17-4357-924f-50217a7fbe94",
|
|
687
|
+
type: "text",
|
|
688
|
+
title: "文本",
|
|
689
|
+
rowIndex: 2,
|
|
690
|
+
colIndex: 2,
|
|
691
|
+
style: {
|
|
692
|
+
paddingTop: "0px",
|
|
693
|
+
paddingBottom: "0px",
|
|
694
|
+
paddingLeft: "0px",
|
|
695
|
+
paddingRight: "0px",
|
|
696
|
+
fontSize: "14px",
|
|
697
|
+
textAlign: "left"
|
|
698
|
+
},
|
|
699
|
+
props: {
|
|
700
|
+
defaultContent: "轻度疼痛(FPS-R评分:2-4分)"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
id: "8e6a5f0e-5040-42e1-b4cd-fcd9dab4311b",
|
|
705
|
+
type: "text",
|
|
706
|
+
title: "文本",
|
|
707
|
+
rowIndex: 3,
|
|
708
|
+
colIndex: 2,
|
|
709
|
+
style: {
|
|
710
|
+
paddingTop: "0px",
|
|
711
|
+
paddingBottom: "0px",
|
|
712
|
+
paddingLeft: "0px",
|
|
713
|
+
paddingRight: "0px",
|
|
714
|
+
fontSize: "14px",
|
|
715
|
+
textAlign: "left"
|
|
716
|
+
},
|
|
717
|
+
props: {
|
|
718
|
+
defaultContent: "轻微麻木,时作时止"
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
id: "226612e6-e463-49e2-9e25-f218547bb967",
|
|
723
|
+
type: "text",
|
|
724
|
+
title: "文本",
|
|
725
|
+
rowIndex: 4,
|
|
726
|
+
colIndex: 2,
|
|
727
|
+
style: {
|
|
728
|
+
paddingTop: "0px",
|
|
729
|
+
paddingBottom: "0px",
|
|
730
|
+
paddingLeft: "0px",
|
|
731
|
+
paddingRight: "0px",
|
|
732
|
+
fontSize: "14px",
|
|
733
|
+
textAlign: "left"
|
|
734
|
+
},
|
|
735
|
+
props: {
|
|
736
|
+
defaultContent: "伤肢能主动进行屈伸活动"
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
id: "ea89db9f-c40c-4173-bf98-2715bfe4c0e1",
|
|
741
|
+
type: "text",
|
|
742
|
+
title: "文本",
|
|
743
|
+
rowIndex: 5,
|
|
744
|
+
colIndex: 2,
|
|
745
|
+
style: {
|
|
746
|
+
paddingTop: "0px",
|
|
747
|
+
paddingBottom: "0px",
|
|
748
|
+
paddingLeft: "0px",
|
|
749
|
+
paddingRight: "0px",
|
|
750
|
+
fontSize: "14px",
|
|
751
|
+
textAlign: "left"
|
|
752
|
+
},
|
|
753
|
+
props: {
|
|
754
|
+
defaultContent: "皮纹消失,皮肤张力比健侧大"
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
id: "c9c022e5-26cf-4795-9f3e-be445224a480",
|
|
759
|
+
type: "text",
|
|
760
|
+
title: "文本",
|
|
761
|
+
rowIndex: 6,
|
|
762
|
+
colIndex: 2,
|
|
763
|
+
style: {
|
|
764
|
+
paddingTop: "0px",
|
|
765
|
+
paddingBottom: "0px",
|
|
766
|
+
paddingLeft: "0px",
|
|
767
|
+
paddingRight: "0px",
|
|
768
|
+
fontSize: "14px",
|
|
769
|
+
textAlign: "left"
|
|
770
|
+
},
|
|
771
|
+
props: {
|
|
772
|
+
defaultContent: "伤肢有轻度短缩,影响正常的平衡"
|
|
773
|
+
}
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
id: "38bde1a3-2c6f-427d-a19c-f7e2b597c27a",
|
|
777
|
+
type: "text",
|
|
778
|
+
title: "文本",
|
|
779
|
+
rowIndex: 7,
|
|
780
|
+
colIndex: 2,
|
|
781
|
+
style: {
|
|
782
|
+
paddingTop: "0px",
|
|
783
|
+
paddingBottom: "0px",
|
|
784
|
+
paddingLeft: "0px",
|
|
785
|
+
paddingRight: "0px",
|
|
786
|
+
fontSize: "14px",
|
|
787
|
+
textAlign: "left"
|
|
788
|
+
},
|
|
789
|
+
props: {
|
|
790
|
+
defaultContent: "末梢发凉、感觉迟钝"
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
id: "3eaebfe0-a204-4a47-bba0-5cbda48e139f",
|
|
795
|
+
type: "text",
|
|
796
|
+
title: "文本",
|
|
797
|
+
rowIndex: 2,
|
|
798
|
+
colIndex: 3,
|
|
799
|
+
style: {
|
|
800
|
+
paddingTop: "0px",
|
|
801
|
+
paddingBottom: "0px",
|
|
802
|
+
paddingLeft: "0px",
|
|
803
|
+
paddingRight: "0px",
|
|
804
|
+
fontSize: "14px",
|
|
805
|
+
textAlign: "left"
|
|
806
|
+
},
|
|
807
|
+
props: {
|
|
808
|
+
defaultContent: "中度疼痛(FPS-R评分:6-8分)"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
id: "09870009-a1a1-4a2c-aa01-dd1ec3ca3da6",
|
|
813
|
+
type: "text",
|
|
814
|
+
title: "文本",
|
|
815
|
+
rowIndex: 3,
|
|
816
|
+
colIndex: 3,
|
|
817
|
+
style: {
|
|
818
|
+
paddingTop: "0px",
|
|
819
|
+
paddingBottom: "0px",
|
|
820
|
+
paddingLeft: "0px",
|
|
821
|
+
paddingRight: "0px",
|
|
822
|
+
fontSize: "14px",
|
|
823
|
+
textAlign: "left"
|
|
824
|
+
},
|
|
825
|
+
props: {
|
|
826
|
+
defaultContent: "麻木可忍,时常发作"
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
id: "4fd6a676-c105-4cd4-80f6-6dd0c05636f4",
|
|
831
|
+
type: "text",
|
|
832
|
+
title: "文本",
|
|
833
|
+
rowIndex: 4,
|
|
834
|
+
colIndex: 3,
|
|
835
|
+
style: {
|
|
836
|
+
paddingTop: "0px",
|
|
837
|
+
paddingBottom: "0px",
|
|
838
|
+
paddingLeft: "0px",
|
|
839
|
+
paddingRight: "0px",
|
|
840
|
+
fontSize: "14px",
|
|
841
|
+
textAlign: "left"
|
|
842
|
+
},
|
|
843
|
+
props: {
|
|
844
|
+
defaultContent: "不能屈曲活动,可主动活动踝关节"
|
|
845
|
+
}
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
id: "c74e79f3-c9fa-491e-8bc6-f5f5f467b5fa",
|
|
849
|
+
type: "text",
|
|
850
|
+
title: "文本",
|
|
851
|
+
rowIndex: 5,
|
|
852
|
+
colIndex: 3,
|
|
853
|
+
style: {
|
|
854
|
+
paddingTop: "0px",
|
|
855
|
+
paddingBottom: "0px",
|
|
856
|
+
paddingLeft: "0px",
|
|
857
|
+
paddingRight: "0px",
|
|
858
|
+
fontSize: "14px",
|
|
859
|
+
textAlign: "left"
|
|
860
|
+
},
|
|
861
|
+
props: {
|
|
862
|
+
defaultContent: "皮肤张力明显,并出现张力性水泡"
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
id: "700c129a-4c4c-40f6-a22b-aad1b0cfce48",
|
|
867
|
+
type: "text",
|
|
868
|
+
title: "文本",
|
|
869
|
+
rowIndex: 6,
|
|
870
|
+
colIndex: 3,
|
|
871
|
+
style: {
|
|
872
|
+
paddingTop: "0px",
|
|
873
|
+
paddingBottom: "0px",
|
|
874
|
+
paddingLeft: "0px",
|
|
875
|
+
paddingRight: "0px",
|
|
876
|
+
fontSize: "14px",
|
|
877
|
+
textAlign: "left"
|
|
878
|
+
},
|
|
879
|
+
props: {
|
|
880
|
+
defaultContent: "肉眼可见成角、旋转、短缩,有假关节活动,或/和刺破皮肤"
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
id: "6c66ce20-7738-4961-ad38-067ddf8a75e4",
|
|
885
|
+
type: "text",
|
|
886
|
+
title: "文本",
|
|
887
|
+
rowIndex: 7,
|
|
888
|
+
colIndex: 3,
|
|
889
|
+
style: {
|
|
890
|
+
paddingTop: "0px",
|
|
891
|
+
paddingBottom: "0px",
|
|
892
|
+
paddingLeft: "0px",
|
|
893
|
+
paddingRight: "0px",
|
|
894
|
+
fontSize: "14px",
|
|
895
|
+
textAlign: "left"
|
|
896
|
+
},
|
|
897
|
+
props: {
|
|
898
|
+
defaultContent: "颜色变白或发青"
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
id: "50fbb9db-7c18-4ca1-b6a8-27d3f26f52e2",
|
|
903
|
+
type: "text",
|
|
904
|
+
title: "文本",
|
|
905
|
+
rowIndex: 2,
|
|
906
|
+
colIndex: 4,
|
|
907
|
+
style: {
|
|
908
|
+
paddingTop: "0px",
|
|
909
|
+
paddingBottom: "0px",
|
|
910
|
+
paddingLeft: "0px",
|
|
911
|
+
paddingRight: "0px",
|
|
912
|
+
fontSize: "14px",
|
|
913
|
+
textAlign: "left"
|
|
914
|
+
},
|
|
915
|
+
props: {
|
|
916
|
+
defaultContent: "重度疼痛(FPS-R评分:10分)"
|
|
917
|
+
}
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
id: "cc41c96e-14c9-4fe9-aab3-70a59cfb45bf",
|
|
921
|
+
type: "text",
|
|
922
|
+
title: "文本",
|
|
923
|
+
rowIndex: 3,
|
|
924
|
+
colIndex: 4,
|
|
925
|
+
style: {
|
|
926
|
+
paddingTop: "0px",
|
|
927
|
+
paddingBottom: "0px",
|
|
928
|
+
paddingLeft: "0px",
|
|
929
|
+
paddingRight: "0px",
|
|
930
|
+
fontSize: "14px",
|
|
931
|
+
textAlign: "left"
|
|
932
|
+
},
|
|
933
|
+
props: {
|
|
934
|
+
defaultContent: "麻木难忍,持续不止"
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
id: "22b46662-7b5d-4045-a94f-452f053f01f4",
|
|
939
|
+
type: "text",
|
|
940
|
+
title: "文本",
|
|
941
|
+
rowIndex: 4,
|
|
942
|
+
colIndex: 4,
|
|
943
|
+
style: {
|
|
944
|
+
paddingTop: "0px",
|
|
945
|
+
paddingBottom: "0px",
|
|
946
|
+
paddingLeft: "0px",
|
|
947
|
+
paddingRight: "0px",
|
|
948
|
+
fontSize: "14px",
|
|
949
|
+
textAlign: "left"
|
|
950
|
+
},
|
|
951
|
+
props: {
|
|
952
|
+
defaultContent: "不能主动活动,被动活动出现牵拉疼"
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
id: "2583976b-4994-462b-9b69-e2e8d80d9b20",
|
|
957
|
+
type: "text",
|
|
958
|
+
title: "文本",
|
|
959
|
+
rowIndex: 5,
|
|
960
|
+
colIndex: 4,
|
|
961
|
+
style: {
|
|
962
|
+
paddingTop: "0px",
|
|
963
|
+
paddingBottom: "0px",
|
|
964
|
+
paddingLeft: "0px",
|
|
965
|
+
paddingRight: "0px",
|
|
966
|
+
fontSize: "14px",
|
|
967
|
+
textAlign: "left"
|
|
968
|
+
},
|
|
969
|
+
props: {
|
|
970
|
+
defaultContent: "有张力性血泡"
|
|
971
|
+
}
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
id: "58bd6ad8-9412-4193-80bd-043a7a34e556",
|
|
975
|
+
type: "text",
|
|
976
|
+
title: "文本",
|
|
977
|
+
rowIndex: 6,
|
|
978
|
+
colIndex: 4,
|
|
979
|
+
style: {
|
|
980
|
+
paddingTop: "0px",
|
|
981
|
+
paddingBottom: "0px",
|
|
982
|
+
paddingLeft: "0px",
|
|
983
|
+
paddingRight: "0px",
|
|
984
|
+
fontSize: "14px",
|
|
985
|
+
textAlign: "left"
|
|
986
|
+
},
|
|
987
|
+
props: {
|
|
988
|
+
defaultContent: "明显畸形,或/和伴有骨外露"
|
|
989
|
+
}
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
id: "847cbeff-96c3-48f4-9859-2178703347d2",
|
|
993
|
+
type: "text",
|
|
994
|
+
title: "文本",
|
|
995
|
+
rowIndex: 7,
|
|
996
|
+
colIndex: 4,
|
|
997
|
+
style: {
|
|
998
|
+
paddingTop: "0px",
|
|
999
|
+
paddingBottom: "0px",
|
|
1000
|
+
paddingLeft: "0px",
|
|
1001
|
+
paddingRight: "0px",
|
|
1002
|
+
fontSize: "14px",
|
|
1003
|
+
textAlign: "left"
|
|
1004
|
+
},
|
|
1005
|
+
props: {
|
|
1006
|
+
defaultContent: "颜色苍白或发绀"
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
id: "9f7fe14e-a506-441b-abe3-35657cc36151",
|
|
1011
|
+
type: "input",
|
|
1012
|
+
title: "输入框",
|
|
1013
|
+
rowIndex: 2,
|
|
1014
|
+
colIndex: 6,
|
|
1015
|
+
style: {},
|
|
1016
|
+
props: {
|
|
1017
|
+
field: "beforeScore1",
|
|
1018
|
+
defaultValue: ""
|
|
1019
|
+
},
|
|
1020
|
+
formComponentProps: {
|
|
1021
|
+
placeholder: "",
|
|
1022
|
+
size: ""
|
|
1023
|
+
},
|
|
1024
|
+
formItemProps: {
|
|
1025
|
+
label: "",
|
|
1026
|
+
labelWidth: "",
|
|
1027
|
+
labelPosition: ""
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
id: "0e081888-cda8-4da4-bc4b-d8fcc9e1fc95",
|
|
1032
|
+
type: "input",
|
|
1033
|
+
title: "输入框",
|
|
1034
|
+
rowIndex: 2,
|
|
1035
|
+
colIndex: 7,
|
|
1036
|
+
style: {},
|
|
1037
|
+
props: {
|
|
1038
|
+
field: "afterDtae1",
|
|
1039
|
+
defaultValue: ""
|
|
1040
|
+
},
|
|
1041
|
+
formComponentProps: {
|
|
1042
|
+
placeholder: "",
|
|
1043
|
+
size: ""
|
|
1044
|
+
},
|
|
1045
|
+
formItemProps: {
|
|
1046
|
+
label: "",
|
|
1047
|
+
labelWidth: "",
|
|
1048
|
+
labelPosition: ""
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
id: "8379980a-a8a2-41f6-8c37-171ea7322702",
|
|
1053
|
+
type: "input",
|
|
1054
|
+
title: "输入框",
|
|
1055
|
+
rowIndex: 2,
|
|
1056
|
+
colIndex: 8,
|
|
1057
|
+
style: {},
|
|
1058
|
+
props: {
|
|
1059
|
+
field: "afterScore1",
|
|
1060
|
+
defaultValue: ""
|
|
1061
|
+
},
|
|
1062
|
+
formComponentProps: {
|
|
1063
|
+
placeholder: "",
|
|
1064
|
+
size: ""
|
|
1065
|
+
},
|
|
1066
|
+
formItemProps: {
|
|
1067
|
+
label: "",
|
|
1068
|
+
labelWidth: "",
|
|
1069
|
+
labelPosition: ""
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
id: "c3cbbd1a-362f-40d0-a395-7f78af03a24d",
|
|
1074
|
+
type: "input",
|
|
1075
|
+
title: "输入框",
|
|
1076
|
+
rowIndex: 2,
|
|
1077
|
+
colIndex: 9,
|
|
1078
|
+
style: {},
|
|
1079
|
+
props: {
|
|
1080
|
+
field: "score1",
|
|
1081
|
+
defaultValue: ""
|
|
1082
|
+
},
|
|
1083
|
+
formComponentProps: {
|
|
1084
|
+
placeholder: "",
|
|
1085
|
+
size: ""
|
|
1086
|
+
},
|
|
1087
|
+
formItemProps: {
|
|
1088
|
+
label: "",
|
|
1089
|
+
labelWidth: "",
|
|
1090
|
+
labelPosition: ""
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
id: "f5742d2e-1d09-4cbc-a4b0-a0314bb02b2e",
|
|
1095
|
+
type: "input",
|
|
1096
|
+
title: "输入框",
|
|
1097
|
+
rowIndex: 3,
|
|
1098
|
+
colIndex: 5,
|
|
1099
|
+
style: {},
|
|
1100
|
+
props: {
|
|
1101
|
+
field: "beforeDtae2",
|
|
1102
|
+
defaultValue: ""
|
|
1103
|
+
},
|
|
1104
|
+
formComponentProps: {
|
|
1105
|
+
placeholder: "",
|
|
1106
|
+
size: ""
|
|
1107
|
+
},
|
|
1108
|
+
formItemProps: {
|
|
1109
|
+
label: "",
|
|
1110
|
+
labelWidth: "",
|
|
1111
|
+
labelPosition: ""
|
|
1112
|
+
}
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
id: "c4c77ca2-a424-4562-af6b-4f59f73cef5b",
|
|
1116
|
+
type: "input",
|
|
1117
|
+
title: "输入框",
|
|
1118
|
+
rowIndex: 4,
|
|
1119
|
+
colIndex: 5,
|
|
1120
|
+
style: {},
|
|
1121
|
+
props: {
|
|
1122
|
+
field: "beforeDtae3",
|
|
1123
|
+
defaultValue: ""
|
|
1124
|
+
},
|
|
1125
|
+
formComponentProps: {
|
|
1126
|
+
placeholder: "",
|
|
1127
|
+
size: ""
|
|
1128
|
+
},
|
|
1129
|
+
formItemProps: {
|
|
1130
|
+
label: "",
|
|
1131
|
+
labelWidth: "",
|
|
1132
|
+
labelPosition: ""
|
|
1133
|
+
}
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
id: "9b9b2d90-abc1-40e3-9dad-7320500664bd",
|
|
1137
|
+
type: "input",
|
|
1138
|
+
title: "输入框",
|
|
1139
|
+
rowIndex: 5,
|
|
1140
|
+
colIndex: 5,
|
|
1141
|
+
style: {},
|
|
1142
|
+
props: {
|
|
1143
|
+
field: "beforeDtae4",
|
|
1144
|
+
defaultValue: ""
|
|
1145
|
+
},
|
|
1146
|
+
formComponentProps: {
|
|
1147
|
+
placeholder: "",
|
|
1148
|
+
size: ""
|
|
1149
|
+
},
|
|
1150
|
+
formItemProps: {
|
|
1151
|
+
label: "",
|
|
1152
|
+
labelWidth: "",
|
|
1153
|
+
labelPosition: ""
|
|
1154
|
+
}
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
id: "7a4f802e-dfa7-4dd2-91ae-83eb8098055f",
|
|
1158
|
+
type: "input",
|
|
1159
|
+
title: "输入框",
|
|
1160
|
+
rowIndex: 6,
|
|
1161
|
+
colIndex: 5,
|
|
1162
|
+
style: {},
|
|
1163
|
+
props: {
|
|
1164
|
+
field: "beforeDtae5",
|
|
1165
|
+
defaultValue: ""
|
|
1166
|
+
},
|
|
1167
|
+
formComponentProps: {
|
|
1168
|
+
placeholder: "",
|
|
1169
|
+
size: ""
|
|
1170
|
+
},
|
|
1171
|
+
formItemProps: {
|
|
1172
|
+
label: "",
|
|
1173
|
+
labelWidth: "",
|
|
1174
|
+
labelPosition: ""
|
|
1175
|
+
}
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
id: "6a5779e5-7a0b-4d9b-b5a1-ce36b53e5394",
|
|
1179
|
+
type: "input",
|
|
1180
|
+
title: "输入框",
|
|
1181
|
+
rowIndex: 7,
|
|
1182
|
+
colIndex: 5,
|
|
1183
|
+
style: {},
|
|
1184
|
+
props: {
|
|
1185
|
+
field: "beforeDtae6",
|
|
1186
|
+
defaultValue: ""
|
|
1187
|
+
},
|
|
1188
|
+
formComponentProps: {
|
|
1189
|
+
placeholder: "",
|
|
1190
|
+
size: ""
|
|
1191
|
+
},
|
|
1192
|
+
formItemProps: {
|
|
1193
|
+
label: "",
|
|
1194
|
+
labelWidth: "",
|
|
1195
|
+
labelPosition: ""
|
|
1196
|
+
}
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
id: "7463fbfb-08f3-41f5-bf31-17ba21ea7fdc",
|
|
1200
|
+
type: "input",
|
|
1201
|
+
title: "输入框",
|
|
1202
|
+
rowIndex: 3,
|
|
1203
|
+
colIndex: 6,
|
|
1204
|
+
style: {},
|
|
1205
|
+
props: {
|
|
1206
|
+
field: "beforeScore2",
|
|
1207
|
+
defaultValue: ""
|
|
1208
|
+
},
|
|
1209
|
+
formComponentProps: {
|
|
1210
|
+
placeholder: "",
|
|
1211
|
+
size: ""
|
|
1212
|
+
},
|
|
1213
|
+
formItemProps: {
|
|
1214
|
+
label: "",
|
|
1215
|
+
labelWidth: "",
|
|
1216
|
+
labelPosition: ""
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
id: "ad9a402e-7798-496b-ae32-8b21a4f163b7",
|
|
1221
|
+
type: "input",
|
|
1222
|
+
title: "输入框",
|
|
1223
|
+
rowIndex: 4,
|
|
1224
|
+
colIndex: 6,
|
|
1225
|
+
style: {},
|
|
1226
|
+
props: {
|
|
1227
|
+
field: "beforeScore3",
|
|
1228
|
+
defaultValue: ""
|
|
1229
|
+
},
|
|
1230
|
+
formComponentProps: {
|
|
1231
|
+
placeholder: "",
|
|
1232
|
+
size: ""
|
|
1233
|
+
},
|
|
1234
|
+
formItemProps: {
|
|
1235
|
+
label: "",
|
|
1236
|
+
labelWidth: "",
|
|
1237
|
+
labelPosition: ""
|
|
1238
|
+
}
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
id: "803286dd-14fa-4f6c-bcbc-eaf8b48cbf06",
|
|
1242
|
+
type: "input",
|
|
1243
|
+
title: "输入框",
|
|
1244
|
+
rowIndex: 5,
|
|
1245
|
+
colIndex: 6,
|
|
1246
|
+
style: {},
|
|
1247
|
+
props: {
|
|
1248
|
+
field: "beforeScore4",
|
|
1249
|
+
defaultValue: ""
|
|
1250
|
+
},
|
|
1251
|
+
formComponentProps: {
|
|
1252
|
+
placeholder: "",
|
|
1253
|
+
size: ""
|
|
1254
|
+
},
|
|
1255
|
+
formItemProps: {
|
|
1256
|
+
label: "",
|
|
1257
|
+
labelWidth: "",
|
|
1258
|
+
labelPosition: ""
|
|
1259
|
+
}
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
id: "138aafee-0517-45c8-8374-50fffad7cc01",
|
|
1263
|
+
type: "input",
|
|
1264
|
+
title: "输入框",
|
|
1265
|
+
rowIndex: 6,
|
|
1266
|
+
colIndex: 6,
|
|
1267
|
+
style: {},
|
|
1268
|
+
props: {
|
|
1269
|
+
field: "beforeScore5",
|
|
1270
|
+
defaultValue: ""
|
|
1271
|
+
},
|
|
1272
|
+
formComponentProps: {
|
|
1273
|
+
placeholder: "",
|
|
1274
|
+
size: ""
|
|
1275
|
+
},
|
|
1276
|
+
formItemProps: {
|
|
1277
|
+
label: "",
|
|
1278
|
+
labelWidth: "",
|
|
1279
|
+
labelPosition: ""
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
id: "ebc954e4-e375-4183-a56f-75f78bfcc47b",
|
|
1284
|
+
type: "input",
|
|
1285
|
+
title: "输入框",
|
|
1286
|
+
rowIndex: 7,
|
|
1287
|
+
colIndex: 6,
|
|
1288
|
+
style: {},
|
|
1289
|
+
props: {
|
|
1290
|
+
field: "beforeScore6",
|
|
1291
|
+
defaultValue: ""
|
|
1292
|
+
},
|
|
1293
|
+
formComponentProps: {
|
|
1294
|
+
placeholder: "",
|
|
1295
|
+
size: ""
|
|
1296
|
+
},
|
|
1297
|
+
formItemProps: {
|
|
1298
|
+
label: "",
|
|
1299
|
+
labelWidth: "",
|
|
1300
|
+
labelPosition: ""
|
|
1301
|
+
}
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
id: "f1880ccc-ffd3-4eeb-a432-b7d2e0a25a50",
|
|
1305
|
+
type: "input",
|
|
1306
|
+
title: "输入框",
|
|
1307
|
+
rowIndex: 3,
|
|
1308
|
+
colIndex: 7,
|
|
1309
|
+
style: {},
|
|
1310
|
+
props: {
|
|
1311
|
+
field: "afterDtae2",
|
|
1312
|
+
defaultValue: ""
|
|
1313
|
+
},
|
|
1314
|
+
formComponentProps: {
|
|
1315
|
+
placeholder: "",
|
|
1316
|
+
size: ""
|
|
1317
|
+
},
|
|
1318
|
+
formItemProps: {
|
|
1319
|
+
label: "",
|
|
1320
|
+
labelWidth: "",
|
|
1321
|
+
labelPosition: ""
|
|
1322
|
+
}
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
id: "d339da05-d304-459d-b6d6-fdfd1998426b",
|
|
1326
|
+
type: "input",
|
|
1327
|
+
title: "输入框",
|
|
1328
|
+
rowIndex: 4,
|
|
1329
|
+
colIndex: 7,
|
|
1330
|
+
style: {},
|
|
1331
|
+
props: {
|
|
1332
|
+
field: "afterDtae3",
|
|
1333
|
+
defaultValue: ""
|
|
1334
|
+
},
|
|
1335
|
+
formComponentProps: {
|
|
1336
|
+
placeholder: "",
|
|
1337
|
+
size: ""
|
|
1338
|
+
},
|
|
1339
|
+
formItemProps: {
|
|
1340
|
+
label: "",
|
|
1341
|
+
labelWidth: "",
|
|
1342
|
+
labelPosition: ""
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
id: "821d8bae-aa0c-4f6b-8c99-36d95fa80340",
|
|
1347
|
+
type: "input",
|
|
1348
|
+
title: "输入框",
|
|
1349
|
+
rowIndex: 5,
|
|
1350
|
+
colIndex: 7,
|
|
1351
|
+
style: {},
|
|
1352
|
+
props: {
|
|
1353
|
+
field: "afterDtae4",
|
|
1354
|
+
defaultValue: ""
|
|
1355
|
+
},
|
|
1356
|
+
formComponentProps: {
|
|
1357
|
+
placeholder: "",
|
|
1358
|
+
size: ""
|
|
1359
|
+
},
|
|
1360
|
+
formItemProps: {
|
|
1361
|
+
label: "",
|
|
1362
|
+
labelWidth: "",
|
|
1363
|
+
labelPosition: ""
|
|
1364
|
+
}
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
id: "2eee824d-cd9c-4d1d-a5ff-9884b67fd0cb",
|
|
1368
|
+
type: "input",
|
|
1369
|
+
title: "输入框",
|
|
1370
|
+
rowIndex: 6,
|
|
1371
|
+
colIndex: 7,
|
|
1372
|
+
style: {},
|
|
1373
|
+
props: {
|
|
1374
|
+
field: "afterDtae5",
|
|
1375
|
+
defaultValue: ""
|
|
1376
|
+
},
|
|
1377
|
+
formComponentProps: {
|
|
1378
|
+
placeholder: "",
|
|
1379
|
+
size: ""
|
|
1380
|
+
},
|
|
1381
|
+
formItemProps: {
|
|
1382
|
+
label: "",
|
|
1383
|
+
labelWidth: "",
|
|
1384
|
+
labelPosition: ""
|
|
1385
|
+
}
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
id: "970713ed-ccde-4466-92a5-877d9dfc56de",
|
|
1389
|
+
type: "input",
|
|
1390
|
+
title: "输入框",
|
|
1391
|
+
rowIndex: 7,
|
|
1392
|
+
colIndex: 7,
|
|
1393
|
+
style: {},
|
|
1394
|
+
props: {
|
|
1395
|
+
field: "afterDtae6",
|
|
1396
|
+
defaultValue: ""
|
|
1397
|
+
},
|
|
1398
|
+
formComponentProps: {
|
|
1399
|
+
placeholder: "",
|
|
1400
|
+
size: ""
|
|
1401
|
+
},
|
|
1402
|
+
formItemProps: {
|
|
1403
|
+
label: "",
|
|
1404
|
+
labelWidth: "",
|
|
1405
|
+
labelPosition: ""
|
|
1406
|
+
}
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
id: "d6a0f409-b363-4a15-b8af-bad4c2936820",
|
|
1410
|
+
type: "input",
|
|
1411
|
+
title: "输入框",
|
|
1412
|
+
rowIndex: 3,
|
|
1413
|
+
colIndex: 8,
|
|
1414
|
+
style: {},
|
|
1415
|
+
props: {
|
|
1416
|
+
field: "afterScore2",
|
|
1417
|
+
defaultValue: ""
|
|
1418
|
+
},
|
|
1419
|
+
formComponentProps: {
|
|
1420
|
+
placeholder: "",
|
|
1421
|
+
size: ""
|
|
1422
|
+
},
|
|
1423
|
+
formItemProps: {
|
|
1424
|
+
label: "",
|
|
1425
|
+
labelWidth: "",
|
|
1426
|
+
labelPosition: ""
|
|
1427
|
+
}
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
id: "f7d8a2fa-8064-4232-a17d-22da05e7c734",
|
|
1431
|
+
type: "input",
|
|
1432
|
+
title: "输入框",
|
|
1433
|
+
rowIndex: 4,
|
|
1434
|
+
colIndex: 8,
|
|
1435
|
+
style: {},
|
|
1436
|
+
props: {
|
|
1437
|
+
field: "afterScore3",
|
|
1438
|
+
defaultValue: ""
|
|
1439
|
+
},
|
|
1440
|
+
formComponentProps: {
|
|
1441
|
+
placeholder: "",
|
|
1442
|
+
size: ""
|
|
1443
|
+
},
|
|
1444
|
+
formItemProps: {
|
|
1445
|
+
label: "",
|
|
1446
|
+
labelWidth: "",
|
|
1447
|
+
labelPosition: ""
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
id: "ef657546-69c9-4bea-81f2-2d7405c98c55",
|
|
1452
|
+
type: "input",
|
|
1453
|
+
title: "输入框",
|
|
1454
|
+
rowIndex: 5,
|
|
1455
|
+
colIndex: 8,
|
|
1456
|
+
style: {},
|
|
1457
|
+
props: {
|
|
1458
|
+
field: "afterScore4",
|
|
1459
|
+
defaultValue: ""
|
|
1460
|
+
},
|
|
1461
|
+
formComponentProps: {
|
|
1462
|
+
placeholder: "",
|
|
1463
|
+
size: ""
|
|
1464
|
+
},
|
|
1465
|
+
formItemProps: {
|
|
1466
|
+
label: "",
|
|
1467
|
+
labelWidth: "",
|
|
1468
|
+
labelPosition: ""
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
id: "a7ad173f-fbd1-4b4f-8e14-a7d0b2778ded",
|
|
1473
|
+
type: "input",
|
|
1474
|
+
title: "输入框",
|
|
1475
|
+
rowIndex: 6,
|
|
1476
|
+
colIndex: 8,
|
|
1477
|
+
style: {},
|
|
1478
|
+
props: {
|
|
1479
|
+
field: "afterScore5",
|
|
1480
|
+
defaultValue: ""
|
|
1481
|
+
},
|
|
1482
|
+
formComponentProps: {
|
|
1483
|
+
placeholder: "",
|
|
1484
|
+
size: ""
|
|
1485
|
+
},
|
|
1486
|
+
formItemProps: {
|
|
1487
|
+
label: "",
|
|
1488
|
+
labelWidth: "",
|
|
1489
|
+
labelPosition: ""
|
|
1490
|
+
}
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
id: "1e599d34-1102-4a78-8883-1940838bde5c",
|
|
1494
|
+
type: "input",
|
|
1495
|
+
title: "输入框",
|
|
1496
|
+
rowIndex: 3,
|
|
1497
|
+
colIndex: 9,
|
|
1498
|
+
style: {},
|
|
1499
|
+
props: {
|
|
1500
|
+
field: "score2",
|
|
1501
|
+
defaultValue: ""
|
|
1502
|
+
},
|
|
1503
|
+
formComponentProps: {
|
|
1504
|
+
placeholder: "",
|
|
1505
|
+
size: ""
|
|
1506
|
+
},
|
|
1507
|
+
formItemProps: {
|
|
1508
|
+
label: "",
|
|
1509
|
+
labelWidth: "",
|
|
1510
|
+
labelPosition: ""
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
id: "e19ddede-6ff1-4853-960f-0fd091647494",
|
|
1515
|
+
type: "input",
|
|
1516
|
+
title: "输入框",
|
|
1517
|
+
rowIndex: 4,
|
|
1518
|
+
colIndex: 9,
|
|
1519
|
+
style: {},
|
|
1520
|
+
props: {
|
|
1521
|
+
field: "score3",
|
|
1522
|
+
defaultValue: ""
|
|
1523
|
+
},
|
|
1524
|
+
formComponentProps: {
|
|
1525
|
+
placeholder: "",
|
|
1526
|
+
size: ""
|
|
1527
|
+
},
|
|
1528
|
+
formItemProps: {
|
|
1529
|
+
label: "",
|
|
1530
|
+
labelWidth: "",
|
|
1531
|
+
labelPosition: ""
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
id: "7a71d614-06f9-4bbc-ad71-bf9b9a7fac4d",
|
|
1536
|
+
type: "input",
|
|
1537
|
+
title: "输入框",
|
|
1538
|
+
rowIndex: 5,
|
|
1539
|
+
colIndex: 9,
|
|
1540
|
+
style: {},
|
|
1541
|
+
props: {
|
|
1542
|
+
field: "score4",
|
|
1543
|
+
defaultValue: ""
|
|
1544
|
+
},
|
|
1545
|
+
formComponentProps: {
|
|
1546
|
+
placeholder: "",
|
|
1547
|
+
size: ""
|
|
1548
|
+
},
|
|
1549
|
+
formItemProps: {
|
|
1550
|
+
label: "",
|
|
1551
|
+
labelWidth: "",
|
|
1552
|
+
labelPosition: ""
|
|
1553
|
+
}
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
id: "41703517-a8cd-4aee-b81f-0fb6884e1ee2",
|
|
1557
|
+
type: "input",
|
|
1558
|
+
title: "输入框",
|
|
1559
|
+
rowIndex: 6,
|
|
1560
|
+
colIndex: 9,
|
|
1561
|
+
style: {},
|
|
1562
|
+
props: {
|
|
1563
|
+
field: "score5",
|
|
1564
|
+
defaultValue: ""
|
|
1565
|
+
},
|
|
1566
|
+
formComponentProps: {
|
|
1567
|
+
placeholder: "",
|
|
1568
|
+
size: ""
|
|
1569
|
+
},
|
|
1570
|
+
formItemProps: {
|
|
1571
|
+
label: "",
|
|
1572
|
+
labelWidth: "",
|
|
1573
|
+
labelPosition: ""
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
id: "eff19c1b-93e3-4c65-8d18-40ea2f5796bf",
|
|
1578
|
+
type: "input",
|
|
1579
|
+
title: "输入框",
|
|
1580
|
+
rowIndex: 7,
|
|
1581
|
+
colIndex: 9,
|
|
1582
|
+
style: {},
|
|
1583
|
+
props: {
|
|
1584
|
+
field: "score6",
|
|
1585
|
+
defaultValue: ""
|
|
1586
|
+
},
|
|
1587
|
+
formComponentProps: {
|
|
1588
|
+
placeholder: "",
|
|
1589
|
+
size: ""
|
|
1590
|
+
},
|
|
1591
|
+
formItemProps: {
|
|
1592
|
+
label: "",
|
|
1593
|
+
labelWidth: "",
|
|
1594
|
+
labelPosition: ""
|
|
1595
|
+
}
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
id: "65beb1d6-2152-4d6e-91ee-27d4de1bf984",
|
|
1599
|
+
type: "input",
|
|
1600
|
+
title: "输入框",
|
|
1601
|
+
rowIndex: 7,
|
|
1602
|
+
colIndex: 8,
|
|
1603
|
+
style: {},
|
|
1604
|
+
props: {
|
|
1605
|
+
field: "afterScore6",
|
|
1606
|
+
defaultValue: ""
|
|
1607
|
+
},
|
|
1608
|
+
formComponentProps: {
|
|
1609
|
+
placeholder: "",
|
|
1610
|
+
size: ""
|
|
1611
|
+
},
|
|
1612
|
+
formItemProps: {
|
|
1613
|
+
label: "",
|
|
1614
|
+
labelWidth: "",
|
|
1615
|
+
labelPosition: ""
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1618
|
+
],
|
|
1619
|
+
props: {
|
|
1620
|
+
row: 8,
|
|
1621
|
+
col: 10
|
|
1622
|
+
},
|
|
1623
|
+
styleRules: {
|
|
1624
|
+
"0-0": {
|
|
1625
|
+
width: "80px",
|
|
1626
|
+
container_custom_centerHorizontally: true,
|
|
1627
|
+
container_custom_centerVertical: true
|
|
1628
|
+
},
|
|
1629
|
+
"0-1": {
|
|
1630
|
+
width: "90px",
|
|
1631
|
+
container_custom_centerHorizontally: true,
|
|
1632
|
+
container_custom_centerVertical: true
|
|
1633
|
+
},
|
|
1634
|
+
"0-2": {
|
|
1635
|
+
width: "100px",
|
|
1636
|
+
container_custom_centerHorizontally: true,
|
|
1637
|
+
container_custom_centerVertical: true
|
|
1638
|
+
},
|
|
1639
|
+
"0-3": {
|
|
1640
|
+
width: "100px",
|
|
1641
|
+
container_custom_centerHorizontally: true,
|
|
1642
|
+
container_custom_centerVertical: true
|
|
1643
|
+
},
|
|
1644
|
+
"0-4": {
|
|
1645
|
+
width: "100px",
|
|
1646
|
+
container_custom_centerHorizontally: true,
|
|
1647
|
+
container_custom_centerVertical: true
|
|
1648
|
+
},
|
|
1649
|
+
"0-5": {
|
|
1650
|
+
container_custom_centerHorizontally: true,
|
|
1651
|
+
container_custom_centerVertical: true
|
|
1652
|
+
},
|
|
1653
|
+
"1-5": {
|
|
1654
|
+
width: "50px",
|
|
1655
|
+
container_custom_centerHorizontally: true,
|
|
1656
|
+
container_custom_centerVertical: true
|
|
1657
|
+
},
|
|
1658
|
+
"1-6": {
|
|
1659
|
+
width: "50px",
|
|
1660
|
+
container_custom_centerHorizontally: true,
|
|
1661
|
+
container_custom_centerVertical: true
|
|
1662
|
+
},
|
|
1663
|
+
"1-7": {
|
|
1664
|
+
width: "50px",
|
|
1665
|
+
container_custom_centerHorizontally: true,
|
|
1666
|
+
container_custom_centerVertical: true
|
|
1667
|
+
},
|
|
1668
|
+
"1-8": {
|
|
1669
|
+
width: "50px",
|
|
1670
|
+
container_custom_centerHorizontally: true,
|
|
1671
|
+
container_custom_centerVertical: true
|
|
1672
|
+
},
|
|
1673
|
+
"0-9": {
|
|
1674
|
+
container_custom_centerHorizontally: true,
|
|
1675
|
+
container_custom_centerVertical: true
|
|
1676
|
+
},
|
|
1677
|
+
"0-7": {
|
|
1678
|
+
container_custom_centerHorizontally: true,
|
|
1679
|
+
container_custom_centerVertical: true
|
|
1680
|
+
},
|
|
1681
|
+
"2-0": {
|
|
1682
|
+
container_custom_centerHorizontally: true,
|
|
1683
|
+
container_custom_centerVertical: true
|
|
1684
|
+
},
|
|
1685
|
+
"3-0": {
|
|
1686
|
+
container_custom_centerHorizontally: true,
|
|
1687
|
+
container_custom_centerVertical: true
|
|
1688
|
+
},
|
|
1689
|
+
"4-0": {
|
|
1690
|
+
container_custom_centerHorizontally: true,
|
|
1691
|
+
container_custom_centerVertical: true
|
|
1692
|
+
},
|
|
1693
|
+
"5-0": {
|
|
1694
|
+
container_custom_centerHorizontally: true,
|
|
1695
|
+
container_custom_centerVertical: true
|
|
1696
|
+
},
|
|
1697
|
+
"6-0": {
|
|
1698
|
+
container_custom_centerHorizontally: true,
|
|
1699
|
+
container_custom_centerVertical: true
|
|
1700
|
+
},
|
|
1701
|
+
"7-0": {
|
|
1702
|
+
container_custom_centerHorizontally: true,
|
|
1703
|
+
container_custom_centerVertical: true
|
|
1704
|
+
},
|
|
1705
|
+
"2-1": {},
|
|
1706
|
+
"2-5": {
|
|
1707
|
+
container_custom_centerHorizontally: true,
|
|
1708
|
+
container_custom_centerVertical: true
|
|
1709
|
+
},
|
|
1710
|
+
"3-5": {
|
|
1711
|
+
container_custom_centerHorizontally: true,
|
|
1712
|
+
container_custom_centerVertical: true
|
|
1713
|
+
},
|
|
1714
|
+
"4-5": {
|
|
1715
|
+
container_custom_centerHorizontally: true,
|
|
1716
|
+
container_custom_centerVertical: true
|
|
1717
|
+
},
|
|
1718
|
+
"5-5": {
|
|
1719
|
+
container_custom_centerHorizontally: true,
|
|
1720
|
+
container_custom_centerVertical: true
|
|
1721
|
+
},
|
|
1722
|
+
"6-5": {
|
|
1723
|
+
container_custom_centerHorizontally: true,
|
|
1724
|
+
container_custom_centerVertical: true
|
|
1725
|
+
},
|
|
1726
|
+
"7-5": {
|
|
1727
|
+
container_custom_centerHorizontally: true,
|
|
1728
|
+
container_custom_centerVertical: true
|
|
1729
|
+
},
|
|
1730
|
+
"2-6": {
|
|
1731
|
+
container_custom_centerHorizontally: true,
|
|
1732
|
+
container_custom_centerVertical: true
|
|
1733
|
+
},
|
|
1734
|
+
"3-6": {
|
|
1735
|
+
container_custom_centerHorizontally: true,
|
|
1736
|
+
container_custom_centerVertical: true
|
|
1737
|
+
},
|
|
1738
|
+
"4-6": {
|
|
1739
|
+
container_custom_centerHorizontally: true,
|
|
1740
|
+
container_custom_centerVertical: true
|
|
1741
|
+
},
|
|
1742
|
+
"5-6": {
|
|
1743
|
+
container_custom_centerHorizontally: true,
|
|
1744
|
+
container_custom_centerVertical: true
|
|
1745
|
+
},
|
|
1746
|
+
"6-6": {
|
|
1747
|
+
container_custom_centerHorizontally: true,
|
|
1748
|
+
container_custom_centerVertical: true
|
|
1749
|
+
},
|
|
1750
|
+
"7-6": {
|
|
1751
|
+
container_custom_centerHorizontally: true,
|
|
1752
|
+
container_custom_centerVertical: true
|
|
1753
|
+
},
|
|
1754
|
+
"2-7": {
|
|
1755
|
+
container_custom_centerHorizontally: true,
|
|
1756
|
+
container_custom_centerVertical: true
|
|
1757
|
+
},
|
|
1758
|
+
"3-7": {
|
|
1759
|
+
container_custom_centerHorizontally: true,
|
|
1760
|
+
container_custom_centerVertical: true
|
|
1761
|
+
},
|
|
1762
|
+
"4-7": {
|
|
1763
|
+
container_custom_centerHorizontally: true,
|
|
1764
|
+
container_custom_centerVertical: true
|
|
1765
|
+
},
|
|
1766
|
+
"5-7": {
|
|
1767
|
+
container_custom_centerHorizontally: true,
|
|
1768
|
+
container_custom_centerVertical: true
|
|
1769
|
+
},
|
|
1770
|
+
"6-7": {
|
|
1771
|
+
container_custom_centerHorizontally: true,
|
|
1772
|
+
container_custom_centerVertical: true
|
|
1773
|
+
},
|
|
1774
|
+
"7-7": {
|
|
1775
|
+
container_custom_centerHorizontally: true,
|
|
1776
|
+
container_custom_centerVertical: true
|
|
1777
|
+
},
|
|
1778
|
+
"2-8": {
|
|
1779
|
+
container_custom_centerHorizontally: true,
|
|
1780
|
+
container_custom_centerVertical: true
|
|
1781
|
+
},
|
|
1782
|
+
"3-8": {
|
|
1783
|
+
container_custom_centerHorizontally: true,
|
|
1784
|
+
container_custom_centerVertical: true
|
|
1785
|
+
},
|
|
1786
|
+
"4-8": {
|
|
1787
|
+
container_custom_centerHorizontally: true,
|
|
1788
|
+
container_custom_centerVertical: true
|
|
1789
|
+
},
|
|
1790
|
+
"5-8": {
|
|
1791
|
+
container_custom_centerHorizontally: true,
|
|
1792
|
+
container_custom_centerVertical: true
|
|
1793
|
+
},
|
|
1794
|
+
"6-8": {
|
|
1795
|
+
container_custom_centerHorizontally: true,
|
|
1796
|
+
container_custom_centerVertical: true
|
|
1797
|
+
},
|
|
1798
|
+
"7-8": {
|
|
1799
|
+
container_custom_centerHorizontally: true,
|
|
1800
|
+
container_custom_centerVertical: true
|
|
1801
|
+
},
|
|
1802
|
+
"2-9": {
|
|
1803
|
+
container_custom_centerHorizontally: true,
|
|
1804
|
+
container_custom_centerVertical: true
|
|
1805
|
+
},
|
|
1806
|
+
"3-9": {
|
|
1807
|
+
container_custom_centerHorizontally: true,
|
|
1808
|
+
container_custom_centerVertical: true
|
|
1809
|
+
},
|
|
1810
|
+
"4-9": {
|
|
1811
|
+
container_custom_centerHorizontally: true,
|
|
1812
|
+
container_custom_centerVertical: true
|
|
1813
|
+
},
|
|
1814
|
+
"5-9": {
|
|
1815
|
+
container_custom_centerHorizontally: true,
|
|
1816
|
+
container_custom_centerVertical: true
|
|
1817
|
+
},
|
|
1818
|
+
"6-9": {
|
|
1819
|
+
container_custom_centerHorizontally: true,
|
|
1820
|
+
container_custom_centerVertical: true
|
|
1821
|
+
},
|
|
1822
|
+
"7-9": {
|
|
1823
|
+
container_custom_centerHorizontally: true,
|
|
1824
|
+
container_custom_centerVertical: true
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1827
|
+
layout: [
|
|
1828
|
+
{
|
|
1829
|
+
rowIndex: 0,
|
|
1830
|
+
colIndex: 5,
|
|
1831
|
+
colspan: 2
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
rowIndex: 0,
|
|
1835
|
+
colIndex: 7,
|
|
1836
|
+
colspan: 2
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
rowIndex: 0,
|
|
1840
|
+
colIndex: 9,
|
|
1841
|
+
rowspan: 2
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
rowIndex: 0,
|
|
1845
|
+
colIndex: 0,
|
|
1846
|
+
rowspan: 2
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
rowIndex: 0,
|
|
1850
|
+
colIndex: 1,
|
|
1851
|
+
rowspan: 2
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
rowIndex: 0,
|
|
1855
|
+
colIndex: 2,
|
|
1856
|
+
rowspan: 2
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
rowIndex: 0,
|
|
1860
|
+
colIndex: 3,
|
|
1861
|
+
rowspan: 2
|
|
1862
|
+
},
|
|
1863
|
+
{
|
|
1864
|
+
rowIndex: 0,
|
|
1865
|
+
colIndex: 4,
|
|
1866
|
+
rowspan: 2
|
|
1867
|
+
}
|
|
1868
|
+
]
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
id: "be28002e-afc8-4e95-9f65-7bd95409fc2c",
|
|
1872
|
+
type: "grid",
|
|
1873
|
+
title: "栅格布局",
|
|
1874
|
+
style: {
|
|
1875
|
+
marginTop: "5px"
|
|
1876
|
+
},
|
|
1877
|
+
children: [
|
|
1878
|
+
{
|
|
1879
|
+
id: "a42ef69b-e5ba-4337-879e-91696efe23fd",
|
|
1880
|
+
type: "grid-item",
|
|
1881
|
+
title: "栅格布局格子",
|
|
1882
|
+
props: {
|
|
1883
|
+
span: 3
|
|
1884
|
+
},
|
|
1885
|
+
style: {},
|
|
1886
|
+
children: [
|
|
1887
|
+
{
|
|
1888
|
+
id: "9b13206a-6f0e-4177-8cb4-5f7af5378a81",
|
|
1889
|
+
type: "text",
|
|
1890
|
+
title: "文本",
|
|
1891
|
+
style: {
|
|
1892
|
+
paddingTop: "0px",
|
|
1893
|
+
paddingBottom: "0px",
|
|
1894
|
+
paddingLeft: "0px",
|
|
1895
|
+
paddingRight: "0px",
|
|
1896
|
+
fontSize: "14px",
|
|
1897
|
+
textAlign: "center"
|
|
1898
|
+
},
|
|
1899
|
+
props: {
|
|
1900
|
+
defaultContent: "备注:"
|
|
1901
|
+
}
|
|
1902
|
+
}
|
|
1903
|
+
]
|
|
1904
|
+
},
|
|
1905
|
+
{
|
|
1906
|
+
id: "66686a98-640c-452d-a6d1-4ef70c542e78",
|
|
1907
|
+
type: "grid-item",
|
|
1908
|
+
title: "栅格布局格子",
|
|
1909
|
+
props: {
|
|
1910
|
+
span: 21
|
|
1911
|
+
},
|
|
1912
|
+
style: {},
|
|
1913
|
+
children: [
|
|
1914
|
+
{
|
|
1915
|
+
id: "16270bdc-b0c9-4d51-be20-03d51ec9e1f7",
|
|
1916
|
+
type: "text",
|
|
1917
|
+
title: "文本",
|
|
1918
|
+
style: {
|
|
1919
|
+
paddingTop: "0px",
|
|
1920
|
+
paddingBottom: "0px",
|
|
1921
|
+
paddingLeft: "0px",
|
|
1922
|
+
paddingRight: "0px",
|
|
1923
|
+
fontSize: "14px",
|
|
1924
|
+
textAlign: "left",
|
|
1925
|
+
lineHeight: "22px"
|
|
1926
|
+
},
|
|
1927
|
+
props: {
|
|
1928
|
+
defaultContent: "1、“实施前评价”填写时机为:入院时或症状出现时(即实施前评价的日期可能非同一时间)。"
|
|
1929
|
+
}
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
id: "f64a33c7-1dd7-4cb5-98ea-b4180fc50977",
|
|
1933
|
+
type: "text",
|
|
1934
|
+
title: "文本",
|
|
1935
|
+
style: {
|
|
1936
|
+
paddingTop: "0px",
|
|
1937
|
+
paddingBottom: "0px",
|
|
1938
|
+
paddingLeft: "0px",
|
|
1939
|
+
paddingRight: "0px",
|
|
1940
|
+
fontSize: "14px",
|
|
1941
|
+
textAlign: "left",
|
|
1942
|
+
lineHeight: "22px"
|
|
1943
|
+
},
|
|
1944
|
+
props: {
|
|
1945
|
+
defaultContent:
|
|
1946
|
+
"2、“实施后评价”填写时机为:出院时或症状消失时(即持续改善的症状可在出院时进行评价,对于一过性治愈的症状如呕吐、发热等,可在症状消失时进行评价,不一定等到出院时)。"
|
|
1947
|
+
}
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
id: "c168e785-9d33-49e2-bcac-33dc61f11937",
|
|
1951
|
+
type: "text",
|
|
1952
|
+
title: "文本",
|
|
1953
|
+
style: {
|
|
1954
|
+
paddingTop: "0px",
|
|
1955
|
+
paddingBottom: "0px",
|
|
1956
|
+
paddingLeft: "0px",
|
|
1957
|
+
paddingRight: "0px",
|
|
1958
|
+
fontSize: "14px",
|
|
1959
|
+
textAlign: "left",
|
|
1960
|
+
lineHeight: "22px"
|
|
1961
|
+
},
|
|
1962
|
+
props: {
|
|
1963
|
+
defaultContent: "3、护理效果得分为:有效率=(治疗前积分- 治疗后积分)/治疗前积分x100%。"
|
|
1964
|
+
}
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
id: "e6b539a9-f4f8-4172-99d9-854c2a4ad6d2",
|
|
1968
|
+
type: "text",
|
|
1969
|
+
title: "文本",
|
|
1970
|
+
style: {
|
|
1971
|
+
paddingTop: "0px",
|
|
1972
|
+
paddingBottom: "0px",
|
|
1973
|
+
paddingLeft: "0px",
|
|
1974
|
+
paddingRight: "0px",
|
|
1975
|
+
fontSize: "14px",
|
|
1976
|
+
textAlign: "left",
|
|
1977
|
+
lineHeight: "22px"
|
|
1978
|
+
},
|
|
1979
|
+
props: {
|
|
1980
|
+
defaultContent: "1、“实施前评价”填写时机为:入院时或症状出现时(即实施前评价的日期可能非同一时间)。"
|
|
1981
|
+
}
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
id: "019bf0ce-abdb-4b6a-a3ad-d5fe0aab156f",
|
|
1985
|
+
type: "text",
|
|
1986
|
+
title: "文本",
|
|
1987
|
+
style: {
|
|
1988
|
+
paddingTop: "0px",
|
|
1989
|
+
paddingBottom: "0px",
|
|
1990
|
+
paddingLeft: "0px",
|
|
1991
|
+
paddingRight: "0px",
|
|
1992
|
+
fontSize: "14px",
|
|
1993
|
+
textAlign: "left",
|
|
1994
|
+
lineHeight: "22px"
|
|
1995
|
+
},
|
|
1996
|
+
props: {
|
|
1997
|
+
defaultContent: "(1).临床缓解:中医临床症状基本缓解,证候积分减少≥70% → 好"
|
|
1998
|
+
}
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
id: "10f9741a-b45f-446d-89b2-40d11b544569",
|
|
2002
|
+
type: "text",
|
|
2003
|
+
title: "文本",
|
|
2004
|
+
style: {
|
|
2005
|
+
paddingTop: "0px",
|
|
2006
|
+
paddingBottom: "0px",
|
|
2007
|
+
paddingLeft: "0px",
|
|
2008
|
+
paddingRight: "0px",
|
|
2009
|
+
fontSize: "14px",
|
|
2010
|
+
textAlign: "left",
|
|
2011
|
+
lineHeight: "22px"
|
|
2012
|
+
},
|
|
2013
|
+
props: {
|
|
2014
|
+
defaultContent: "(2).显效:中医临床症状明显改善,证候积分减少≥50% → 较好"
|
|
2015
|
+
}
|
|
2016
|
+
},
|
|
2017
|
+
{
|
|
2018
|
+
id: "f2fa013a-009c-4d6f-99fa-024a963f25c1",
|
|
2019
|
+
type: "text",
|
|
2020
|
+
title: "文本",
|
|
2021
|
+
style: {
|
|
2022
|
+
paddingTop: "0px",
|
|
2023
|
+
paddingBottom: "0px",
|
|
2024
|
+
paddingLeft: "0px",
|
|
2025
|
+
paddingRight: "0px",
|
|
2026
|
+
fontSize: "14px",
|
|
2027
|
+
textAlign: "left",
|
|
2028
|
+
lineHeight: "22px"
|
|
2029
|
+
},
|
|
2030
|
+
props: {
|
|
2031
|
+
defaultContent: "(3).有效:中医临床症状好转,证候积分减少≥20 → 一般"
|
|
2032
|
+
}
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
id: "dc89e621-81d5-4a50-b271-d22dec612015",
|
|
2036
|
+
type: "text",
|
|
2037
|
+
title: "文本",
|
|
2038
|
+
style: {
|
|
2039
|
+
paddingTop: "0px",
|
|
2040
|
+
paddingBottom: "0px",
|
|
2041
|
+
paddingLeft: "0px",
|
|
2042
|
+
paddingRight: "0px",
|
|
2043
|
+
fontSize: "14px",
|
|
2044
|
+
textAlign: "left",
|
|
2045
|
+
lineHeight: "22px"
|
|
2046
|
+
},
|
|
2047
|
+
props: {
|
|
2048
|
+
defaultContent: "(4).无效:中医临床症状无改善,甚或加重,证候积分减少不足20 → 差"
|
|
2049
|
+
}
|
|
2050
|
+
}
|
|
2051
|
+
]
|
|
2052
|
+
}
|
|
2053
|
+
],
|
|
2054
|
+
props: {}
|
|
2055
|
+
}
|
|
2056
|
+
]
|
|
2057
|
+
};
|