1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066 |
- <template>
- <div class="plate-box">
- <h2 class="DetailsTit">
- <span>{{ title }}</span>
- </h2>
- <div class="plate">
- <ul>
- <li v-if="isShow('透析模式')">
- <label>透析模式 : </label>
- <span class="content">{{ dialysis_mode }} </span>
- </li>
-
- <li v-if="isShow('置换量') && (dialysis_mode == 'HDF' || dialysis_mode == 'HF' || dialysis_mode =='HDF+HP')">
- <label>置换量 : </label>
- <span class="content">{{
- replacement_total != "0" ? replacement_total : ""
- }}</span>
- <span v-if="this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 40" class="unit">{{ replacement_total != "0" ? "L" : "" }}</span>
- <span v-if="this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 40" class="unit">{{ replacement_total != "0" ? "ml" : "" }}</span>
-
- </li>
-
- <li v-if="isShow('置换速度')&& this.$store.getters.xt_user.template_info.org_id!=10375">
- <label>置换速度 : </label>
- <span class="content">{{displace_speed }}</span>
- <span class="unit">
- <span v-if="this.$store.getters.xt_user.template_info.org_id!=10414">L/h</span>
- <span v-if="this.$store.getters.xt_user.template_info.org_id==10414">ml/min</span>
- </span>
- </li>
-
- <li v-if="isShow('置换速度') && this.$store.getters.xt_user.template_info.org_id == 10375">
- <label>置换速度 : </label>
- <span class="content">{{displace_speed }}</span>
- <span class="unit">L/h</span>
- </li>
-
-
- <li v-if="isShow('透析液配方')">
- <label>透析液配方 : </label>
- <span class="content">{{ dialysate_formulation }}</span>
- </li>
-
- <li v-if="isShow('透析液温度')">
- <label>透析液温度 : </label>
- <span class="content">{{
- dialysate_temperature != "0" ? dialysate_temperature : ""
- }}</span>
- <span class="unit">{{
- dialysate_temperature != "0" ? "℃" : ""
- }}</span>
- </li>
-
- <li v-if="isShow('抗凝剂')">
- <label>抗凝剂 : </label>
- <span class="content">{{ anticoagulant }}</span>
- </li>
-
- <li v-if="isShow('抗凝剂商品名称') && this.$store.getters.xt_user.template_info.template_id != 24">
- <label>抗凝剂商品名称 : </label>
- <span class="content">{{ antioxidant_commodity_name }}</span>
- </li>
-
-
- <li v-if=" isShow('总量') && getValueStr('anticoagulant', 'anticoagulant') != 5 " >
- <label>总量: </label>
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{anticoagulant_zongliang != "0" ? anticoagulant_zongliang : ""}}</span>
- <span v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id !=45 && this.$store.getters.xt_user.template_info.org_id != 10600 && this.$store.getters.xt_user.template_info.org_id != 0&& this.$store.getters.xt_user.template_info.org_id != 10694">
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" ></span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && this.$store.getters.xt_user.template_info.template_id != 13 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 40 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.org_id != 10234 && this.$store.getters.xt_user.template_info.template_id != 65 && this.$store.getters.xt_user.template_info.org_id != 10600 && this.$store.getters.xt_user.template_info.org_id != 10694">{{ anticoagulant_zongliang != "0" ? "iu" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && (this.$store.getters.xt_user.template_info.template_id == 13 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 40 || this.$store.getters.xt_user.template_info.template_id == 38 || this.$store.getters.xt_user.template_info.org_id == 10234 || this.$store.getters.xt_user.template_info.template_id== 65 || this.$store.getters.xt_user.template_info.org_id == 10600 || this.$store.getters.xt_user.template_info.org_id == 10694)">{{ anticoagulant_zongliang != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3" >
-
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671 || this.$store.getters.xt_user.template_info.org_id == 9675">
- {{ anticoagulant_zongliang != "0" ? "mg" : "" }}
- </span>
- <span v-else>
- {{ anticoagulant_zongliang != "0" ? "iu" : "" }}
- </span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1">{{ anticoagulant_zongliang != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671 || this.$store.getters.xt_user.template_info.org_id == 9675">
- {{ anticoagulant_zongliang != "0" ? "mg" : "" }}
- </span>
- <span v-else>
- {{ anticoagulant_zongliang != "0" ? "iu" : "" }}
- </span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4">{{ anticoagulant_zongliang != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5">{{ anticoagulant_zongliang != "0" ? "ml" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6">
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671 || this.$store.getters.xt_user.template_info.org_id == 9675 || this.$store.getters.xt_user.template_info.org_id == 10694">
- {{ anticoagulant_zongliang != "0" ? "mg" : "" }}
- </span>
- <span v-else>
- {{ anticoagulant_zongliang != "0" ? "iu" : "" }}
- </span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7">
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671 || this.$store.getters.xt_user.template_info.org_id == 9675 || this.$store.getters.xt_user.template_info.org_id == 10694">
- {{ anticoagulant_zongliang != "0" ? "mg" : "" }}
- </span>
- <span v-else>
- {{ anticoagulant_zongliang != "0" ? "iu" : "" }}
- </span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8">{{ anticoagulant_zongliang != "0" ? "iu" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9">{{ anticoagulant_zongliang != "0" ? "iu" : "" }}</span>
- </span>
- <span v-else>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">
- {{ anticoagulant_zongliang != "0" ? "mg" : "" }}</span>
- <span class="unit" v-else>{{ anticoagulant_zongliang != "0" ? "iu" : "" }}</span>
- </span>
- </li>
-
- <li v-if="isShow('透析器/灌流器')">
- <label>透析器/灌流器 : </label>
- <span class="content">{{ dialyzer_perfusion_apparatus }}</span>
- <span class="unit"></span>
- </li>
-
- <li v-if="isShow('透析器')">
- <label>透析器 : </label>
- <span class="content">{{ dialysis_dialyszers }}</span>
- <span class="unit"></span>
- </li>
-
- <li v-if="isShow('灌流器')">
- <label>灌流器 : </label>
- <span class="content">{{ dialysis_irrigation }}</span>
- <span class="unit"></span>
- </li>
-
- <li v-if="isShow('滤过器')">
- <label>滤过器 : </label>
- <span class="content">{{ dialysis_strainer }}</span>
- <span class="unit"></span>
- </li>
-
- <li v-if="isShow('透析前使用特殊药物')">
- <label>透析前使用特殊药物: </label>
- <span class="content">{{ special_medicine }}</span>
- <span class="unit"></span>
- </li>
-
- <li v-if="isShow('体液过多其他症状')">
- <label>体液过多其他症状 : </label>
- <span class="content">{{ body_fluid_other }}</span>
- <span class="unit"></span>
- </li>
- </ul>
-
- <ul>
- <li v-if="isShow('目标超滤量') && this.$store.getters.xt_user.template_info.org_id != 10290">
- <label>目标超滤量 : </label>
- <span class="content">{{ target_ultrafiltration != "0" ? target_ultrafiltration : ""}}</span>
-
- <span v-if="this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.template_id != 32 && this.$store.getters.xt_user.template_info.template_id != 34 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.template_id != 40 && this.$store.getters.xt_user.template_info.template_id != 43 && this.$store.getters.xt_user.template_info.template_id != 45 && this.$store.getters.xt_user.template_info.template_id != 46 && this.$store.getters.xt_user.template_info.template_id != 48 && this.$store.getters.xt_user.template_info.org_id != 9555 && this.$store.getters.xt_user.template_info.org_id != 10345 && this.$store.getters.xt_user.template_info.org_id != 10346 && this.$store.getters.xt_user.template_info.org_id != 10395 && this.$store.getters.xt_user.template_info.template_id!=60 && this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id != 10430 && this.$store.getters.xt_user.template_info.org_id != 10432 && this.$store.getters.xt_user.template_info.org_id != 10441 && this.$store.getters.xt_user.template_info.org_id != 10445 && this.$store.getters.xt_user.template_info.org_id != 9829 && this.$store.getters.xt_user.template_info.org_id != 10440 && this.$store.getters.xt_user.template_info.org_id != 10469 && this.$store.getters.xt_user.template_info.org_id != 10471 && this.$store.getters.xt_user.template_info.org_id != 10460 && this.$store.getters.xt_user.template_info.org_id != 10644 && this.$store.getters.xt_user.template_info.org_id != 10667" class="unit">{{ target_ultrafiltration != "0" ? "L" : "" }}</span>
- <span v-if="this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.template_id == 32 || this.$store.getters.xt_user.template_info.template_id == 34 || this.$store.getters.xt_user.template_info.template_id == 38 || this.$store.getters.xt_user.template_info.template_id == 40 || this.$store.getters.xt_user.template_info.template_id == 43 || this.$store.getters.xt_user.template_info.template_id == 45 || this.$store.getters.xt_user.template_info.template_id == 46 || this.$store.getters.xt_user.template_info.template_id == 48 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10345 || this.$store.getters.xt_user.template_info.org_id == 10346 || this.$store.getters.xt_user.template_info.org_id == 10395 || this.$store.getters.xt_user.template_info.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 10430 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id==10441 || this.$store.getters.xt_user.template_info.org_id==10445 || this.$store.getters.xt_user.template_info.org_id == 9829 || this.$store.getters.xt_user.template_info.org_id == 10440 || this.$store.getters.xt_user.template_info.org_id == 10469|| this.$store.getters.xt_user.template_info.org_id == 10471 || this.$store.getters.xt_user.template_info.org_id == 10460 || this.$store.getters.xt_user.template_info.org_id == 10644 || this.$store.getters.xt_user.template_info.org_id == 10667" class="unit">{{ target_ultrafiltration != "0" ? "ml" : "" }}</span>
- </li>
-
- <li v-if="isShow('目标超滤量') && this.$store.getters.xt_user.template_info.org_id == 10290">
- <label>目标超滤量 : </label>
- <span class="content">{{ target_ultrafiltration != "0" ? target_ultrafiltration : ""}}</span>
- <span class="unit">{{ target_ultrafiltration != "0" ? "L" : "" }}</span>
- </li>
- <!-- <li v-if="isShow('葡萄糖')">
- <label>葡萄糖 : </label>
- <span class="content">{{ glucose != "0" ? glucose : "" }}</span>
- <span class="unit">{{ glucose != "0" ? "mmol/l" : "" }}</span>
- </li> -->
-
-
- <li v-if="isShow('处方脱水量') && this.$store.getters.xt_user.template_info.org_id != 10597 && this.$store.getters.xt_user.template_info.org_id != 10571 && this.$store.getters.xt_user.template_info.org_id != 10612 && this.$store.getters.xt_user.template_info.org_id != 10598 && this.$store.getters.xt_user.template_info.org_id != 10677 && this.$store.getters.xt_user.template_info.org_id != 10679 && this.$store.getters.xt_user.template_info.org_id != 10702 && this.$store.getters.xt_user.template_info.org_id != 10635">
- <label>处方脱水量 : </label>
- <span class="content">{{ prescription_water != "0" ? prescription_water : "" }}</span>
- <span class="unit">{{ prescription_water != "0" ? "ml" : "" }}</span>
- </li>
-
- <li v-if="isShow('处方脱水量') && this.$store.getters.xt_user.template_info.org_id == 10597 || this.$store.getters.xt_user.template_info.org_id == 10571 || this.$store.getters.xt_user.template_info.org_id == 10612 || this.$store.getters.xt_user.template_info.org_id == 10598 || this.$store.getters.xt_user.template_info.org_id == 10677 || this.$store.getters.xt_user.template_info.org_id == 10679 || this.$store.getters.xt_user.template_info.org_id == 10702 || this.$store.getters.xt_user.template_info.org_id == 10635">
- <label>处方脱水量 : </label>
- <span class="content">{{ prescription_water != "0" ? prescription_water : "" }}</span>
- <span class="unit">{{ prescription_water != "0" ? "L" : "" }}</span>
- </li>
-
-
- <li v-if="isShow('钾')">
- <label>钾 : </label>
- <span class="content">{{ kalium != "0" ? kalium : "" }}</span>
- <span class="unit">{{ kalium != "0" ? "mmol/L" : "" }}</span>
- </li>
-
- <li v-if="isShow('血流量')">
- <label>血流量 : </label>
- <span class="content">{{
- blood_flow_volume != "0" ? blood_flow_volume : ""
- }}</span>
- <span class="unit">{{
- blood_flow_volume != "0" ? "ml/min" : ""
- }}</span>
- </li>
-
- <li v-if=" isShow('首剂') && getValueStr('anticoagulant', 'anticoagulant') != 5 " >
- <label>首剂 : </label>
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{ anticoagulant_shouji != "0" ? anticoagulant_shouji : "" }}</span>
- <span v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45">
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" ></span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && this.$store.getters.xt_user.template_info.template_id != 13 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 40 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.template_id != 65 && this.$store.getters.xt_user.template_info.template_id!=0 && this.$store.getters.xt_user.template_info.org_id != 10600">{{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && (this.$store.getters.xt_user.template_info.template_id == 13 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 40 || this.$store.getters.xt_user.template_info.template_id == 38 || this.$store.getters.xt_user.template_info.template_id == 65 || this.$store.getters.xt_user.template_info.template_id == 0 || this.$store.getters.xt_user.template_info.org_id == 10600)" >{{ anticoagulant_shouji != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
- {{ anticoagulant_shouji != "0" ? "mg" : "" }}
- </span>
- <span v-else> {{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" >{{ anticoagulant_shouji != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4" >{{ anticoagulant_shouji != "0" ? "mg" : "" }}</span >
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5" >{{ anticoagulant_shouji != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6" >
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
- {{ anticoagulant_shouji != "0" ? "mg" : "" }}
- </span>
- <span v-else> {{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
- </span >
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7" >
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
- {{ anticoagulant_shouji != "0" ? "mg" : "" }}
- </span>
- <span v-else> {{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8" >{{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9" >{{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
- </span>
- <span v-else>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">{{ anticoagulant_shouji != "0" ? "mg" : "" }}</span>
- <span class="unit" v-else>{{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
- </span>
- </li>
-
- <li v-if="isShow('钙')">
- <label>钙: </label>
- <span class="content">{{ calcium != "0" ? calcium : "" }}</span>
- <span class="unit">{{ calcium != "0" ? "mmol/L" : "" }}</span>
- </li>
-
- <li v-if="isShow('体液过多症状')">
- <label>体液过多症状 : </label>
- <span class="content">{{ body_fluid }}</span>
- <span class="unit"></span>
- </li>
-
- <li v-if="isShow('透析前使用其他特殊药物')">
- <label>透析前使用其他特殊药物: </label>
- <span class="content">{{ special_medicine_other }}</span>
- <span class="unit"></span>
- </li>
-
- <li
- v-if="
- isShow('钙名称') &&
- getValueStr('anticoagulant', 'anticoagulant') == 5
- "
- >
- <label>钙名称: </label>
- <span class="content">{{
- getValueStr(
- "anticoagulant_gaimingcheng",
- "anticoagulant_gaimingcheng"
- )
- }}</span>
- </li>
-
- <!-- <li v-if="isShow('血流量')">-->
- <!-- <label>血流量 : </label>-->
- <!-- <span class="content">{{-->
- <!-- blood_flow_volume != "0" ? blood_flow_volume : ""-->
- <!-- }}</span>-->
- <!-- <span class="unit">{{-->
- <!-- blood_flow_volume != "0" ? "ml/min" : ""-->
- <!-- }}</span>-->
- <!-- </li>-->
- </ul>
-
- <ul>
- <li v-if="isShow('钠')">
- <label>钠 : </label>
- <span class="content">{{ sodium != "0" ? sodium : "" }}</span>
- <span class="unit">{{ sodium != "0" ? "mmol/L" : "" }}</span>
- </li>
-
- <li v-if="isShow('透析时长')">
- <label>透析时长 : </label>
- <span class="content">{{
- dialysis_duration != "0" ? dialysis_duration : ""
- }}</span>
- </li>
-
- <li v-if="isShow('碳酸氢盐')">
- <label>碳酸氢盐 : </label>
- <span class="content">{{
- bicarbonate != "0" ? bicarbonate : ""
- }}</span>
- <span class="unit">{{ bicarbonate != "0" ? "mmol/L" : "" }}</span>
- </li>
-
- <li v-if="isShow('透析液流量')">
- <label>透析液流量 : </label>
- <span class="content">{{
- dialysate_flow != "0" ? dialysate_flow : ""
- }}</span>
- <span class="unit">{{ dialysate_flow != "0" ? "ml/min" : "" }}</span>
- </li>
-
- <li v-if="isShow('透析液')">
- <label>透析液 : </label>
- <span class="content">{{
- dialyzate != "0" ? dialyzate : ""
- }}</span>
- <span class="unit">{{ dialyzate != "0" ? "ml/min" : "" }}</span>
- </li>
-
- <li v-if="isShow('维持') && getValueStr('anticoagulant', 'anticoagulant') != 5">
- <label>维持 : </label>
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{ anticoagulant_weichi != "0" ? anticoagulant_weichi : "" }}</span>
- <span v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45">
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1"></span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && this.$store.getters.xt_user.template_info.template_id != 13 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 40 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.template_id != 65 && this.$store.getters.xt_user.template_info.org_id!=10600 ">{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && (this.$store.getters.xt_user.template_info.template_id == 13 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 40 || this.$store.getters.xt_user.template_info.template_id == 38 || this.$store.getters.xt_user.template_info.template_id == 65 || this.$store.getters.xt_user.template_info.org_id == 10600)">{{ anticoagulant_weichi != "0" ? "mg/h" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
- <span v-if="this.$store.getters.xt_user.template_info.org_id ==9671">
- {{ anticoagulant_weichi != "0" ? "mg/h" : "" }}
- </span>
- <span v-else>{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1">{{ anticoagulant_weichi != "0" ? "mg/h" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4">{{ anticoagulant_weichi != "0" ? "mg/h" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5">{{ anticoagulant_weichi != "0" ? "ml/h" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6">
- <span v-if="this.$store.getters.xt_user.template_info.org_id ==9671">
- {{ anticoagulant_weichi != "0" ? "mg/h" : "" }}
- </span>
- <span v-else>{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7">
- <span v-if="this.$store.getters.xt_user.template_info.org_id ==9671">
- {{ anticoagulant_weichi != "0" ? "mg/h" : "" }}
- </span>
- <span v-else>{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8">{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9">{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
- </span>
- <span v-else>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">{{ anticoagulant_weichi != "0" ? "mg/h" : "" }}</span>
- <span class="unit" v-else>{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
- </span>
- </li>
-
- <li v-if="isShow('维持时长')">
- <label>维持时长: </label>
- <span class="content">{{this.prescription.anticoagulant_weichi_hour?this.prescription.anticoagulant_weichi_hour:"0"}}</span>
- </li>
-
- <li
- v-if="
- isShow('钙剂量') &&
- getValueStr('anticoagulant', 'anticoagulant') == 5
- "
- >
- <label>钙剂量: </label>
- <span class="content">{{
- getValueStr("anticoagulant_gaijiliang", "anticoagulant_gaijiliang")
- }}</span>
- <span
- class="unit"
- v-if="getValueStr('anticoagulant', 'anticoagulant') == 5"
- >{{ "ml" }}</span
- >
- </li>
-
- <li v-if="isShow('实际超滤量')">
- <label>实际超滤量: </label>
- <span class="content">{{
- ultrafiltration != "0" ? ultrafiltration : ""
- }}</span>
- <span class="unit">{{ ultrafiltration != "0" ? "L" : "" }}</span>
- </li>
-
- <li v-if="isShow('电导度')">
- <label>电导度 : </label>
- <span class="content">{{
- conductivity != "0" ? conductivity : ""
- }}</span>
- <span class="unit">{{ conductivity != "0" ? "mS/m" : "" }}</span>
- </li>
-
- <li v-if="isShow('置换液') && dialysis_mode == 'HDF'">
- <label
- v-if="this.$store.getters.xt_user.template_info.template_id != 6"
- >置换液:
- </label>
- <label
- v-if="this.$store.getters.xt_user.template_info.template_id == 6"
- >置换方式:
- </label>
-
- <span class="content">{{
- displace_liqui != "0" ? displace_liqui : ""
- }}</span>
- <span v-if="this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 29" class="unit">{{ displace_liqui != "0" ? "L" : "" }}</span>
- <span v-if="this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 29" class="unit">{{ displace_liqui != "0" ? "ml" : "" }}</span>
- </li>
-
- <li v-if="isShow('血管通路部位')">
- <label>血管通路部位: </label>
- <span class="content">{{ this.prescription.blood_access_part_id }}</span>
- <span class="unit"></span>
- </li>
-
- <li v-if="isShow('血管通路')">
- <label>血管通路: </label>
- <span class="content">{{ blood_access }}</span>
- <span class="unit"></span>
- </li>
-
- <li v-if="isShow('目标KT/V')">
- <label>目标KT/V: </label>
- <span class="content">{{ target_ktv != "0" ? target_ktv : "" }}</span>
- </li>
-
- <li v-if="isShow('目标KT/V')">
- <label>目标KT/V: </label>
- <span class="content">{{ target_ktv != "0" ? target_ktv : "" }}</span>
- </li>
-
-
- <li v-if="isShow('抗凝提前停止')">
- <label>抗凝提前停止 : </label>
- <span class="content" v-if="this.prescription.anticoagulant_stop_time_hour > 0 && this.prescription.anticoagulant_stop_time_min > 0 ">{{this.prescription.anticoagulant_stop_time_hour }}小时{{this.prescription.anticoagulant_stop_time_min }}分钟</span>
- <span class="content" v-if="this.prescription.anticoagulant_stop_time_hour > 0 && this.prescription.anticoagulant_stop_time_min == 0 ">{{this.prescription.anticoagulant_stop_time_hour }}小时</span>
- <span class="content" v-if="this.prescription.anticoagulant_stop_time_hour == 0 && this.prescription.anticoagulant_stop_time_min > 0 ">{{this.prescription.anticoagulant_stop_time_min }}分钟</span>
- <span class="content" v-if="this.prescription.anticoagulant_stop_time_hour == 0 && this.prescription.anticoagulant_stop_time_min == 0 "></span>
- <span class="unit"></span>
- </li>
-
- <li v-if="isShow('病情')">
- <label>病情: </label>
- <span class="content">{{getIllness(this.prescription.illness)}}</span>
- </li>
-
- <li v-if="isShow('葡萄糖')">
- <label>葡萄糖: </label>
- <span class="content">{{this.prescription.amylaceum?this.prescription.amylaceum:0}}</span>
- </li>
-
- <li v-if="isShow('单超时长')">
- <label>单超时长(min): </label>
- <span class="content">{{this.prescription.single_time}}</span>
- </li>
-
- <li v-if="isShow('单超脱水')">
- <label>单超脱水(ml): </label>
- <span class="content">{{this.prescription.single_water}}</span>
- </li>
-
-
- <li v-if="isShow('置换流量') && this.$store.getters.xt_user.template_info.org_id!=10340">
- <label>置换流量(L/h): </label>
- <span class="content">{{this.prescription.replacement_flow}}</span>
- </li>
-
- <li v-if="isShow('置换流量') && this.$store.getters.xt_user.template_info.org_id==10340">
- <label>置换流量(ml/min): </label>
- <span class="content">{{this.prescription.replacement_flow}}</span>
- </li>
-
- <li v-if="isShow('血浆分离器')">
- <label>血浆分离器: </label>
- <span class="content">{{this.prescription.plasma_separator}}</span>
- </li>
-
- <li v-if="isShow('胆红素吸附柱')">
- <label>胆红素吸附柱: </label>
- <span class="content">{{this.prescription.bilirubin_adsorption_column}}</span>
- </li>
-
- <li v-if="isShow('吸氧')">
- <label>吸氧:</label>
- <span class="content">
- <span v-if="this.prescription.oxygen_uptake == 1">需</span>
- <span v-if="this.prescription.oxygen_uptake == 2">无</span>
- </span>
- </li>
-
- <li v-if="isShow('吸氧')">
- <label>吸氧流量(L/分):</label>
- <span class="content">
- <span>{{this.prescription.oxygen_flow}}</span>
- </span>
- </li>
-
- <li v-if="isShow('吸氧')">
- <label>吸氧时长(h):</label>
- <span class="content">
- <span>{{this.prescription.oxygen_time}}</span>
- </span>
- </li>
-
- <li v-if="isShow('最大超滤率')">
- <label>最大超滤率(ml/h):</label>
- <span class="content">
- <span>{{this.prescription.max_ultrafiltration_rate}}</span>
- </span>
- </li>
-
-
- <li v-if="isShow('曲线脱水')">
- <label>曲线脱水(ml): </label>
- <span class="content">{{this.prescription.drhy_water}}</span>
- </li>
-
- <li v-if="isShow('带水上机')">
- <label>带水上机: </label>
- <span class="content">{{this.prescription.water_machine}}</span>
- </li>
-
- <li v-if=" isShow('追加肝素量')" >
- <label>追加肝素量 : </label>
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{ add_amount != "0" ? add_amount : "" }}</span>
- <span v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45">
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" ></span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && this.$store.getters.xt_user.template_info.template_id != 13 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 40 && this.$store.getters.xt_user.template_info.template_id != 38 ">{{ add_amount != "0" ? "iu" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && (this.$store.getters.xt_user.template_info.template_id == 13 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 40 || this.$store.getters.xt_user.template_info.template_id == 38)" >{{ add_amount != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
- {{ add_amount != "0" ? "mg" : "" }}
- </span>
- <span v-else> {{ add_amount != "0" ? "iu" : "" }}</span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" >{{ add_amount != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4" >{{ add_amount != "0" ? "mg" : "" }}</span >
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5" >{{ add_amount != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6" >
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
- {{ add_amount != "0" ? "mg" : "" }}
- </span>
- <span v-else> {{ add_amount != "0" ? "iu" : "" }}</span>
- </span >
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7" >
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
- {{ add_amount != "0" ? "mg" : "" }}
- </span>
- <span v-else> {{ add_amount != "0" ? "iu" : "" }}</span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8" >{{ add_amount != "0" ? "iu" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9" >{{ add_amount != "0" ? "iu" : "" }}</span>
- </span>
- <span v-else>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">{{ add_amount != "0" ? "mg" : "" }}</span>
- <span class="unit" v-else>{{ add_amount != "0" ? "iu" : "" }}</span>
- </span>
- </li>
-
- <li v-if=" isShow('减肝素量')" >
- <label>减肝素量 : </label>
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{ reduce_amount != "0" ? reduce_amount : "" }}</span>
- <span v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45">
- <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" ></span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && this.$store.getters.xt_user.template_info.template_id != 13 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 40 && this.$store.getters.xt_user.template_info.template_id != 38 ">{{ reduce_amount != "0" ? "iu" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2 && (this.$store.getters.xt_user.template_info.template_id == 13 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 40 || this.$store.getters.xt_user.template_info.template_id == 38)" >{{ reduce_amount != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
- {{ reduce_amount != "0" ? "mg" : "" }}
- </span>
- <span v-else> {{ reduce_amount != "0" ? "iu" : "" }}</span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" >{{ reduce_amount != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4" >{{ reduce_amount != "0" ? "mg" : "" }}</span >
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5" >{{ reduce_amount != "0" ? "mg" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6" >
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
- {{ reduce_amount != "0" ? "mg" : "" }}
- </span>
- <span v-else> {{ reduce_amount != "0" ? "iu" : "" }}</span>
- </span >
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7" >
- <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
- {{ reduce_amount != "0" ? "mg" : "" }}
- </span>
- <span v-else> {{ reduce_amount != "0" ? "iu" : "" }}</span>
- </span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8" >{{ reduce_amount != "0" ? "iu" : "" }}</span>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9" >{{ reduce_amount != "0" ? "iu" : "" }}</span>
- </span>
- <span v-else>
- <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">{{ reduce_amount != "0" ? "mg" : "" }}</span>
- <span class="unit" v-else>{{ reduce_amount != "0" ? "iu" : "" }}</span>
- </span>
- </li>
-
- <li v-if="isShow('开药数量')">
- <label>开药数量(支): </label>
- <span class="content">{{this.prescription.prescribing_number}}</span>
- </li>
-
- <li v-if="isShow('处方钠')">
- <label>处方钠: </label>
- <span class="content">{{this.prescription.prescription_sodium}}</span>
- </li>
-
- <li v-if="isShow('开始钠')">
- <label>开始钠: </label>
- <span class="content">{{this.prescription.start_sodium}}</span>
- </li>
-
- <li v-if="isShow('钠曲线')">
- <label>钠曲线: </label>
- <span class="content">{{this.prescription.sodium_curve}}</span>
- </li>
-
- <li v-if="isShow('开始钠')">
- <label>开始钠: </label>
- <span class="content">{{this.prescription.start_sodium}}</span>
- </li>
-
- <li v-if="isShow('透析液流速')">
- <label>透析液流速(ml/h): </label>
- <span class="content">{{this.prescription.dialysis_fluid_flow}}</span>
- </li>
-
- <li v-if="isShow('碳酸氢钠流速')">
- <label>碳酸氢钠流速(ml/h): </label>
- <span class="content">{{this.prescription.sodium_bicarbonate_flow}}</span>
- </li>
-
- <li v-if="isShow('病情处理')">
- <label>病情处理: </label>
- <span class="content">{{this.prescription.treatment_remark}}</span>
- </li>
-
- <li v-if="isShow('加糖')">
- <label>加糖: </label>
- <span class="content">{{this.prescription.chaptalization}}</span>
- </li>
-
- <li v-if="isShow('冲洗时间')">
- <label>q(h): </label>
- <span class="content">{{this.prescription.washing_time}}</span>
- </li>
-
- <li v-if="isShow('冲洗量')">
- <label>Ns冲洗量(ml): </label>
- <span class="content">{{this.prescription.warsh_count}}</span>
- </li>
-
-
- </ul>
- </div>
- <div style="color:#34495e;margin: 12px 100px 0 100px;" v-if="isShow('透析备注')">透析备注: <span style="color:#409eff;">{{this.prescription.dialysis_remark}}</span></div>
- <div style="color:#34495e;margin: 12px 100px 0 100px;">备注: <span style="color:#409eff;">{{ note }}</span></div>
- </div>
- </template>
-
- <script>
- import { getDataConfig } from '@/utils/data'
- import store from '@/store'
-
- export default {
- name: 'DialysisPrescription',
- data() {
- return {
- title: '透析处方',
- perfusion_apparatus_map: {},
- dialysateFormulationMap: {},
- blood_access_part: [],
- blood_access_part_opera: []
- }
- },
- props: {
- prescription: {
- type: Object
- },
- solution: {
- type: Object
- },
- device_number_map: {
- type: Object
- },
- preparestock:{
- type:Array
- }
- },
- computed: {
- note: function () {
- // console.log("世界人民呃232323223232323323223",this.prescription)
- return this.getValueStr('remark', 'remark')
- },
- target_ultrafiltration: function() {
- var v = this.getValueStr(
- 'target_ultrafiltration',
- 'target_ultrafiltration'
- )
- return v.length == 0 ? '0' : v
- },
- dialysis_mode: function() {
- var mode = this.getValueStr('mode_id', 'mode_id')
-
- if (mode.length == 0) {
- return ''
- }
- if (this.$store.getters.treatment_mode[mode] != undefined) {
- return this.$store.getters.treatment_mode[mode].name
- }
- return ''
- },
- perfusion_apparatus: function() {
- var v = this.getValueStr('perfusion_apparatus', 'perfusion_apparatus')
- if (v.length == 0) {
- return ''
- }
- if (this.perfusion_apparatus_map[v] != undefined) {
- return this.perfusion_apparatus_map[v].name
- }
- return ''
- },
- displace_liqui: function() {
- var v = this.getValueStr('displace_liqui', 'displace_liqui')
- return v.length == 0 ? '0' : v
- },
- anticoagulant_shouji: function() {
- var v = this.getValueStr('anticoagulant_shouji', 'anticoagulant_shouji')
- return v.length == 0 ? '0' : v
- },
- kalium: function() {
- var v = this.getValueStr('kalium', 'kalium')
- return v.length == 0 ? '0' : v
- },
- replacement_total: function() {
- var v = this.getValueStr('replacement_total', 'replacement_total')
- return v.length == 0 ? '0' : v
- },
- bicarbonate: function() {
- var v = this.getValueStr('bicarbonate', 'bicarbonate')
- return v.length == 0 ? '0' : v
- },
- dialysate_flow: function() {
- var v = this.getValueStr('dialysate_flow', 'dialysate_flow')
- return v.length == 0 ? '0' : v
- },
- dialysis_duration: function() {
- var dialysis_duration_hour = this.getValueStr(
- 'dialysis_duration_hour',
- 'dialysis_duration_hour'
- )
- var dialysis_duration_minute = this.getValueStr(
- 'dialysis_duration_minute',
- 'dialysis_duration_minute'
- )
- if (
- dialysis_duration_hour.length == 0 &&
- dialysis_duration_minute.length == 0
- ) {
- return '0'
- } else {
- var time =
- dialysis_duration_hour + 'h' + dialysis_duration_minute + 'min'
- return time.length == 0 ? '0' : time
- }
- },
- blood_flow_volume: function() {
- var v = this.getValueStr('blood_flow_volume', 'blood_flow_volume')
- return v.length == 0 ? '0' : v
- },
- dialyzate:function(){
- var v = this.getValueStr('dialyzate', 'dialyzate')
- return v.length == 0 ? '0' : v
- },
- replacement_way: function() {
- return this.getValueStr('replacement_way', 'replacement_way')
- },
- anticoagulant_weichi: function() {
- var v = this.getValueStr('anticoagulant_weichi', 'anticoagulant_weichi')
- return v.length == 0 ? '0' : v
- },
- sodium: function() {
- var v = this.getValueStr('sodium', 'sodium')
- return v.length == 0 ? '0' : v
- },
- glucose: function() {
- var v = this.getValueStr('glucose', 'glucose')
- return v.length == 0 ? '0' : v
- },
- dialysate_temperature: function() {
- var v = this.getValueStr(
- 'dialysate_temperature',
- 'dialysate_temperature'
- )
- return v.length == 0 ? '0' : v
- },
- dialyzer: function() {
- var v = this.getValueStr('dialyzer', 'hemodialysis_machine')
- if (v.length == 0) {
- return ''
- }
- if (this.device_number_map[v] != undefined) {
- return this.device_number_map[v].name
- }
- return ''
- },
- dialysate_formulation: function() {
- var v = this.getValueStr(
- 'dialysate_formulation',
- 'dialysate_formulation'
- )
- if (v.length == 0) {
- return ''
- }
- if (v in this.dialysateFormulationMap) {
- return this.dialysateFormulationMap[v].name
- }
- return ''
- },
- prescription_dewatering: function() {
- var v = this.getValueStr('prescription_dewatering', 'dewater')
- return v.length == 0 ? '0' : v
- },
- anticoagulant: function() {
- var v = this.getValueStr('anticoagulant', 'anticoagulant')
- if (v.length == 0) {
- return ''
- }
- if (this.$store.getters.anticoagulants_confit[v] != undefined) {
- return this.$store.getters.anticoagulants_confit[v].name
- }
- return ''
- },
- anticoagulant_zongliang: function() {
- var v = this.getValueStr(
- 'anticoagulant_zongliang',
- 'anticoagulant_zongliang'
- )
- return v.length == 0 ? '0' : v
- },
- calcium: function() {
- var v = this.getValueStr('calcium', 'calcium')
- return v.length == 0 ? '0' : v
- },
-
- conductivity: function() {
- var v = this.getValueStr('conductivity', 'conductivity')
- return v.length == 0 ? '0' : v
- },
- dialyzer_perfusion_apparatus: function() {
- return this.getValueStr(
- 'dialyzer_perfusion_apparatus',
- 'dialyzer_perfusion_apparatus'
- )
- },
- dialysis_dialyszers:function(){
-
- var str = this.getValueStr('dialysis_dialyszers','dialysis_dialyszers')
- console.log("str",str)
- var arr = str.split(",")
-
- if (arr.length >0) {
- for(let i=0;i<arr.length;i++){
- for(let j=0;j<this.preparestock.length;j++){
- if(arr[i] == this.preparestock[j].specification_name){
- if(this.preparestock[j].commdity_code!=""){
- arr[i] = arr[i]+"("+this.preparestock[j].commdity_code+")"
- }
- }
- }
- }
- }
- console.log("arr00000",arr)
- var strs = arr.join(',')
- console.log("strs",strs)
- return strs
- },
- dialysis_irrigation:function(){
- var str = this.getValueStr('dialysis_irrigation','dialysis_irrigation')
- console.log("str",str)
- var arr = str.split(",")
-
- if (arr.length >0) {
- for(let i=0;i<arr.length;i++){
- for(let j=0;j<this.preparestock.length;j++){
- if(arr[i] == this.preparestock[j].specification_name){
- if(this.preparestock[j].commdity_code!=""){
- arr[i] = arr[i]+"("+this.preparestock[j].commdity_code+")"
- }
- }
- }
- }
- }
- console.log("arr00000",arr)
- var strs = arr.join(',')
- console.log("strs",strs)
- return strs
- // return this.getValueStr('dialysis_irrigation','dialysis_irrigation')
- },
- body_fluid: function() {
- var id = this.getValueStr('body_fluid', 'body_fluid')
- if (id == 0) {
- return ''
- }
- var bodyFluidOptions = this.$store.getters.body_fluid
- for (let i = 0; i < bodyFluidOptions.length; i++) {
- if (bodyFluidOptions[i].id == id) {
- return bodyFluidOptions[i].name
- }
- }
- },
- special_medicine: function() {
- var id = this.getValueStr('special_medicine', 'special_medicine')
- if (id == 0) {
- return ''
- }
- var special_medicine = this.$store.getters.special_medicine
- for (let i = 0; i < special_medicine.length; i++) {
- if (special_medicine[i].id == id) {
- return special_medicine[i].name
- }
- }
- },
- special_medicine_other: function() {
- return this.getValueStr(
- 'special_medicine_other',
- 'special_medicine_other'
- )
- },
- blood_access: function() {
- var id = this.getValueStr('blood_access', 'blood_access')
- console.log('id', id)
- if (id == 0) {
- return ''
- }
- // var blood_access = this.$store.getters.blood_access_internal_fistula;
- var blood_access = getDataConfig('hemodialysis', 'vascular_access_desc')
- for (let i = 0; i < blood_access.length; i++) {
- if (blood_access[i].id == id) {
- return blood_access[i].name
- }
- }
- },
- displace_liqui: function() {
- var id = this.getValueStr('displace_liqui_part', 'displace_liqui_part')
- var displace_liqui_value = this.getValueStr(
- 'displace_liqui_value',
- 'displace_liqui_value'
- )
- var displace_liqui_part = ''
- var displace_liqui = this.$store.getters.displace_liqui
- for (let i = 0; i < displace_liqui.length; i++) {
- if (displace_liqui[i].id == id) {
- displace_liqui_part = displace_liqui[i].name
- }
- }
- return displace_liqui_part + displace_liqui_value
- },
- ultrafiltration: function() {
- var v = this.getValueStr('ultrafiltration', 'ultrafiltration')
- return v.length == 0 ? '0' : v
- },
- body_fluid_other: function() {
- return this.getValueStr('body_fluid_other', 'body_fluid_others')
- },
- target_ktv: function() {
- var v = this.getValueStr('target_ktv', 'target_ktv')
- return v.length == 0 ? '0' : v
- },
- antioxidant_commodity_name:function(){
- return this.getValueStr('antioxidant_commodity_name','antioxidant_commodity_name')
- },
- displace_speed:function(){
- return this.getValueStr('displace_speed','displace_speed')
- },
- add_amount:function(){
- return this.getValueStr('add_amount','add_amount')
- },
- reduce_amount:function(){
- return this.getValueStr('reduce_amount','reduce_amount')
- },
- prescription_water:function(){
- return this.getValueStr('prescription_water','prescription_water')
- },
- dialysis_strainer:function(){
- return this.getValueStr('dialysis_strainer','dialysis_strainer')
- }
-
- },
- created() {
- console.log("template_id", this.$store.getters.xt_user.template_info.template_id)
- var perfusion_apparatus = this.$store.getters.perfusion_apparatus
- var map = {}
- for (let index = 0; index < perfusion_apparatus.length; index++) {
- const p = perfusion_apparatus[index]
- map[p.id] = p
- }
- this.perfusion_apparatus_map = map
-
- var dialysateFormulationOptions = getDataConfig(
- 'hemodialysis',
- 'dialysate_formulation'
- )
-
- for (var index in dialysateFormulationOptions) {
- this.dialysateFormulationMap[dialysateFormulationOptions[index].id] =
- dialysateFormulationOptions[index]
- }
- },
- methods: {
- getValueStr(pkey, skey) {
-
- if (
- (this.prescription == null || this.prescription.id == '') &&
- (this.solution == null || this.solution.id == '')
- ) {
- return ''
- } else if (this.prescription != null && this.prescription.id != '') {
-
- if (this.prescription[pkey] == null || this.prescription[pkey] == undefined) {
- return ''
- }
- return this.prescription[pkey] + ''
- } else {
- if (this.solution[skey] == null || this.solution[skey] == undefined) {
- return ''
- }
-
- return this.solution[skey] + ''
- }
- },
- isShow(name) {
- var filedList = store.getters.xt_user.fileds
- for (let i = 0; i < filedList.length; i++) {
- if (
- filedList[i].module == 1 &&
- filedList[i].filed_name_cn == name &&
- filedList[i].is_show == 1
- ) {
- return true
- }
- }
- return false
- },
- getIllness(id){
- var illnessList = getDataConfig('hemodialysis','illness')
- var name = ""
- for(let i=0;i<illnessList.length;i++){
- if(id == illnessList[i].id){
- name = illnessList[i].name
- }
- }
- return name
- }
- }
-
- }
- </script>
-
- <style rel="stylesheet/scss" lang="scss" scoped></style>
|