DialysisPrescription.vue 54KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066
  1. <template>
  2. <div class="plate-box">
  3. <h2 class="DetailsTit">
  4. <span>{{ title }}</span>
  5. </h2>
  6. <div class="plate">
  7. <ul>
  8. <li v-if="isShow('透析模式')">
  9. <label>透析模式 : </label>
  10. <span class="content">{{ dialysis_mode }} </span>
  11. </li>
  12. <li v-if="isShow('置换量') && (dialysis_mode == 'HDF' || dialysis_mode == 'HF' || dialysis_mode =='HDF+HP')">
  13. <label>置换量 : </label>
  14. <span class="content">{{
  15. replacement_total != "0" ? replacement_total : ""
  16. }}</span>
  17. <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>
  18. <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>
  19. </li>
  20. <li v-if="isShow('置换速度')&& this.$store.getters.xt_user.template_info.org_id!=10375">
  21. <label>置换速度 : </label>
  22. <span class="content">{{displace_speed }}</span>
  23. <span class="unit">
  24. <span v-if="this.$store.getters.xt_user.template_info.org_id!=10414">L/h</span>
  25. <span v-if="this.$store.getters.xt_user.template_info.org_id==10414">ml/min</span>
  26. </span>
  27. </li>
  28. <li v-if="isShow('置换速度') && this.$store.getters.xt_user.template_info.org_id == 10375">
  29. <label>置换速度 : </label>
  30. <span class="content">{{displace_speed }}</span>
  31. <span class="unit">L/h</span>
  32. </li>
  33. <li v-if="isShow('透析液配方')">
  34. <label>透析液配方 : </label>
  35. <span class="content">{{ dialysate_formulation }}</span>
  36. </li>
  37. <li v-if="isShow('透析液温度')">
  38. <label>透析液温度 : </label>
  39. <span class="content">{{
  40. dialysate_temperature != "0" ? dialysate_temperature : ""
  41. }}</span>
  42. <span class="unit">{{
  43. dialysate_temperature != "0" ? "℃" : ""
  44. }}</span>
  45. </li>
  46. <li v-if="isShow('抗凝剂')">
  47. <label>抗凝剂 : </label>
  48. <span class="content">{{ anticoagulant }}</span>
  49. </li>
  50. <li v-if="isShow('抗凝剂商品名称') && this.$store.getters.xt_user.template_info.template_id != 24">
  51. <label>抗凝剂商品名称 : </label>
  52. <span class="content">{{ antioxidant_commodity_name }}</span>
  53. </li>
  54. <li v-if=" isShow('总量') && getValueStr('anticoagulant', 'anticoagulant') != 5 " >
  55. <label>总量: </label>
  56. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{anticoagulant_zongliang != "0" ? anticoagulant_zongliang : ""}}</span>
  57. <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">
  58. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" ></span>
  59. <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>
  60. <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>
  61. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3" >
  62. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671 || this.$store.getters.xt_user.template_info.org_id == 9675">
  63. {{ anticoagulant_zongliang != "0" ? "mg" : "" }}
  64. </span>
  65. <span v-else>
  66. {{ anticoagulant_zongliang != "0" ? "iu" : "" }}
  67. </span>
  68. </span>
  69. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1">{{ anticoagulant_zongliang != "0" ? "mg" : "" }}</span>
  70. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
  71. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671 || this.$store.getters.xt_user.template_info.org_id == 9675">
  72. {{ anticoagulant_zongliang != "0" ? "mg" : "" }}
  73. </span>
  74. <span v-else>
  75. {{ anticoagulant_zongliang != "0" ? "iu" : "" }}
  76. </span>
  77. </span>
  78. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4">{{ anticoagulant_zongliang != "0" ? "mg" : "" }}</span>
  79. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5">{{ anticoagulant_zongliang != "0" ? "ml" : "" }}</span>
  80. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6">
  81. <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">
  82. {{ anticoagulant_zongliang != "0" ? "mg" : "" }}
  83. </span>
  84. <span v-else>
  85. {{ anticoagulant_zongliang != "0" ? "iu" : "" }}
  86. </span>
  87. </span>
  88. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7">
  89. <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">
  90. {{ anticoagulant_zongliang != "0" ? "mg" : "" }}
  91. </span>
  92. <span v-else>
  93. {{ anticoagulant_zongliang != "0" ? "iu" : "" }}
  94. </span>
  95. </span>
  96. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8">{{ anticoagulant_zongliang != "0" ? "iu" : "" }}</span>
  97. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9">{{ anticoagulant_zongliang != "0" ? "iu" : "" }}</span>
  98. </span>
  99. <span v-else>
  100. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">
  101. {{ anticoagulant_zongliang != "0" ? "mg" : "" }}</span>
  102. <span class="unit" v-else>{{ anticoagulant_zongliang != "0" ? "iu" : "" }}</span>
  103. </span>
  104. </li>
  105. <li v-if="isShow('透析器/灌流器')">
  106. <label>透析器/灌流器 : </label>
  107. <span class="content">{{ dialyzer_perfusion_apparatus }}</span>
  108. <span class="unit"></span>
  109. </li>
  110. <li v-if="isShow('透析器')">
  111. <label>透析器 : </label>
  112. <span class="content">{{ dialysis_dialyszers }}</span>
  113. <span class="unit"></span>
  114. </li>
  115. <li v-if="isShow('灌流器')">
  116. <label>灌流器 : </label>
  117. <span class="content">{{ dialysis_irrigation }}</span>
  118. <span class="unit"></span>
  119. </li>
  120. <li v-if="isShow('滤过器')">
  121. <label>滤过器 : </label>
  122. <span class="content">{{ dialysis_strainer }}</span>
  123. <span class="unit"></span>
  124. </li>
  125. <li v-if="isShow('透析前使用特殊药物')">
  126. <label>透析前使用特殊药物: </label>
  127. <span class="content">{{ special_medicine }}</span>
  128. <span class="unit"></span>
  129. </li>
  130. <li v-if="isShow('体液过多其他症状')">
  131. <label>体液过多其他症状 : </label>
  132. <span class="content">{{ body_fluid_other }}</span>
  133. <span class="unit"></span>
  134. </li>
  135. </ul>
  136. <ul>
  137. <li v-if="isShow('目标超滤量') && this.$store.getters.xt_user.template_info.org_id != 10290">
  138. <label>目标超滤量 : </label>
  139. <span class="content">{{ target_ultrafiltration != "0" ? target_ultrafiltration : ""}}</span>
  140. <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>
  141. <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>
  142. </li>
  143. <li v-if="isShow('目标超滤量') && this.$store.getters.xt_user.template_info.org_id == 10290">
  144. <label>目标超滤量 : </label>
  145. <span class="content">{{ target_ultrafiltration != "0" ? target_ultrafiltration : ""}}</span>
  146. <span class="unit">{{ target_ultrafiltration != "0" ? "L" : "" }}</span>
  147. </li>
  148. <!-- <li v-if="isShow('葡萄糖')">
  149. <label>葡萄糖 : </label>
  150. <span class="content">{{ glucose != "0" ? glucose : "" }}</span>
  151. <span class="unit">{{ glucose != "0" ? "mmol/l" : "" }}</span>
  152. </li> -->
  153. <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">
  154. <label>处方脱水量 : </label>
  155. <span class="content">{{ prescription_water != "0" ? prescription_water : "" }}</span>
  156. <span class="unit">{{ prescription_water != "0" ? "ml" : "" }}</span>
  157. </li>
  158. <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">
  159. <label>处方脱水量 : </label>
  160. <span class="content">{{ prescription_water != "0" ? prescription_water : "" }}</span>
  161. <span class="unit">{{ prescription_water != "0" ? "L" : "" }}</span>
  162. </li>
  163. <li v-if="isShow('钾')">
  164. <label>钾 : </label>
  165. <span class="content">{{ kalium != "0" ? kalium : "" }}</span>
  166. <span class="unit">{{ kalium != "0" ? "mmol/L" : "" }}</span>
  167. </li>
  168. <li v-if="isShow('血流量')">
  169. <label>血流量 : </label>
  170. <span class="content">{{
  171. blood_flow_volume != "0" ? blood_flow_volume : ""
  172. }}</span>
  173. <span class="unit">{{
  174. blood_flow_volume != "0" ? "ml/min" : ""
  175. }}</span>
  176. </li>
  177. <li v-if=" isShow('首剂') && getValueStr('anticoagulant', 'anticoagulant') != 5 " >
  178. <label>首剂 : </label>
  179. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{ anticoagulant_shouji != "0" ? anticoagulant_shouji : "" }}</span>
  180. <span v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45">
  181. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" ></span>
  182. <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>
  183. <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>
  184. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
  185. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
  186. {{ anticoagulant_shouji != "0" ? "mg" : "" }}
  187. </span>
  188. <span v-else> {{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
  189. </span>
  190. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" >{{ anticoagulant_shouji != "0" ? "mg" : "" }}</span>
  191. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4" >{{ anticoagulant_shouji != "0" ? "mg" : "" }}</span >
  192. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5" >{{ anticoagulant_shouji != "0" ? "mg" : "" }}</span>
  193. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6" >
  194. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
  195. {{ anticoagulant_shouji != "0" ? "mg" : "" }}
  196. </span>
  197. <span v-else> {{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
  198. </span >
  199. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7" >
  200. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
  201. {{ anticoagulant_shouji != "0" ? "mg" : "" }}
  202. </span>
  203. <span v-else> {{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
  204. </span>
  205. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8" >{{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
  206. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9" >{{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
  207. </span>
  208. <span v-else>
  209. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">{{ anticoagulant_shouji != "0" ? "mg" : "" }}</span>
  210. <span class="unit" v-else>{{ anticoagulant_shouji != "0" ? "iu" : "" }}</span>
  211. </span>
  212. </li>
  213. <li v-if="isShow('钙')">
  214. <label>钙: </label>
  215. <span class="content">{{ calcium != "0" ? calcium : "" }}</span>
  216. <span class="unit">{{ calcium != "0" ? "mmol/L" : "" }}</span>
  217. </li>
  218. <li v-if="isShow('体液过多症状')">
  219. <label>体液过多症状 : </label>
  220. <span class="content">{{ body_fluid }}</span>
  221. <span class="unit"></span>
  222. </li>
  223. <li v-if="isShow('透析前使用其他特殊药物')">
  224. <label>透析前使用其他特殊药物: </label>
  225. <span class="content">{{ special_medicine_other }}</span>
  226. <span class="unit"></span>
  227. </li>
  228. <li
  229. v-if="
  230. isShow('钙名称') &&
  231. getValueStr('anticoagulant', 'anticoagulant') == 5
  232. "
  233. >
  234. <label>钙名称: </label>
  235. <span class="content">{{
  236. getValueStr(
  237. "anticoagulant_gaimingcheng",
  238. "anticoagulant_gaimingcheng"
  239. )
  240. }}</span>
  241. </li>
  242. <!-- <li v-if="isShow('血流量')">-->
  243. <!-- <label>血流量 : </label>-->
  244. <!-- <span class="content">{{-->
  245. <!-- blood_flow_volume != "0" ? blood_flow_volume : ""-->
  246. <!-- }}</span>-->
  247. <!-- <span class="unit">{{-->
  248. <!-- blood_flow_volume != "0" ? "ml/min" : ""-->
  249. <!-- }}</span>-->
  250. <!-- </li>-->
  251. </ul>
  252. <ul>
  253. <li v-if="isShow('钠')">
  254. <label>钠 : </label>
  255. <span class="content">{{ sodium != "0" ? sodium : "" }}</span>
  256. <span class="unit">{{ sodium != "0" ? "mmol/L" : "" }}</span>
  257. </li>
  258. <li v-if="isShow('透析时长')">
  259. <label>透析时长 : </label>
  260. <span class="content">{{
  261. dialysis_duration != "0" ? dialysis_duration : ""
  262. }}</span>
  263. </li>
  264. <li v-if="isShow('碳酸氢盐')">
  265. <label>碳酸氢盐 : </label>
  266. <span class="content">{{
  267. bicarbonate != "0" ? bicarbonate : ""
  268. }}</span>
  269. <span class="unit">{{ bicarbonate != "0" ? "mmol/L" : "" }}</span>
  270. </li>
  271. <li v-if="isShow('透析液流量')">
  272. <label>透析液流量 : </label>
  273. <span class="content">{{
  274. dialysate_flow != "0" ? dialysate_flow : ""
  275. }}</span>
  276. <span class="unit">{{ dialysate_flow != "0" ? "ml/min" : "" }}</span>
  277. </li>
  278. <li v-if="isShow('透析液')">
  279. <label>透析液 : </label>
  280. <span class="content">{{
  281. dialyzate != "0" ? dialyzate : ""
  282. }}</span>
  283. <span class="unit">{{ dialyzate != "0" ? "ml/min" : "" }}</span>
  284. </li>
  285. <li v-if="isShow('维持') && getValueStr('anticoagulant', 'anticoagulant') != 5">
  286. <label>维持 : </label>
  287. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{ anticoagulant_weichi != "0" ? anticoagulant_weichi : "" }}</span>
  288. <span v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45">
  289. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1"></span>
  290. <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>
  291. <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>
  292. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
  293. <span v-if="this.$store.getters.xt_user.template_info.org_id ==9671">
  294. {{ anticoagulant_weichi != "0" ? "mg/h" : "" }}
  295. </span>
  296. <span v-else>{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
  297. </span>
  298. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1">{{ anticoagulant_weichi != "0" ? "mg/h" : "" }}</span>
  299. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4">{{ anticoagulant_weichi != "0" ? "mg/h" : "" }}</span>
  300. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5">{{ anticoagulant_weichi != "0" ? "ml/h" : "" }}</span>
  301. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6">
  302. <span v-if="this.$store.getters.xt_user.template_info.org_id ==9671">
  303. {{ anticoagulant_weichi != "0" ? "mg/h" : "" }}
  304. </span>
  305. <span v-else>{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
  306. </span>
  307. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7">
  308. <span v-if="this.$store.getters.xt_user.template_info.org_id ==9671">
  309. {{ anticoagulant_weichi != "0" ? "mg/h" : "" }}
  310. </span>
  311. <span v-else>{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
  312. </span>
  313. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8">{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
  314. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9">{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
  315. </span>
  316. <span v-else>
  317. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">{{ anticoagulant_weichi != "0" ? "mg/h" : "" }}</span>
  318. <span class="unit" v-else>{{ anticoagulant_weichi != "0" ? "iu/h" : "" }}</span>
  319. </span>
  320. </li>
  321. <li v-if="isShow('维持时长')">
  322. <label>维持时长: </label>
  323. <span class="content">{{this.prescription.anticoagulant_weichi_hour?this.prescription.anticoagulant_weichi_hour:"0"}}</span>
  324. </li>
  325. <li
  326. v-if="
  327. isShow('钙剂量') &&
  328. getValueStr('anticoagulant', 'anticoagulant') == 5
  329. "
  330. >
  331. <label>钙剂量: </label>
  332. <span class="content">{{
  333. getValueStr("anticoagulant_gaijiliang", "anticoagulant_gaijiliang")
  334. }}</span>
  335. <span
  336. class="unit"
  337. v-if="getValueStr('anticoagulant', 'anticoagulant') == 5"
  338. >{{ "ml" }}</span
  339. >
  340. </li>
  341. <li v-if="isShow('实际超滤量')">
  342. <label>实际超滤量: </label>
  343. <span class="content">{{
  344. ultrafiltration != "0" ? ultrafiltration : ""
  345. }}</span>
  346. <span class="unit">{{ ultrafiltration != "0" ? "L" : "" }}</span>
  347. </li>
  348. <li v-if="isShow('电导度')">
  349. <label>电导度 : </label>
  350. <span class="content">{{
  351. conductivity != "0" ? conductivity : ""
  352. }}</span>
  353. <span class="unit">{{ conductivity != "0" ? "mS/m" : "" }}</span>
  354. </li>
  355. <li v-if="isShow('置换液') && dialysis_mode == 'HDF'">
  356. <label
  357. v-if="this.$store.getters.xt_user.template_info.template_id != 6"
  358. >置换液:
  359. </label>
  360. <label
  361. v-if="this.$store.getters.xt_user.template_info.template_id == 6"
  362. >置换方式:
  363. </label>
  364. <span class="content">{{
  365. displace_liqui != "0" ? displace_liqui : ""
  366. }}</span>
  367. <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>
  368. <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>
  369. </li>
  370. <li v-if="isShow('血管通路部位')">
  371. <label>血管通路部位: </label>
  372. <span class="content">{{ this.prescription.blood_access_part_id }}</span>
  373. <span class="unit"></span>
  374. </li>
  375. <li v-if="isShow('血管通路')">
  376. <label>血管通路: </label>
  377. <span class="content">{{ blood_access }}</span>
  378. <span class="unit"></span>
  379. </li>
  380. <li v-if="isShow('目标KT/V')">
  381. <label>目标KT/V: </label>
  382. <span class="content">{{ target_ktv != "0" ? target_ktv : "" }}</span>
  383. </li>
  384. <li v-if="isShow('目标KT/V')">
  385. <label>目标KT/V: </label>
  386. <span class="content">{{ target_ktv != "0" ? target_ktv : "" }}</span>
  387. </li>
  388. <li v-if="isShow('抗凝提前停止')">
  389. <label>抗凝提前停止 : </label>
  390. <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>
  391. <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>
  392. <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>
  393. <span class="content" v-if="this.prescription.anticoagulant_stop_time_hour == 0 && this.prescription.anticoagulant_stop_time_min == 0 "></span>
  394. <span class="unit"></span>
  395. </li>
  396. <li v-if="isShow('病情')">
  397. <label>病情: </label>
  398. <span class="content">{{getIllness(this.prescription.illness)}}</span>
  399. </li>
  400. <li v-if="isShow('葡萄糖')">
  401. <label>葡萄糖: </label>
  402. <span class="content">{{this.prescription.amylaceum?this.prescription.amylaceum:0}}</span>
  403. </li>
  404. <li v-if="isShow('单超时长')">
  405. <label>单超时长(min): </label>
  406. <span class="content">{{this.prescription.single_time}}</span>
  407. </li>
  408. <li v-if="isShow('单超脱水')">
  409. <label>单超脱水(ml): </label>
  410. <span class="content">{{this.prescription.single_water}}</span>
  411. </li>
  412. <li v-if="isShow('置换流量') && this.$store.getters.xt_user.template_info.org_id!=10340">
  413. <label>置换流量(L/h): </label>
  414. <span class="content">{{this.prescription.replacement_flow}}</span>
  415. </li>
  416. <li v-if="isShow('置换流量') && this.$store.getters.xt_user.template_info.org_id==10340">
  417. <label>置换流量(ml/min): </label>
  418. <span class="content">{{this.prescription.replacement_flow}}</span>
  419. </li>
  420. <li v-if="isShow('血浆分离器')">
  421. <label>血浆分离器: </label>
  422. <span class="content">{{this.prescription.plasma_separator}}</span>
  423. </li>
  424. <li v-if="isShow('胆红素吸附柱')">
  425. <label>胆红素吸附柱: </label>
  426. <span class="content">{{this.prescription.bilirubin_adsorption_column}}</span>
  427. </li>
  428. <li v-if="isShow('吸氧')">
  429. <label>吸氧:</label>
  430. <span class="content">
  431. <span v-if="this.prescription.oxygen_uptake == 1">需</span>
  432. <span v-if="this.prescription.oxygen_uptake == 2">无</span>
  433. </span>
  434. </li>
  435. <li v-if="isShow('吸氧')">
  436. <label>吸氧流量(L/分):</label>
  437. <span class="content">
  438. <span>{{this.prescription.oxygen_flow}}</span>
  439. </span>
  440. </li>
  441. <li v-if="isShow('吸氧')">
  442. <label>吸氧时长(h):</label>
  443. <span class="content">
  444. <span>{{this.prescription.oxygen_time}}</span>
  445. </span>
  446. </li>
  447. <li v-if="isShow('最大超滤率')">
  448. <label>最大超滤率(ml/h):</label>
  449. <span class="content">
  450. <span>{{this.prescription.max_ultrafiltration_rate}}</span>
  451. </span>
  452. </li>
  453. <li v-if="isShow('曲线脱水')">
  454. <label>曲线脱水(ml): </label>
  455. <span class="content">{{this.prescription.drhy_water}}</span>
  456. </li>
  457. <li v-if="isShow('带水上机')">
  458. <label>带水上机: </label>
  459. <span class="content">{{this.prescription.water_machine}}</span>
  460. </li>
  461. <li v-if=" isShow('追加肝素量')" >
  462. <label>追加肝素量 : </label>
  463. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{ add_amount != "0" ? add_amount : "" }}</span>
  464. <span v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45">
  465. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" ></span>
  466. <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>
  467. <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>
  468. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
  469. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
  470. {{ add_amount != "0" ? "mg" : "" }}
  471. </span>
  472. <span v-else> {{ add_amount != "0" ? "iu" : "" }}</span>
  473. </span>
  474. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" >{{ add_amount != "0" ? "mg" : "" }}</span>
  475. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4" >{{ add_amount != "0" ? "mg" : "" }}</span >
  476. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5" >{{ add_amount != "0" ? "mg" : "" }}</span>
  477. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6" >
  478. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
  479. {{ add_amount != "0" ? "mg" : "" }}
  480. </span>
  481. <span v-else> {{ add_amount != "0" ? "iu" : "" }}</span>
  482. </span >
  483. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7" >
  484. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
  485. {{ add_amount != "0" ? "mg" : "" }}
  486. </span>
  487. <span v-else> {{ add_amount != "0" ? "iu" : "" }}</span>
  488. </span>
  489. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8" >{{ add_amount != "0" ? "iu" : "" }}</span>
  490. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9" >{{ add_amount != "0" ? "iu" : "" }}</span>
  491. </span>
  492. <span v-else>
  493. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">{{ add_amount != "0" ? "mg" : "" }}</span>
  494. <span class="unit" v-else>{{ add_amount != "0" ? "iu" : "" }}</span>
  495. </span>
  496. </li>
  497. <li v-if=" isShow('减肝素量')" >
  498. <label>减肝素量 : </label>
  499. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{ reduce_amount != "0" ? reduce_amount : "" }}</span>
  500. <span v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45">
  501. <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" ></span>
  502. <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>
  503. <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>
  504. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 3">
  505. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
  506. {{ reduce_amount != "0" ? "mg" : "" }}
  507. </span>
  508. <span v-else> {{ reduce_amount != "0" ? "iu" : "" }}</span>
  509. </span>
  510. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 1" >{{ reduce_amount != "0" ? "mg" : "" }}</span>
  511. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 4" >{{ reduce_amount != "0" ? "mg" : "" }}</span >
  512. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 5" >{{ reduce_amount != "0" ? "mg" : "" }}</span>
  513. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 6" >
  514. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
  515. {{ reduce_amount != "0" ? "mg" : "" }}
  516. </span>
  517. <span v-else> {{ reduce_amount != "0" ? "iu" : "" }}</span>
  518. </span >
  519. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 7" >
  520. <span v-if="this.$store.getters.xt_user.template_info.org_id == 9671">
  521. {{ reduce_amount != "0" ? "mg" : "" }}
  522. </span>
  523. <span v-else> {{ reduce_amount != "0" ? "iu" : "" }}</span>
  524. </span>
  525. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 8" >{{ reduce_amount != "0" ? "iu" : "" }}</span>
  526. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 9" >{{ reduce_amount != "0" ? "iu" : "" }}</span>
  527. </span>
  528. <span v-else>
  529. <span class="unit" v-if="getValueStr('anticoagulant', 'anticoagulant') == 2">{{ reduce_amount != "0" ? "mg" : "" }}</span>
  530. <span class="unit" v-else>{{ reduce_amount != "0" ? "iu" : "" }}</span>
  531. </span>
  532. </li>
  533. <li v-if="isShow('开药数量')">
  534. <label>开药数量(支): </label>
  535. <span class="content">{{this.prescription.prescribing_number}}</span>
  536. </li>
  537. <li v-if="isShow('处方钠')">
  538. <label>处方钠: </label>
  539. <span class="content">{{this.prescription.prescription_sodium}}</span>
  540. </li>
  541. <li v-if="isShow('开始钠')">
  542. <label>开始钠: </label>
  543. <span class="content">{{this.prescription.start_sodium}}</span>
  544. </li>
  545. <li v-if="isShow('钠曲线')">
  546. <label>钠曲线: </label>
  547. <span class="content">{{this.prescription.sodium_curve}}</span>
  548. </li>
  549. <li v-if="isShow('开始钠')">
  550. <label>开始钠: </label>
  551. <span class="content">{{this.prescription.start_sodium}}</span>
  552. </li>
  553. <li v-if="isShow('透析液流速')">
  554. <label>透析液流速(ml/h): </label>
  555. <span class="content">{{this.prescription.dialysis_fluid_flow}}</span>
  556. </li>
  557. <li v-if="isShow('碳酸氢钠流速')">
  558. <label>碳酸氢钠流速(ml/h): </label>
  559. <span class="content">{{this.prescription.sodium_bicarbonate_flow}}</span>
  560. </li>
  561. <li v-if="isShow('病情处理')">
  562. <label>病情处理: </label>
  563. <span class="content">{{this.prescription.treatment_remark}}</span>
  564. </li>
  565. <li v-if="isShow('加糖')">
  566. <label>加糖: </label>
  567. <span class="content">{{this.prescription.chaptalization}}</span>
  568. </li>
  569. <li v-if="isShow('冲洗时间')">
  570. <label>q(h): </label>
  571. <span class="content">{{this.prescription.washing_time}}</span>
  572. </li>
  573. <li v-if="isShow('冲洗量')">
  574. <label>Ns冲洗量(ml): </label>
  575. <span class="content">{{this.prescription.warsh_count}}</span>
  576. </li>
  577. </ul>
  578. </div>
  579. <div style="color:#34495e;margin: 12px 100px 0 100px;" v-if="isShow('透析备注')">透析备注: <span style="color:#409eff;">{{this.prescription.dialysis_remark}}</span></div>
  580. <div style="color:#34495e;margin: 12px 100px 0 100px;">备注: <span style="color:#409eff;">{{ note }}</span></div>
  581. </div>
  582. </template>
  583. <script>
  584. import { getDataConfig } from '@/utils/data'
  585. import store from '@/store'
  586. export default {
  587. name: 'DialysisPrescription',
  588. data() {
  589. return {
  590. title: '透析处方',
  591. perfusion_apparatus_map: {},
  592. dialysateFormulationMap: {},
  593. blood_access_part: [],
  594. blood_access_part_opera: []
  595. }
  596. },
  597. props: {
  598. prescription: {
  599. type: Object
  600. },
  601. solution: {
  602. type: Object
  603. },
  604. device_number_map: {
  605. type: Object
  606. },
  607. preparestock:{
  608. type:Array
  609. }
  610. },
  611. computed: {
  612. note: function () {
  613. // console.log("世界人民呃232323223232323323223",this.prescription)
  614. return this.getValueStr('remark', 'remark')
  615. },
  616. target_ultrafiltration: function() {
  617. var v = this.getValueStr(
  618. 'target_ultrafiltration',
  619. 'target_ultrafiltration'
  620. )
  621. return v.length == 0 ? '0' : v
  622. },
  623. dialysis_mode: function() {
  624. var mode = this.getValueStr('mode_id', 'mode_id')
  625. if (mode.length == 0) {
  626. return ''
  627. }
  628. if (this.$store.getters.treatment_mode[mode] != undefined) {
  629. return this.$store.getters.treatment_mode[mode].name
  630. }
  631. return ''
  632. },
  633. perfusion_apparatus: function() {
  634. var v = this.getValueStr('perfusion_apparatus', 'perfusion_apparatus')
  635. if (v.length == 0) {
  636. return ''
  637. }
  638. if (this.perfusion_apparatus_map[v] != undefined) {
  639. return this.perfusion_apparatus_map[v].name
  640. }
  641. return ''
  642. },
  643. displace_liqui: function() {
  644. var v = this.getValueStr('displace_liqui', 'displace_liqui')
  645. return v.length == 0 ? '0' : v
  646. },
  647. anticoagulant_shouji: function() {
  648. var v = this.getValueStr('anticoagulant_shouji', 'anticoagulant_shouji')
  649. return v.length == 0 ? '0' : v
  650. },
  651. kalium: function() {
  652. var v = this.getValueStr('kalium', 'kalium')
  653. return v.length == 0 ? '0' : v
  654. },
  655. replacement_total: function() {
  656. var v = this.getValueStr('replacement_total', 'replacement_total')
  657. return v.length == 0 ? '0' : v
  658. },
  659. bicarbonate: function() {
  660. var v = this.getValueStr('bicarbonate', 'bicarbonate')
  661. return v.length == 0 ? '0' : v
  662. },
  663. dialysate_flow: function() {
  664. var v = this.getValueStr('dialysate_flow', 'dialysate_flow')
  665. return v.length == 0 ? '0' : v
  666. },
  667. dialysis_duration: function() {
  668. var dialysis_duration_hour = this.getValueStr(
  669. 'dialysis_duration_hour',
  670. 'dialysis_duration_hour'
  671. )
  672. var dialysis_duration_minute = this.getValueStr(
  673. 'dialysis_duration_minute',
  674. 'dialysis_duration_minute'
  675. )
  676. if (
  677. dialysis_duration_hour.length == 0 &&
  678. dialysis_duration_minute.length == 0
  679. ) {
  680. return '0'
  681. } else {
  682. var time =
  683. dialysis_duration_hour + 'h' + dialysis_duration_minute + 'min'
  684. return time.length == 0 ? '0' : time
  685. }
  686. },
  687. blood_flow_volume: function() {
  688. var v = this.getValueStr('blood_flow_volume', 'blood_flow_volume')
  689. return v.length == 0 ? '0' : v
  690. },
  691. dialyzate:function(){
  692. var v = this.getValueStr('dialyzate', 'dialyzate')
  693. return v.length == 0 ? '0' : v
  694. },
  695. replacement_way: function() {
  696. return this.getValueStr('replacement_way', 'replacement_way')
  697. },
  698. anticoagulant_weichi: function() {
  699. var v = this.getValueStr('anticoagulant_weichi', 'anticoagulant_weichi')
  700. return v.length == 0 ? '0' : v
  701. },
  702. sodium: function() {
  703. var v = this.getValueStr('sodium', 'sodium')
  704. return v.length == 0 ? '0' : v
  705. },
  706. glucose: function() {
  707. var v = this.getValueStr('glucose', 'glucose')
  708. return v.length == 0 ? '0' : v
  709. },
  710. dialysate_temperature: function() {
  711. var v = this.getValueStr(
  712. 'dialysate_temperature',
  713. 'dialysate_temperature'
  714. )
  715. return v.length == 0 ? '0' : v
  716. },
  717. dialyzer: function() {
  718. var v = this.getValueStr('dialyzer', 'hemodialysis_machine')
  719. if (v.length == 0) {
  720. return ''
  721. }
  722. if (this.device_number_map[v] != undefined) {
  723. return this.device_number_map[v].name
  724. }
  725. return ''
  726. },
  727. dialysate_formulation: function() {
  728. var v = this.getValueStr(
  729. 'dialysate_formulation',
  730. 'dialysate_formulation'
  731. )
  732. if (v.length == 0) {
  733. return ''
  734. }
  735. if (v in this.dialysateFormulationMap) {
  736. return this.dialysateFormulationMap[v].name
  737. }
  738. return ''
  739. },
  740. prescription_dewatering: function() {
  741. var v = this.getValueStr('prescription_dewatering', 'dewater')
  742. return v.length == 0 ? '0' : v
  743. },
  744. anticoagulant: function() {
  745. var v = this.getValueStr('anticoagulant', 'anticoagulant')
  746. if (v.length == 0) {
  747. return ''
  748. }
  749. if (this.$store.getters.anticoagulants_confit[v] != undefined) {
  750. return this.$store.getters.anticoagulants_confit[v].name
  751. }
  752. return ''
  753. },
  754. anticoagulant_zongliang: function() {
  755. var v = this.getValueStr(
  756. 'anticoagulant_zongliang',
  757. 'anticoagulant_zongliang'
  758. )
  759. return v.length == 0 ? '0' : v
  760. },
  761. calcium: function() {
  762. var v = this.getValueStr('calcium', 'calcium')
  763. return v.length == 0 ? '0' : v
  764. },
  765. conductivity: function() {
  766. var v = this.getValueStr('conductivity', 'conductivity')
  767. return v.length == 0 ? '0' : v
  768. },
  769. dialyzer_perfusion_apparatus: function() {
  770. return this.getValueStr(
  771. 'dialyzer_perfusion_apparatus',
  772. 'dialyzer_perfusion_apparatus'
  773. )
  774. },
  775. dialysis_dialyszers:function(){
  776. var str = this.getValueStr('dialysis_dialyszers','dialysis_dialyszers')
  777. console.log("str",str)
  778. var arr = str.split(",")
  779. if (arr.length >0) {
  780. for(let i=0;i<arr.length;i++){
  781. for(let j=0;j<this.preparestock.length;j++){
  782. if(arr[i] == this.preparestock[j].specification_name){
  783. if(this.preparestock[j].commdity_code!=""){
  784. arr[i] = arr[i]+"("+this.preparestock[j].commdity_code+")"
  785. }
  786. }
  787. }
  788. }
  789. }
  790. console.log("arr00000",arr)
  791. var strs = arr.join(',')
  792. console.log("strs",strs)
  793. return strs
  794. },
  795. dialysis_irrigation:function(){
  796. var str = this.getValueStr('dialysis_irrigation','dialysis_irrigation')
  797. console.log("str",str)
  798. var arr = str.split(",")
  799. if (arr.length >0) {
  800. for(let i=0;i<arr.length;i++){
  801. for(let j=0;j<this.preparestock.length;j++){
  802. if(arr[i] == this.preparestock[j].specification_name){
  803. if(this.preparestock[j].commdity_code!=""){
  804. arr[i] = arr[i]+"("+this.preparestock[j].commdity_code+")"
  805. }
  806. }
  807. }
  808. }
  809. }
  810. console.log("arr00000",arr)
  811. var strs = arr.join(',')
  812. console.log("strs",strs)
  813. return strs
  814. // return this.getValueStr('dialysis_irrigation','dialysis_irrigation')
  815. },
  816. body_fluid: function() {
  817. var id = this.getValueStr('body_fluid', 'body_fluid')
  818. if (id == 0) {
  819. return ''
  820. }
  821. var bodyFluidOptions = this.$store.getters.body_fluid
  822. for (let i = 0; i < bodyFluidOptions.length; i++) {
  823. if (bodyFluidOptions[i].id == id) {
  824. return bodyFluidOptions[i].name
  825. }
  826. }
  827. },
  828. special_medicine: function() {
  829. var id = this.getValueStr('special_medicine', 'special_medicine')
  830. if (id == 0) {
  831. return ''
  832. }
  833. var special_medicine = this.$store.getters.special_medicine
  834. for (let i = 0; i < special_medicine.length; i++) {
  835. if (special_medicine[i].id == id) {
  836. return special_medicine[i].name
  837. }
  838. }
  839. },
  840. special_medicine_other: function() {
  841. return this.getValueStr(
  842. 'special_medicine_other',
  843. 'special_medicine_other'
  844. )
  845. },
  846. blood_access: function() {
  847. var id = this.getValueStr('blood_access', 'blood_access')
  848. console.log('id', id)
  849. if (id == 0) {
  850. return ''
  851. }
  852. // var blood_access = this.$store.getters.blood_access_internal_fistula;
  853. var blood_access = getDataConfig('hemodialysis', 'vascular_access_desc')
  854. for (let i = 0; i < blood_access.length; i++) {
  855. if (blood_access[i].id == id) {
  856. return blood_access[i].name
  857. }
  858. }
  859. },
  860. displace_liqui: function() {
  861. var id = this.getValueStr('displace_liqui_part', 'displace_liqui_part')
  862. var displace_liqui_value = this.getValueStr(
  863. 'displace_liqui_value',
  864. 'displace_liqui_value'
  865. )
  866. var displace_liqui_part = ''
  867. var displace_liqui = this.$store.getters.displace_liqui
  868. for (let i = 0; i < displace_liqui.length; i++) {
  869. if (displace_liqui[i].id == id) {
  870. displace_liqui_part = displace_liqui[i].name
  871. }
  872. }
  873. return displace_liqui_part + displace_liqui_value
  874. },
  875. ultrafiltration: function() {
  876. var v = this.getValueStr('ultrafiltration', 'ultrafiltration')
  877. return v.length == 0 ? '0' : v
  878. },
  879. body_fluid_other: function() {
  880. return this.getValueStr('body_fluid_other', 'body_fluid_others')
  881. },
  882. target_ktv: function() {
  883. var v = this.getValueStr('target_ktv', 'target_ktv')
  884. return v.length == 0 ? '0' : v
  885. },
  886. antioxidant_commodity_name:function(){
  887. return this.getValueStr('antioxidant_commodity_name','antioxidant_commodity_name')
  888. },
  889. displace_speed:function(){
  890. return this.getValueStr('displace_speed','displace_speed')
  891. },
  892. add_amount:function(){
  893. return this.getValueStr('add_amount','add_amount')
  894. },
  895. reduce_amount:function(){
  896. return this.getValueStr('reduce_amount','reduce_amount')
  897. },
  898. prescription_water:function(){
  899. return this.getValueStr('prescription_water','prescription_water')
  900. },
  901. dialysis_strainer:function(){
  902. return this.getValueStr('dialysis_strainer','dialysis_strainer')
  903. }
  904. },
  905. created() {
  906. console.log("template_id", this.$store.getters.xt_user.template_info.template_id)
  907. var perfusion_apparatus = this.$store.getters.perfusion_apparatus
  908. var map = {}
  909. for (let index = 0; index < perfusion_apparatus.length; index++) {
  910. const p = perfusion_apparatus[index]
  911. map[p.id] = p
  912. }
  913. this.perfusion_apparatus_map = map
  914. var dialysateFormulationOptions = getDataConfig(
  915. 'hemodialysis',
  916. 'dialysate_formulation'
  917. )
  918. for (var index in dialysateFormulationOptions) {
  919. this.dialysateFormulationMap[dialysateFormulationOptions[index].id] =
  920. dialysateFormulationOptions[index]
  921. }
  922. },
  923. methods: {
  924. getValueStr(pkey, skey) {
  925. if (
  926. (this.prescription == null || this.prescription.id == '') &&
  927. (this.solution == null || this.solution.id == '')
  928. ) {
  929. return ''
  930. } else if (this.prescription != null && this.prescription.id != '') {
  931. if (this.prescription[pkey] == null || this.prescription[pkey] == undefined) {
  932. return ''
  933. }
  934. return this.prescription[pkey] + ''
  935. } else {
  936. if (this.solution[skey] == null || this.solution[skey] == undefined) {
  937. return ''
  938. }
  939. return this.solution[skey] + ''
  940. }
  941. },
  942. isShow(name) {
  943. var filedList = store.getters.xt_user.fileds
  944. for (let i = 0; i < filedList.length; i++) {
  945. if (
  946. filedList[i].module == 1 &&
  947. filedList[i].filed_name_cn == name &&
  948. filedList[i].is_show == 1
  949. ) {
  950. return true
  951. }
  952. }
  953. return false
  954. },
  955. getIllness(id){
  956. var illnessList = getDataConfig('hemodialysis','illness')
  957. var name = ""
  958. for(let i=0;i<illnessList.length;i++){
  959. if(id == illnessList[i].id){
  960. name = illnessList[i].name
  961. }
  962. }
  963. return name
  964. }
  965. }
  966. }
  967. </script>
  968. <style rel="stylesheet/scss" lang="scss" scoped></style>