|
@@ -9,6 +9,16 @@
|
9
|
9
|
<span id="szy" class="content">{{diastolic_blood_pressure?diastolic_blood_pressure:''}}</span>
|
10
|
10
|
<span class="unit">{{diastolic_blood_pressure?'mmHg':''}}</span>
|
11
|
11
|
</li>
|
|
12
|
+ <li v-if="this.$store.getters.user.template_info.template_id == 6">
|
|
13
|
+ <label for="thtz">透后净体重 : </label>
|
|
14
|
+ <span class="content" id="thtz">{{weight_after?parseFloat(weight_after - this.additional_weight).toFixed(1) : ""}}</span>
|
|
15
|
+ <span class="unit">{{weight_after?'kg':''}}</span>
|
|
16
|
+ </li>
|
|
17
|
+ <li v-if="isShow('衣物重')">
|
|
18
|
+ <label for="thtz">衣物重 : </label>
|
|
19
|
+ <span class="content" id="thtz">{{additional_weight?additional_weight:''}}</span>
|
|
20
|
+ <span class="unit">{{additional_weight?'kg':''}}</span>
|
|
21
|
+ </li>
|
12
|
22
|
<li v-if="isShow('收缩压')">
|
13
|
23
|
<label for="ssy">收缩压 : </label>
|
14
|
24
|
<span class="content" id="ssy">{{systolic_blood_pressure?systolic_blood_pressure:''}}</span>
|
|
@@ -182,466 +192,475 @@
|
182
|
192
|
</template>
|
183
|
193
|
|
184
|
194
|
<script>
|
185
|
|
- export default {
|
186
|
|
- name: 'DialysisPrescription',
|
187
|
|
- data () {
|
188
|
|
- return {
|
189
|
|
- title: '透后评估 ',
|
190
|
|
- template_id: 0
|
191
|
|
- // note: "无明显异常",
|
192
|
|
- // doctor: "刘小军 医生",
|
193
|
|
- // info1: [
|
194
|
|
- // { value: "1", label: "透后体重 : ", content: "55", unit: "kg" },
|
195
|
|
- // { value: "2", label: "收缩压 : ", content: "174", unit: "mmHg" },
|
196
|
|
- // { value: "3", label: "实际超滤量: ", content: "20", unit: "ml" },
|
197
|
|
- // { value: "4", label: "疑血 : ", content: "无震颤", unit: "" },
|
198
|
|
- // { value: "5", label: "", content: "", unit: "" }
|
199
|
|
- // ],
|
200
|
|
- // info2: [
|
201
|
|
- // { value: "1", label: "体重减少 : ", content: "3", unit: "kg" },
|
202
|
|
- // { value: "2", label: "舒张压 : ", content: "200", unit: "mmHg" },
|
203
|
|
- // { value: "3", label: "实际置换量 : ", content: "20", unit: "ml" },
|
204
|
|
- // { value: "3", label: "透后症状 : ", content: "无症状", unit: "" },
|
205
|
|
- // { value: "4", label: "导管 : ", content: "导管堵塞", unit: "" }
|
206
|
|
- // ],
|
207
|
|
- // info3: [
|
208
|
|
- // { value: "1", label: "体温 : ", content: "14", unit: "℃" },
|
209
|
|
- // { value: "2", label: "心率 : ", content: "2", unit: "次/分" },
|
210
|
|
- // { value: "3", label: "实际治疗时长 : ", content: "4时4分", unit: "" },
|
211
|
|
- // { value: "4", label: "透析中入量: ", content: "一般", unit: "" },
|
212
|
|
- // { value: "4", label: "并发症: ", content: "痔疮出血", unit: "" }
|
213
|
|
- // ]
|
214
|
|
- }
|
215
|
|
- },
|
216
|
|
- props: {
|
217
|
|
- record: {
|
218
|
|
- type: Object
|
219
|
|
- }
|
220
|
|
- },
|
221
|
|
- created () {
|
222
|
|
- this.template_id = this.$store.getters.user.template_info.template_id
|
223
|
|
- },
|
224
|
|
- computed: {
|
225
|
|
- weight_after: function () {
|
226
|
|
- if (this.record == null || this.record.id == '') {
|
227
|
|
- return '-'
|
228
|
|
- }
|
229
|
|
- return this.record.weight_after
|
230
|
|
- },
|
231
|
|
- systolic_blood_pressure: function () {
|
232
|
|
- if (this.record == null || this.record.id == '') {
|
233
|
|
- return '-'
|
234
|
|
- }
|
235
|
|
- return this.record.systolic_blood_pressure
|
236
|
|
- },
|
237
|
|
- actual_ultrafiltration: function () {
|
238
|
|
- if (this.record == null || this.record.id == '') {
|
239
|
|
- return '-'
|
240
|
|
- }
|
241
|
|
- return this.record.actual_ultrafiltration
|
242
|
|
- },
|
243
|
|
- cruor: function () {
|
244
|
|
- if (this.record == null || this.record.id == '') {
|
245
|
|
- return '-'
|
246
|
|
- }
|
247
|
|
- return this.record.cruor
|
248
|
|
- },
|
249
|
|
- internal_fistula: function () {
|
250
|
|
- if (this.record == null || this.record.id == '') {
|
251
|
|
- return '-'
|
252
|
|
- }
|
253
|
|
- return this.record.internal_fistula
|
254
|
|
- },
|
255
|
|
- weight_loss: function () {
|
256
|
|
- if (this.record == null || this.record.id == '') {
|
257
|
|
- return '-'
|
258
|
|
- }
|
259
|
|
- return this.record.weight_loss
|
260
|
|
- },
|
261
|
|
- inpatient_department: function () {
|
262
|
|
- if (this.record == null || this.record.id == '') {
|
263
|
|
- return '-'
|
264
|
|
- }
|
265
|
|
- return this.record.inpatient_department
|
266
|
|
- },
|
267
|
|
- patient_gose: function () {
|
268
|
|
- if (this.record == null || this.record.id == '') {
|
269
|
|
- return 0
|
270
|
|
- }
|
271
|
|
- return this.record.patient_gose
|
272
|
|
- },
|
273
|
|
- diastolic_blood_pressure: function () {
|
274
|
|
- if (this.record == null || this.record.id == '') {
|
275
|
|
- return '-'
|
276
|
|
- }
|
277
|
|
- return this.record.diastolic_blood_pressure
|
278
|
|
- },
|
279
|
|
- actual_displacement: function () {
|
280
|
|
- if (this.record == null || this.record.id == '') {
|
281
|
|
- return '-'
|
282
|
|
- }
|
283
|
|
- return this.record.actual_displacement
|
284
|
|
- },
|
285
|
|
- symptom_after_dialysis: function () {
|
286
|
|
- if (this.record == null || this.record.id == '') {
|
287
|
|
- return '-'
|
288
|
|
- }
|
289
|
|
- return this.record.symptom_after_dialysis
|
290
|
|
- },
|
291
|
|
- blood_access_part: function () {
|
292
|
|
- if (this.record == null || this.record.id == '') {
|
293
|
|
- return '-'
|
294
|
|
- }
|
295
|
|
- let vascular_access = this.$store.getters.vascular_access
|
296
|
|
- let valen = vascular_access.length
|
297
|
|
- let name = '-'
|
298
|
|
- for (let index = 0; index < valen; index++) {
|
299
|
|
- if (vascular_access[index].id == this.record.blood_access_part_id) {
|
300
|
|
- name = vascular_access[index].name
|
301
|
|
- break
|
302
|
|
- }
|
303
|
|
- }
|
304
|
|
- return name
|
305
|
|
- },
|
306
|
|
- puncture_point_oozing_blood_name: function () {
|
307
|
|
- if (this.record == null || this.record.id == '') {
|
308
|
|
- return '-'
|
309
|
|
- }
|
310
|
|
- switch (this.record.puncture_point_oozing_blood) {
|
311
|
|
- case 1:
|
312
|
|
- return '有'
|
313
|
|
- break
|
314
|
|
- case 2:
|
315
|
|
- return '无'
|
316
|
|
- break
|
317
|
|
-
|
318
|
|
- default:
|
319
|
|
- return '-'
|
320
|
|
- break
|
|
195
|
+export default {
|
|
196
|
+ name: 'DialysisPrescription',
|
|
197
|
+ data () {
|
|
198
|
+ return {
|
|
199
|
+ title: '透后评估 ',
|
|
200
|
+ template_id: 0
|
|
201
|
+ // note: "无明显异常",
|
|
202
|
+ // doctor: "刘小军 医生",
|
|
203
|
+ // info1: [
|
|
204
|
+ // { value: "1", label: "透后体重 : ", content: "55", unit: "kg" },
|
|
205
|
+ // { value: "2", label: "收缩压 : ", content: "174", unit: "mmHg" },
|
|
206
|
+ // { value: "3", label: "实际超滤量: ", content: "20", unit: "ml" },
|
|
207
|
+ // { value: "4", label: "疑血 : ", content: "无震颤", unit: "" },
|
|
208
|
+ // { value: "5", label: "", content: "", unit: "" }
|
|
209
|
+ // ],
|
|
210
|
+ // info2: [
|
|
211
|
+ // { value: "1", label: "体重减少 : ", content: "3", unit: "kg" },
|
|
212
|
+ // { value: "2", label: "舒张压 : ", content: "200", unit: "mmHg" },
|
|
213
|
+ // { value: "3", label: "实际置换量 : ", content: "20", unit: "ml" },
|
|
214
|
+ // { value: "3", label: "透后症状 : ", content: "无症状", unit: "" },
|
|
215
|
+ // { value: "4", label: "导管 : ", content: "导管堵塞", unit: "" }
|
|
216
|
+ // ],
|
|
217
|
+ // info3: [
|
|
218
|
+ // { value: "1", label: "体温 : ", content: "14", unit: "℃" },
|
|
219
|
+ // { value: "2", label: "心率 : ", content: "2", unit: "次/分" },
|
|
220
|
+ // { value: "3", label: "实际治疗时长 : ", content: "4时4分", unit: "" },
|
|
221
|
+ // { value: "4", label: "透析中入量: ", content: "一般", unit: "" },
|
|
222
|
+ // { value: "4", label: "并发症: ", content: "痔疮出血", unit: "" }
|
|
223
|
+ // ]
|
|
224
|
+ }
|
|
225
|
+ },
|
|
226
|
+ props: {
|
|
227
|
+ record: {
|
|
228
|
+ type: Object
|
|
229
|
+ },
|
|
230
|
+ predialysis: {
|
|
231
|
+ type: Object
|
|
232
|
+ }
|
|
233
|
+ },
|
|
234
|
+ created () {
|
|
235
|
+ this.template_id = this.$store.getters.user.template_info.template_id
|
|
236
|
+ },
|
|
237
|
+ computed: {
|
|
238
|
+ weight_after: function () {
|
|
239
|
+ if (this.record == null || this.record.id == '') {
|
|
240
|
+ return '-'
|
|
241
|
+ }
|
|
242
|
+ return this.record.weight_after
|
|
243
|
+ },
|
|
244
|
+ additional_weight: function () {
|
|
245
|
+ if (this.record == null || this.record.id == '') {
|
|
246
|
+ return '-'
|
|
247
|
+ }
|
|
248
|
+ return this.record.additional_weight
|
|
249
|
+ },
|
|
250
|
+ systolic_blood_pressure: function () {
|
|
251
|
+ if (this.record == null || this.record.id == '') {
|
|
252
|
+ return '-'
|
|
253
|
+ }
|
|
254
|
+ return this.record.systolic_blood_pressure
|
|
255
|
+ },
|
|
256
|
+ actual_ultrafiltration: function () {
|
|
257
|
+ if (this.record == null || this.record.id == '') {
|
|
258
|
+ return '-'
|
|
259
|
+ }
|
|
260
|
+ return this.record.actual_ultrafiltration
|
|
261
|
+ },
|
|
262
|
+ cruor: function () {
|
|
263
|
+ if (this.record == null || this.record.id == '') {
|
|
264
|
+ return '-'
|
|
265
|
+ }
|
|
266
|
+ return this.record.cruor
|
|
267
|
+ },
|
|
268
|
+ internal_fistula: function () {
|
|
269
|
+ if (this.record == null || this.record.id == '') {
|
|
270
|
+ return '-'
|
|
271
|
+ }
|
|
272
|
+ return this.record.internal_fistula
|
|
273
|
+ },
|
|
274
|
+ weight_loss: function () {
|
|
275
|
+ if (this.record == null || this.record.id == '') {
|
|
276
|
+ return '-'
|
|
277
|
+ }
|
|
278
|
+ return this.record.weight_loss
|
|
279
|
+ },
|
|
280
|
+ inpatient_department: function () {
|
|
281
|
+ if (this.record == null || this.record.id == '') {
|
|
282
|
+ return '-'
|
|
283
|
+ }
|
|
284
|
+ return this.record.inpatient_department
|
|
285
|
+ },
|
|
286
|
+ patient_gose: function () {
|
|
287
|
+ if (this.record == null || this.record.id == '') {
|
|
288
|
+ return 0
|
|
289
|
+ }
|
|
290
|
+ return this.record.patient_gose
|
|
291
|
+ },
|
|
292
|
+ diastolic_blood_pressure: function () {
|
|
293
|
+ if (this.record == null || this.record.id == '') {
|
|
294
|
+ return '-'
|
|
295
|
+ }
|
|
296
|
+ return this.record.diastolic_blood_pressure
|
|
297
|
+ },
|
|
298
|
+ actual_displacement: function () {
|
|
299
|
+ if (this.record == null || this.record.id == '') {
|
|
300
|
+ return '-'
|
|
301
|
+ }
|
|
302
|
+ return this.record.actual_displacement
|
|
303
|
+ },
|
|
304
|
+ symptom_after_dialysis: function () {
|
|
305
|
+ if (this.record == null || this.record.id == '') {
|
|
306
|
+ return '-'
|
|
307
|
+ }
|
|
308
|
+ return this.record.symptom_after_dialysis
|
|
309
|
+ },
|
|
310
|
+ blood_access_part: function () {
|
|
311
|
+ if (this.record == null || this.record.id == '') {
|
|
312
|
+ return '-'
|
|
313
|
+ }
|
|
314
|
+ let vascular_access = this.$store.getters.vascular_access
|
|
315
|
+ let valen = vascular_access.length
|
|
316
|
+ let name = '-'
|
|
317
|
+ for (let index = 0; index < valen; index++) {
|
|
318
|
+ if (vascular_access[index].id == this.record.blood_access_part_id) {
|
|
319
|
+ name = vascular_access[index].name
|
|
320
|
+ break
|
321
|
321
|
}
|
322
|
|
- },
|
|
322
|
+ }
|
|
323
|
+ return name
|
|
324
|
+ },
|
|
325
|
+ puncture_point_oozing_blood_name: function () {
|
|
326
|
+ if (this.record == null || this.record.id == '') {
|
|
327
|
+ return '-'
|
|
328
|
+ }
|
|
329
|
+ switch (this.record.puncture_point_oozing_blood) {
|
|
330
|
+ case 1:
|
|
331
|
+ return '有'
|
|
332
|
+ break
|
|
333
|
+ case 2:
|
|
334
|
+ return '无'
|
|
335
|
+ break
|
323
|
336
|
|
324
|
|
- eat_name: function () {
|
325
|
|
- if (this.record == null || this.record.id == '') {
|
|
337
|
+ default:
|
326
|
338
|
return '-'
|
327
|
|
- }
|
328
|
|
- switch (this.record.is_eat) {
|
329
|
|
- case 1:
|
330
|
|
- return '有'
|
331
|
|
- break
|
332
|
|
- case 2:
|
333
|
|
- return '无'
|
334
|
|
- break
|
|
339
|
+ break
|
|
340
|
+ }
|
|
341
|
+ },
|
335
|
342
|
|
336
|
|
- default:
|
337
|
|
- return '-'
|
338
|
|
- break
|
339
|
|
- }
|
340
|
|
- },
|
341
|
|
- patient_gose_name: function () {
|
342
|
|
- if (this.record == null || this.record.id == '') {
|
343
|
|
- return '-'
|
344
|
|
- }
|
345
|
|
- switch (this.record.patient_gose) {
|
346
|
|
- case 1:
|
347
|
|
- return '离院'
|
348
|
|
- break
|
349
|
|
- case 2:
|
350
|
|
- return '留观'
|
351
|
|
- break
|
352
|
|
- case 3:
|
353
|
|
- return '住院'
|
354
|
|
- break
|
|
343
|
+ eat_name: function () {
|
|
344
|
+ if (this.record == null || this.record.id == '') {
|
|
345
|
+ return '-'
|
|
346
|
+ }
|
|
347
|
+ switch (this.record.is_eat) {
|
|
348
|
+ case 1:
|
|
349
|
+ return '有'
|
|
350
|
+ break
|
|
351
|
+ case 2:
|
|
352
|
+ return '无'
|
|
353
|
+ break
|
355
|
354
|
|
356
|
|
- default:
|
357
|
|
- return '-'
|
358
|
|
- break
|
359
|
|
- }
|
360
|
|
- },
|
361
|
|
- blood_access_opera: function () {
|
362
|
|
- if (this.record == null || this.record.id == '') {
|
363
|
|
- return '-'
|
364
|
|
- }
|
365
|
|
- let vascular_access = this.$store.getters.vascular_access_desc
|
366
|
|
- let valen = vascular_access.length
|
367
|
|
- let name = '-'
|
368
|
|
- for (let index = 0; index < valen; index++) {
|
369
|
|
- if (vascular_access[index].id == this.record.blood_access_part_opera_id) {
|
370
|
|
- name = vascular_access[index].name
|
371
|
|
- break
|
372
|
|
- }
|
373
|
|
- }
|
374
|
|
- return name
|
375
|
|
- },
|
376
|
|
- catheter: function () {
|
377
|
|
- if (this.record == null || this.record.id == '') {
|
378
|
|
- return '-'
|
379
|
|
- }
|
380
|
|
- return this.record.catheter
|
381
|
|
- },
|
382
|
|
- puncture_point_haematoma_name: function () {
|
383
|
|
- if (this.record == null || this.record.id == '') {
|
384
|
|
- return '-'
|
385
|
|
- }
|
386
|
|
- switch (this.record.puncture_point_haematoma) {
|
387
|
|
- case 1:
|
388
|
|
- return '有'
|
389
|
|
- break
|
390
|
|
- case 2:
|
391
|
|
- return '无'
|
392
|
|
- break
|
393
|
|
- default:
|
394
|
|
- return '-'
|
395
|
|
- break
|
396
|
|
- }
|
397
|
|
- },
|
398
|
|
- breathing_rate: function () {
|
399
|
|
- if (this.record == null || this.record.id == '') {
|
400
|
|
- return '-'
|
401
|
|
- }
|
402
|
|
- return this.record.breathing_rate
|
403
|
|
- },
|
404
|
|
- temperature: function () {
|
405
|
|
- if (this.record == null || this.record.id == '') {
|
406
|
|
- return '-'
|
407
|
|
- }
|
408
|
|
- return this.record.temperature
|
409
|
|
- },
|
410
|
|
- pulse_frequency: function () {
|
411
|
|
- if (this.record == null || this.record.id == '') {
|
412
|
|
- return '-'
|
413
|
|
- }
|
414
|
|
- return this.record.pulse_frequency
|
415
|
|
- },
|
416
|
|
- actual_treatment_hour: function () {
|
417
|
|
- if (this.record == null || this.record.id == '') {
|
|
355
|
+ default:
|
418
|
356
|
return '-'
|
419
|
|
- }
|
420
|
|
- return this.record.actual_treatment_hour
|
421
|
|
- },
|
422
|
|
- actual_treatment_minute: function () {
|
423
|
|
- if (this.record == null || this.record.id == '') {
|
424
|
|
- return '-'
|
425
|
|
- }
|
426
|
|
- return this.record.actual_treatment_minute
|
427
|
|
- },
|
428
|
|
- dialysis_intakes_feed: function () {
|
429
|
|
- if (this.record == null || this.record.id == '') {
|
430
|
|
- return '-'
|
431
|
|
- }
|
432
|
|
- return this.record.dialysis_intakes
|
433
|
|
- },
|
434
|
|
- observation_content_other: function () {
|
435
|
|
- if (this.record == null || this.record.id == '') {
|
436
|
|
- return '-'
|
437
|
|
- }
|
438
|
|
- return this.record.observation_content_other
|
439
|
|
- },
|
440
|
|
- observation_content: function () {
|
441
|
|
- if (this.record == null || this.record.id == '') {
|
|
357
|
+ break
|
|
358
|
+ }
|
|
359
|
+ },
|
|
360
|
+ patient_gose_name: function () {
|
|
361
|
+ if (this.record == null || this.record.id == '') {
|
|
362
|
+ return '-'
|
|
363
|
+ }
|
|
364
|
+ switch (this.record.patient_gose) {
|
|
365
|
+ case 1:
|
|
366
|
+ return '离院'
|
|
367
|
+ break
|
|
368
|
+ case 2:
|
|
369
|
+ return '留观'
|
|
370
|
+ break
|
|
371
|
+ case 3:
|
|
372
|
+ return '住院'
|
|
373
|
+ break
|
|
374
|
+
|
|
375
|
+ default:
|
442
|
376
|
return '-'
|
|
377
|
+ break
|
|
378
|
+ }
|
|
379
|
+ },
|
|
380
|
+ blood_access_opera: function () {
|
|
381
|
+ if (this.record == null || this.record.id == '') {
|
|
382
|
+ return '-'
|
|
383
|
+ }
|
|
384
|
+ let vascular_access = this.$store.getters.vascular_access_desc
|
|
385
|
+ let valen = vascular_access.length
|
|
386
|
+ let name = '-'
|
|
387
|
+ for (let index = 0; index < valen; index++) {
|
|
388
|
+ if (vascular_access[index].id == this.record.blood_access_part_opera_id) {
|
|
389
|
+ name = vascular_access[index].name
|
|
390
|
+ break
|
443
|
391
|
}
|
444
|
|
- return this.record.observation_content
|
445
|
|
- },
|
446
|
|
- complication: function () {
|
447
|
|
- if (this.record == null || this.record.id == '') {
|
|
392
|
+ }
|
|
393
|
+ return name
|
|
394
|
+ },
|
|
395
|
+ catheter: function () {
|
|
396
|
+ if (this.record == null || this.record.id == '') {
|
|
397
|
+ return '-'
|
|
398
|
+ }
|
|
399
|
+ return this.record.catheter
|
|
400
|
+ },
|
|
401
|
+ puncture_point_haematoma_name: function () {
|
|
402
|
+ if (this.record == null || this.record.id == '') {
|
|
403
|
+ return '-'
|
|
404
|
+ }
|
|
405
|
+ switch (this.record.puncture_point_haematoma) {
|
|
406
|
+ case 1:
|
|
407
|
+ return '有'
|
|
408
|
+ break
|
|
409
|
+ case 2:
|
|
410
|
+ return '无'
|
|
411
|
+ break
|
|
412
|
+ default:
|
448
|
413
|
return '-'
|
449
|
|
- }
|
450
|
|
- return this.record.complication
|
451
|
|
- },
|
452
|
|
- internal_fistula_tremor_ac_name: function () {
|
453
|
|
- if (this.record == null || this.record.id == '') {
|
|
414
|
+ break
|
|
415
|
+ }
|
|
416
|
+ },
|
|
417
|
+ breathing_rate: function () {
|
|
418
|
+ if (this.record == null || this.record.id == '') {
|
|
419
|
+ return '-'
|
|
420
|
+ }
|
|
421
|
+ return this.record.breathing_rate
|
|
422
|
+ },
|
|
423
|
+ temperature: function () {
|
|
424
|
+ if (this.record == null || this.record.id == '') {
|
|
425
|
+ return '-'
|
|
426
|
+ }
|
|
427
|
+ return this.record.temperature
|
|
428
|
+ },
|
|
429
|
+ pulse_frequency: function () {
|
|
430
|
+ if (this.record == null || this.record.id == '') {
|
|
431
|
+ return '-'
|
|
432
|
+ }
|
|
433
|
+ return this.record.pulse_frequency
|
|
434
|
+ },
|
|
435
|
+ actual_treatment_hour: function () {
|
|
436
|
+ if (this.record == null || this.record.id == '') {
|
|
437
|
+ return '-'
|
|
438
|
+ }
|
|
439
|
+ return this.record.actual_treatment_hour
|
|
440
|
+ },
|
|
441
|
+ actual_treatment_minute: function () {
|
|
442
|
+ if (this.record == null || this.record.id == '') {
|
|
443
|
+ return '-'
|
|
444
|
+ }
|
|
445
|
+ return this.record.actual_treatment_minute
|
|
446
|
+ },
|
|
447
|
+ dialysis_intakes_feed: function () {
|
|
448
|
+ if (this.record == null || this.record.id == '') {
|
|
449
|
+ return '-'
|
|
450
|
+ }
|
|
451
|
+ return this.record.dialysis_intakes
|
|
452
|
+ },
|
|
453
|
+ observation_content_other: function () {
|
|
454
|
+ if (this.record == null || this.record.id == '') {
|
|
455
|
+ return '-'
|
|
456
|
+ }
|
|
457
|
+ return this.record.observation_content_other
|
|
458
|
+ },
|
|
459
|
+ observation_content: function () {
|
|
460
|
+ if (this.record == null || this.record.id == '') {
|
|
461
|
+ return '-'
|
|
462
|
+ }
|
|
463
|
+ return this.record.observation_content
|
|
464
|
+ },
|
|
465
|
+ complication: function () {
|
|
466
|
+ if (this.record == null || this.record.id == '') {
|
|
467
|
+ return '-'
|
|
468
|
+ }
|
|
469
|
+ return this.record.complication
|
|
470
|
+ },
|
|
471
|
+ internal_fistula_tremor_ac_name: function () {
|
|
472
|
+ if (this.record == null || this.record.id == '') {
|
|
473
|
+ return '-'
|
|
474
|
+ }
|
|
475
|
+ switch (this.record.internal_fistula_tremor_ac) {
|
|
476
|
+ case 1:
|
|
477
|
+ return '存在'
|
|
478
|
+ break
|
|
479
|
+ case 2:
|
|
480
|
+ return '减弱'
|
|
481
|
+ break
|
|
482
|
+ case 3:
|
|
483
|
+ return '无'
|
|
484
|
+ break
|
|
485
|
+ default:
|
454
|
486
|
return '-'
|
455
|
|
- }
|
456
|
|
- switch (this.record.internal_fistula_tremor_ac) {
|
457
|
|
- case 1:
|
458
|
|
- return '存在'
|
459
|
|
- break
|
460
|
|
- case 2:
|
461
|
|
- return '减弱'
|
462
|
|
- break
|
463
|
|
- case 3:
|
464
|
|
- return '无'
|
465
|
|
- break
|
466
|
|
- default:
|
467
|
|
- return '-'
|
468
|
|
- break
|
469
|
|
- }
|
470
|
|
- },
|
471
|
|
-
|
472
|
|
- remark: function () {
|
473
|
|
- if (this.record == null || this.record.id == '') {
|
474
|
|
- return ''
|
475
|
|
- }
|
476
|
|
- return this.record.remark
|
477
|
|
- },
|
478
|
|
- in_advance_minute: function () {
|
479
|
|
- if (this.record == null || this.record.id == '') {
|
480
|
|
- return ''
|
481
|
|
- }
|
482
|
|
- return this.record.in_advance_minute
|
483
|
|
- },
|
484
|
|
- in_advance_reason: function () {
|
485
|
|
- if (this.record == null || this.record.id == '') {
|
486
|
|
- return ''
|
487
|
|
- }
|
488
|
|
- return this.record.in_advance_reason + ',' + this.record.in_advance_reason_other
|
489
|
|
- },
|
490
|
|
- hemostasis_minute: function () {
|
491
|
|
- if (this.record == null || this.record.id == '') {
|
492
|
|
- return ''
|
493
|
|
- }
|
|
487
|
+ break
|
|
488
|
+ }
|
|
489
|
+ },
|
494
|
490
|
|
495
|
|
- return this.record.hemostasis_minute
|
496
|
|
- },
|
497
|
|
- in_advance_reason_other: function () {
|
498
|
|
- if (this.record == null || this.record.id == '') {
|
499
|
|
- return ''
|
500
|
|
- }
|
501
|
|
- return this.record.in_advance_reason_other
|
|
491
|
+ remark: function () {
|
|
492
|
+ if (this.record == null || this.record.id == '') {
|
|
493
|
+ return ''
|
502
|
494
|
}
|
|
495
|
+ return this.record.remark
|
503
|
496
|
},
|
504
|
|
- methods: {
|
505
|
|
- isShow (name) {
|
506
|
|
- var filedList = this.$store.getters.user.fileds
|
|
497
|
+ in_advance_minute: function () {
|
|
498
|
+ if (this.record == null || this.record.id == '') {
|
|
499
|
+ return ''
|
|
500
|
+ }
|
|
501
|
+ return this.record.in_advance_minute
|
|
502
|
+ },
|
|
503
|
+ in_advance_reason: function () {
|
|
504
|
+ if (this.record == null || this.record.id == '') {
|
|
505
|
+ return ''
|
|
506
|
+ }
|
|
507
|
+ return this.record.in_advance_reason + ',' + this.record.in_advance_reason_other
|
|
508
|
+ },
|
|
509
|
+ hemostasis_minute: function () {
|
|
510
|
+ if (this.record == null || this.record.id == '') {
|
|
511
|
+ return ''
|
|
512
|
+ }
|
507
|
513
|
|
508
|
|
- for (let i = 0; i < filedList.length; i++) {
|
509
|
|
- if (filedList[i].module == 5 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
|
510
|
|
- return true
|
511
|
|
- }
|
512
|
|
- }
|
513
|
|
- return false
|
514
|
|
- },
|
515
|
|
- getOpera: function (id) {
|
516
|
|
- var hemostasis_opera = this.$store.getters.hemostasis_opera
|
517
|
|
- var hemostasisOperaName = ''
|
518
|
|
- for (let i = 0; i < hemostasis_opera.length; i++) {
|
519
|
|
- if (hemostasis_opera[i].id == id) {
|
520
|
|
- hemostasisOperaName = hemostasis_opera[i].name
|
521
|
|
- }
|
|
514
|
+ return this.record.hemostasis_minute
|
|
515
|
+ },
|
|
516
|
+ in_advance_reason_other: function () {
|
|
517
|
+ if (this.record == null || this.record.id == '') {
|
|
518
|
+ return ''
|
|
519
|
+ }
|
|
520
|
+ return this.record.in_advance_reason_other
|
|
521
|
+ }
|
|
522
|
+ },
|
|
523
|
+ methods: {
|
|
524
|
+ isShow (name) {
|
|
525
|
+ var filedList = this.$store.getters.user.fileds
|
|
526
|
+
|
|
527
|
+ for (let i = 0; i < filedList.length; i++) {
|
|
528
|
+ if (filedList[i].module == 5 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
|
|
529
|
+ return true
|
522
|
530
|
}
|
523
|
|
- return hemostasisOperaName
|
524
|
|
- },
|
525
|
|
- getTremorNoise: function (id) {
|
526
|
|
- var tremor_noise = this.$store.getters.tremor_noise
|
527
|
|
- var tremorNoiseName = ''
|
528
|
|
- for (let i = 0; i < tremor_noise.length; i++) {
|
529
|
|
- if (tremor_noise[i].id == id) {
|
530
|
|
- tremorNoiseName = tremor_noise[i].name
|
531
|
|
- }
|
|
531
|
+ }
|
|
532
|
+ return false
|
|
533
|
+ },
|
|
534
|
+ getOpera: function (id) {
|
|
535
|
+ var hemostasis_opera = this.$store.getters.hemostasis_opera
|
|
536
|
+ var hemostasisOperaName = ''
|
|
537
|
+ for (let i = 0; i < hemostasis_opera.length; i++) {
|
|
538
|
+ if (hemostasis_opera[i].id == id) {
|
|
539
|
+ hemostasisOperaName = hemostasis_opera[i].name
|
532
|
540
|
}
|
533
|
|
- return tremorNoiseName
|
534
|
|
- },
|
535
|
|
- getDisequilibriumSyndrome: function (id) {
|
536
|
|
- var disequilibrium_syndrome = this.$store.getters.disequilibrium_syndrome
|
537
|
|
- var disequilibriumSyndromeName = ''
|
538
|
|
- for (let i = 0; i < disequilibrium_syndrome.length; i++) {
|
539
|
|
- if (disequilibrium_syndrome[i].id == id) {
|
540
|
|
- disequilibriumSyndromeName = disequilibrium_syndrome[i].name
|
541
|
|
- }
|
|
541
|
+ }
|
|
542
|
+ return hemostasisOperaName
|
|
543
|
+ },
|
|
544
|
+ getTremorNoise: function (id) {
|
|
545
|
+ var tremor_noise = this.$store.getters.tremor_noise
|
|
546
|
+ var tremorNoiseName = ''
|
|
547
|
+ for (let i = 0; i < tremor_noise.length; i++) {
|
|
548
|
+ if (tremor_noise[i].id == id) {
|
|
549
|
+ tremorNoiseName = tremor_noise[i].name
|
542
|
550
|
}
|
543
|
|
- return disequilibriumSyndromeName
|
544
|
|
- },
|
545
|
|
- getDisequilibriumSyndromeOptionName: function (id) {
|
546
|
|
- var disequilibrium_syndrome_option = this.$store.getters.disequilibrium_syndrome_option
|
547
|
|
- var disequilibriumSyndromeOptionName = ''
|
548
|
|
- for (let i = 0; i < disequilibrium_syndrome_option.length; i++) {
|
549
|
|
- if (disequilibrium_syndrome_option[i].id == id) {
|
550
|
|
- disequilibriumSyndromeOptionName = disequilibrium_syndrome_option[i].name
|
551
|
|
- }
|
|
551
|
+ }
|
|
552
|
+ return tremorNoiseName
|
|
553
|
+ },
|
|
554
|
+ getDisequilibriumSyndrome: function (id) {
|
|
555
|
+ var disequilibrium_syndrome = this.$store.getters.disequilibrium_syndrome
|
|
556
|
+ var disequilibriumSyndromeName = ''
|
|
557
|
+ for (let i = 0; i < disequilibrium_syndrome.length; i++) {
|
|
558
|
+ if (disequilibrium_syndrome[i].id == id) {
|
|
559
|
+ disequilibriumSyndromeName = disequilibrium_syndrome[i].name
|
552
|
560
|
}
|
553
|
|
- return disequilibriumSyndromeOptionName
|
554
|
|
- },
|
555
|
|
- getArterialTubeName: function (id) {
|
556
|
|
- var arterial_tube = this.$store.getters.arterial_tube
|
557
|
|
- var arterialTubeName = ''
|
558
|
|
- for (let i = 0; i < arterial_tube.length; i++) {
|
559
|
|
- if (arterial_tube[i].id == id) {
|
560
|
|
- arterialTubeName = arterial_tube[i].name
|
561
|
|
- }
|
|
561
|
+ }
|
|
562
|
+ return disequilibriumSyndromeName
|
|
563
|
+ },
|
|
564
|
+ getDisequilibriumSyndromeOptionName: function (id) {
|
|
565
|
+ var disequilibrium_syndrome_option = this.$store.getters.disequilibrium_syndrome_option
|
|
566
|
+ var disequilibriumSyndromeOptionName = ''
|
|
567
|
+ for (let i = 0; i < disequilibrium_syndrome_option.length; i++) {
|
|
568
|
+ if (disequilibrium_syndrome_option[i].id == id) {
|
|
569
|
+ disequilibriumSyndromeOptionName = disequilibrium_syndrome_option[i].name
|
562
|
570
|
}
|
563
|
|
- return arterialTubeName
|
564
|
|
- },
|
565
|
|
- getIntravenousTubeName: function (id) {
|
566
|
|
- var intravenous_tube = this.$store.getters.intravenous_tube
|
567
|
|
- var intravenousTubeName = ''
|
568
|
|
- for (let i = 0; i < intravenous_tube.length; i++) {
|
569
|
|
- if (intravenous_tube[i].id == id) {
|
570
|
|
- intravenousTubeName = intravenous_tube[i].name
|
571
|
|
- }
|
|
571
|
+ }
|
|
572
|
+ return disequilibriumSyndromeOptionName
|
|
573
|
+ },
|
|
574
|
+ getArterialTubeName: function (id) {
|
|
575
|
+ var arterial_tube = this.$store.getters.arterial_tube
|
|
576
|
+ var arterialTubeName = ''
|
|
577
|
+ for (let i = 0; i < arterial_tube.length; i++) {
|
|
578
|
+ if (arterial_tube[i].id == id) {
|
|
579
|
+ arterialTubeName = arterial_tube[i].name
|
572
|
580
|
}
|
573
|
|
- return intravenousTubeName
|
574
|
|
- },
|
575
|
|
- getDialyzer: function (id) {
|
576
|
|
- var dialyzer = this.$store.getters.dialyzer
|
577
|
|
- var dialyzerName = ''
|
578
|
|
- for (let i = 0; i < dialyzer.length; i++) {
|
579
|
|
- if (dialyzer[i].id == id) {
|
580
|
|
- dialyzerName = dialyzer[i].name
|
581
|
|
- }
|
|
581
|
+ }
|
|
582
|
+ return arterialTubeName
|
|
583
|
+ },
|
|
584
|
+ getIntravenousTubeName: function (id) {
|
|
585
|
+ var intravenous_tube = this.$store.getters.intravenous_tube
|
|
586
|
+ var intravenousTubeName = ''
|
|
587
|
+ for (let i = 0; i < intravenous_tube.length; i++) {
|
|
588
|
+ if (intravenous_tube[i].id == id) {
|
|
589
|
+ intravenousTubeName = intravenous_tube[i].name
|
582
|
590
|
}
|
583
|
|
- return dialyzerName
|
584
|
|
- },
|
585
|
|
- getUnit: function (val) {
|
586
|
|
- switch (this.record.dialysis_intakes_unit) {
|
587
|
|
- case 1:
|
588
|
|
- return 'g'
|
589
|
|
- break
|
590
|
|
- case 2:
|
591
|
|
- return 'ml'
|
592
|
|
- break
|
593
|
|
- default:
|
594
|
|
- return '-'
|
595
|
|
- break
|
|
591
|
+ }
|
|
592
|
+ return intravenousTubeName
|
|
593
|
+ },
|
|
594
|
+ getDialyzer: function (id) {
|
|
595
|
+ var dialyzer = this.$store.getters.dialyzer
|
|
596
|
+ var dialyzerName = ''
|
|
597
|
+ for (let i = 0; i < dialyzer.length; i++) {
|
|
598
|
+ if (dialyzer[i].id == id) {
|
|
599
|
+ dialyzerName = dialyzer[i].name
|
596
|
600
|
}
|
597
|
|
- },
|
598
|
|
- // setRecord(record) {
|
599
|
|
- // if (record == null) {
|
600
|
|
- // this.info1[0].content = ""
|
601
|
|
- // this.info1[1].content = ""
|
602
|
|
- // this.info1[2].content = ""
|
603
|
|
- // this.info1[3].content = ""
|
604
|
|
- // this.info1[4].content = ""
|
605
|
|
-
|
606
|
|
- // this.info2[0].content = ""
|
607
|
|
- // this.info2[1].content = ""
|
608
|
|
- // this.info2[2].content = ""
|
609
|
|
- // this.info2[3].content = ""
|
610
|
|
- // this.info2[4].content = ""
|
|
601
|
+ }
|
|
602
|
+ return dialyzerName
|
|
603
|
+ },
|
|
604
|
+ getUnit: function (val) {
|
|
605
|
+ switch (this.record.dialysis_intakes_unit) {
|
|
606
|
+ case 1:
|
|
607
|
+ return 'g'
|
|
608
|
+ break
|
|
609
|
+ case 2:
|
|
610
|
+ return 'ml'
|
|
611
|
+ break
|
|
612
|
+ default:
|
|
613
|
+ return '-'
|
|
614
|
+ break
|
|
615
|
+ }
|
|
616
|
+ }
|
|
617
|
+ // setRecord(record) {
|
|
618
|
+ // if (record == null) {
|
|
619
|
+ // this.info1[0].content = ""
|
|
620
|
+ // this.info1[1].content = ""
|
|
621
|
+ // this.info1[2].content = ""
|
|
622
|
+ // this.info1[3].content = ""
|
|
623
|
+ // this.info1[4].content = ""
|
611
|
624
|
|
612
|
|
- // this.info3[0].content = ""
|
613
|
|
- // this.info3[1].content = ""
|
614
|
|
- // this.info3[2].content = ""
|
615
|
|
- // this.info3[3].content = ""
|
616
|
|
- // this.info3[4].content = ""
|
|
625
|
+ // this.info2[0].content = ""
|
|
626
|
+ // this.info2[1].content = ""
|
|
627
|
+ // this.info2[2].content = ""
|
|
628
|
+ // this.info2[3].content = ""
|
|
629
|
+ // this.info2[4].content = ""
|
617
|
630
|
|
618
|
|
- // this.note = ""
|
|
631
|
+ // this.info3[0].content = ""
|
|
632
|
+ // this.info3[1].content = ""
|
|
633
|
+ // this.info3[2].content = ""
|
|
634
|
+ // this.info3[3].content = ""
|
|
635
|
+ // this.info3[4].content = ""
|
619
|
636
|
|
620
|
|
- // } else {
|
621
|
|
- // this.info1[0].content = record.weight_after
|
622
|
|
- // this.info1[1].content = record.systolic_blood_pressure
|
623
|
|
- // this.info1[2].content = record.actual_ultrafiltration
|
624
|
|
- // this.info1[3].content = record.cruor
|
625
|
|
- // // this.info1[4].content = record.systolic_blood_pressure
|
|
637
|
+ // this.note = ""
|
626
|
638
|
|
627
|
|
- // this.info2[0].content = record.weight_loss
|
628
|
|
- // this.info2[1].content = record.diastolic_blood_pressure
|
629
|
|
- // this.info2[2].content = record.actual_displacement
|
630
|
|
- // this.info2[3].content = record.symptom_after_dialysis
|
631
|
|
- // this.info2[4].content = record.catheter
|
|
639
|
+ // } else {
|
|
640
|
+ // this.info1[0].content = record.weight_after
|
|
641
|
+ // this.info1[1].content = record.systolic_blood_pressure
|
|
642
|
+ // this.info1[2].content = record.actual_ultrafiltration
|
|
643
|
+ // this.info1[3].content = record.cruor
|
|
644
|
+ // // this.info1[4].content = record.systolic_blood_pressure
|
632
|
645
|
|
633
|
|
- // this.info3[0].content = record.temperature
|
634
|
|
- // this.info3[1].content = record.pulse_frequency
|
635
|
|
- // this.info3[2].content = record.actual_treatment_hour
|
636
|
|
- // this.info3[3].content = record.dialysis_intakes_feed
|
637
|
|
- // this.info3[4].content = record.complication
|
|
646
|
+ // this.info2[0].content = record.weight_loss
|
|
647
|
+ // this.info2[1].content = record.diastolic_blood_pressure
|
|
648
|
+ // this.info2[2].content = record.actual_displacement
|
|
649
|
+ // this.info2[3].content = record.symptom_after_dialysis
|
|
650
|
+ // this.info2[4].content = record.catheter
|
638
|
651
|
|
639
|
|
- // this.note = record.remark
|
640
|
|
- // }
|
641
|
|
- // }
|
642
|
|
- },
|
|
652
|
+ // this.info3[0].content = record.temperature
|
|
653
|
+ // this.info3[1].content = record.pulse_frequency
|
|
654
|
+ // this.info3[2].content = record.actual_treatment_hour
|
|
655
|
+ // this.info3[3].content = record.dialysis_intakes_feed
|
|
656
|
+ // this.info3[4].content = record.complication
|
643
|
657
|
|
|
658
|
+ // this.note = record.remark
|
|
659
|
+ // }
|
|
660
|
+ // }
|
644
|
661
|
}
|
|
662
|
+
|
|
663
|
+}
|
645
|
664
|
</script>
|
646
|
665
|
|
647
|
666
|
<style rel="stylesheet/scss" lang="scss" scoped>
|