Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

DialysisPrescription.vue 49KB

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