血透系统pad前端

ThorougDialog.vue 50KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337
  1. <template>
  2. <div>
  3. <div v-if="isShowDialog" class="Dialog">
  4. <div class="DialogTit">
  5. <span @click="close()" class="iconfont">&#xe6e9;</span>
  6. <h1 class="name">透后评估</h1>
  7. <span @click="commitInfo" class="success">完成</span>
  8. </div>
  9. <div class="DialogContent" id="dialogTop">
  10. <div @click="openPicker" class="item" v-if="isShow('实际治疗时长')">
  11. <h2 class="name">实际治疗时长</h2>
  12. <div class="content">
  13. <span class="text" style="width: 100px">{{timeValue}}</span>
  14. <span class="iconfont">&#xe6f9;</span>
  15. </div>
  16. </div>
  17. <div class="item" v-if="isShow('实际超滤量')">
  18. <label class="name" for="sjcll">实际超滤量(L)</label>
  19. <div class="content">
  20. <input type="tel" @focus="inputFocus" id="sjcll" v-model="formValue.actual_ultrafiltration"/>
  21. </div>
  22. </div>
  23. <div class="item" v-if="isShow('透后体重')">
  24. <label class="name" for="sjcll">透后体重(kg)</label>
  25. <div class="content">
  26. <input type="tel" @focus="inputFocus" id="sjcll" v-model="formValue.weight_after"/>
  27. </div>
  28. </div>
  29. <!--<div class=item" v-if="isShow('透后体重')">-->
  30. <!--<label class="name" for="thtz">透后体重(kg)</label>-->
  31. <!--<div class="content">-->
  32. <!--<input type="tel" @focus="inputFocus" id="thtz" v-model="formValue.weight_after"/>-->
  33. <!--</div>-->
  34. <!--</div>-->
  35. <div @click="showSubMenu('cruor')" class="item" ref="cruor" v-if="isShow('透析器凝血')">
  36. <label class="name" for="nx">透析器凝血</label>
  37. <div class="content">
  38. <span class="text" id="nx" style="width: 100px">{{formValue.cruor}}</span>
  39. <span class="iconfont">&#xe6f9;</span>
  40. </div>
  41. </div>
  42. <div class="item" v-if="isShow('拔针后穿刺点渗血')" @click="showSubMenu('puncture_point_oozing_blood')">
  43. <h2 class="name">拔针后穿刺点渗血</h2>
  44. <div class="content">
  45. <!--<span class="text" style="width: 50px;"><div style="padding-top: 0.08rem; height: 0.8rem;">-->
  46. <!--<van-switch v-model="puncture_point_oozing_blood_state" @change="puncturePointOozingBlood"/></div></span>-->
  47. <div class="content">
  48. <span v-if="formValue.puncture_point_oozing_blood == 0" class="text" style="width: 50px"></span>
  49. <span v-if="formValue.puncture_point_oozing_blood == 1" class="text" style="width: 50px">有</span>
  50. <span v-if="formValue.puncture_point_oozing_blood == 2" class="text" style="width: 50px">无</span>
  51. <span class="iconfont">&#xe6f9;</span>
  52. </div>
  53. </div>
  54. </div>
  55. <div class="item" v-if="isShow('穿刺处血肿')" @click="showSubMenu('puncture_point_haematoma')">
  56. <h2 class="name">穿刺处血肿</h2>
  57. <div class="content">
  58. <span v-if="formValue.puncture_point_haematoma == 0" class="text" style="width: 50px"></span>
  59. <span v-if="formValue.puncture_point_haematoma == 1" class="text" style="width: 50px">有</span>
  60. <span v-if="formValue.puncture_point_haematoma == 2" class="text" style="width: 50px">无</span>
  61. <span class="iconfont">&#xe6f9;</span>
  62. </div>
  63. </div>
  64. <div @click="showSubMenu('internal_fistula_tremor_ac')" class="item" ref="internal_fistula_tremor_ac" v-if="isShow('压迫后内瘘震颤')">
  65. <label class="name" for="internal_fistula_tremor_ac">压迫后内瘘震颤</label>
  66. <div class="content">
  67. <span class="text" id="internal_fistula_tremor_ac" style="width: 50px">{{GetIFTAValue(formValue.internal_fistula_tremor_ac)}}</span>
  68. <span class="iconfont">&#xe6f9;</span>
  69. </div>
  70. </div>
  71. <div @click="showSubMenu('complication')" class="item" ref="complication" v-if="isShow('并发症')">
  72. <label class="name" for="bfz">并发症</label>
  73. <div class="content">
  74. <span class="text" id="bfz" style="width: 50px">{{formValue.complication}}</span>
  75. <span class="iconfont">&#xe6f9;</span>
  76. </div>
  77. </div>
  78. <div @click="showSubMenu('patient_gose')" class="item" ref="patient_gose" v-if="isShow('患者去向')">
  79. <label class="name" for="patient_gose">患者去向</label>
  80. <div class="content">
  81. <span class="text" id="patient_gose" style="width: 50px">{{GetPatientGoes(formValue.patient_gose)}}</span>
  82. <span class="iconfont">&#xe6f9;</span>
  83. </div>
  84. </div>
  85. <div class="item" v-if="formValue.patient_gose==3&&isShow('科室')">
  86. <label class="name" for="inpatient_department">科室</label>
  87. <div class="content">
  88. <input type="text" @focus="inputFocus" id="inpatient_department" v-model="formValue.inpatient_department"/>
  89. </div>
  90. </div>
  91. <div @click="showSubMenu('observation_content')" class="item" ref="observation_content"
  92. v-if="formValue.patient_gose==3&&isShow('交待病房护士/患者/陪人观察内容')">
  93. <label class="name" for="observation_content">交待病房护士/患者/陪人观察内容</label>
  94. <div class="content">
  95. <span class="text" id="observation_content" style="width: 50px">{{formValue.observation_content}}</span>
  96. <span class="iconfont">&#xe6f9;</span>
  97. </div>
  98. </div>
  99. <div class="item" v-if="formValue.patient_gose==3&&isShow('其他观察内容')">
  100. <label class="name" for="observation_content_other">其他观察内容</label>
  101. <div class="content">
  102. <input type="text" @focus="inputFocus" id="observation_content_other"
  103. v-model="formValue.observation_content_other"/>
  104. </div>
  105. </div>
  106. <div class="line"></div>
  107. <!--<div class="item">-->
  108. <!--<label class="name" for="sjzhl">实际置换量(L)</label>-->
  109. <!--<div class="content">-->
  110. <!--<input type="tel" @focus="inputFocus" id="sjzhl" v-model="formValue.actual_displacement"/>-->
  111. <!--&lt;!&ndash;<span class="text">HD</span>&ndash;&gt;-->
  112. <!--&lt;!&ndash;<span class="iconfont">&#xe6f9;</span>&ndash;&gt;-->
  113. <!--</div>-->
  114. <!--</div>-->
  115. <div class="item" v-if="isShow('体重减少')">
  116. <label class="name" for="tzjs">体重减少(kg)</label>
  117. <div class="content">
  118. <input type="tel" @focus="inputFocus" id="tzjs" v-model="formValue.weight_loss"/>
  119. <!--<span class="text">1</span>-->
  120. <!--<span class="iconfont">&#xe6f9;</span>-->
  121. </div>
  122. </div>
  123. <div class="item" v-if="isShow('体温')">
  124. <label class="name" for="tw">体温(℃)</label>
  125. <div class="content">
  126. <input type="tel" @focus="inputFocus" id="tw" v-model="formValue.temperature"/>
  127. <!--<span class="text">HD</span>-->
  128. <!--<span class="iconfont">&#xe6f9;</span>-->
  129. </div>
  130. </div>
  131. <div class="item" v-if="isShow('收缩压')">
  132. <label class="name" for="ssy">收缩压(mmHg)</label>
  133. <div class="content">
  134. <input type="tel" @focus="inputFocus" id="ssy" v-model="formValue.systolic_blood_pressure"/>
  135. <!--<span class="text">HD</span>-->
  136. <!--<span class="iconfont">&#xe6f9;</span>-->
  137. </div>
  138. </div>
  139. <div class="item" v-if="isShow('舒张压')">
  140. <label class="name" for="szy">舒张压(mmHg)</label>
  141. <div class="content">
  142. <input type="tel" @focus="inputFocus" id="szy" v-model="formValue.diastolic_blood_pressure"/>
  143. <!--<span class="text">HD</span>-->
  144. <!--<span class="iconfont">&#xe6f9;</span>-->
  145. </div>
  146. </div>
  147. <div class="item" v-if="isShow('呼吸频率')">
  148. <label class="name" for="ml">呼吸频率(次/min)</label>
  149. <div class="content">
  150. <input type="tel" @focus="inputFocus" id="ml" v-model="formValue.breathing_rate"/>
  151. <!--<span class="text">HD</span>-->
  152. <!--<span class="iconfont">&#xe6f9;</span>-->
  153. </div>
  154. </div>
  155. <div class="item" v-if="isShow('脉搏')">
  156. <label class="name" for="ml">脉搏(次/分)</label>
  157. <div class="content">
  158. <input type="tel" @focus="inputFocus" id="ml" v-model="formValue.pulse_frequency"/>
  159. <!--<span class="text">HD</span>-->
  160. <!--<span class="iconfont">&#xe6f9;</span>-->
  161. </div>
  162. </div>
  163. <div @click="showSubMenu('symptom_after_dialysis')" class="item" ref="symptom_after_dialysis" v-if="isShow('透后症状')">
  164. <label class="name" for="thzz">透后症状</label>
  165. <div class="content">
  166. <span class="text" id="thzz" style="width: 100px">{{formValue.symptom_after_dialysis}}</span>
  167. <span class="iconfont">&#xe6f9;</span>
  168. </div>
  169. </div>
  170. <div @click="showSubMenu('dialysis_intakes')" class="item" ref="dialysis_intakes" v-if="isShow('透析中入量')">
  171. <label class="name" for="txz">透析中入量</label>
  172. <div class="content">
  173. <input type="tel" @focus="inputFocus" id="txz" v-model="formValue.dialysis_intakes"/>
  174. <!--<span class="text" style="width: 100px">{{formValue.dialysis_intakes}}</span>-->
  175. <!--<span class="iconfont">&#xe6f9;</span>-->
  176. </div>
  177. </div>
  178. <div @click="showSubMenu('internal_fistula')" class="item" ref="internal_fistula" v-if="isShow('内瘘')">
  179. <label class="name" for="dg">内瘘</label>
  180. <div class="content">
  181. <span class="text" id="dg">{{formValue.internal_fistula}}</span>
  182. <span class="iconfont">&#xe6f9;</span>
  183. </div>
  184. </div>
  185. <div class="line"></div>
  186. <div @click="showSubMenu('blood_access_part')" class="item" ref="blood_access_part" v-if="isShow('血管通路部位')">
  187. <label class="name" for="xgtl">血管通路部位</label>
  188. <div class="content">
  189. <span class="text" id="xgtl">{{QueryPartById(formValue.blood_access_part_id)}}</span>
  190. <span class="iconfont">&#xe6f9;</span>
  191. </div>
  192. </div>
  193. <div @click="showSubMenu('blood_access_opera')" class="item" ref="blood_access_opera" v-if="isShow('血管通路操作')">
  194. <label class="name" for="xgtlcz">血管通路操作</label>
  195. <div class="content">
  196. <span class="text" id="xgtlcz">{{QueryOperaById(formValue.blood_access_part_opera_id)}}</span>
  197. <span class="iconfont">&#xe6f9;</span>
  198. </div>
  199. </div>
  200. <div class="line"></div>
  201. <div @click="showSubMenu('catheter')" class="item" ref="catheter" v-if="isShow('导管')">
  202. <label class="name" for="dg">导管</label>
  203. <div class="content">
  204. <span class="text" id="dg">{{formValue.catheter}}</span>
  205. <span class="iconfont">&#xe6f9;</span>
  206. </div>
  207. </div>
  208. <div class="line"></div>
  209. <div @click="showSubMenu('dialysis_process')" class="item" ref="dialysis_process" v-if="isShow('透析过程')">
  210. <label class="name" for="dg">透析过程</label>
  211. <div class="content">
  212. <span class="text" id="dg">{{getDialysisProcess(formValue.dialysis_process)}}</span>
  213. <span class="iconfont">&#xe6f9;</span>
  214. </div>
  215. </div>
  216. <div class="item" ref="in_advance_minute" v-if="formValue.dialysis_process == 2 && isShow('透析过程提前时间') ">
  217. <label class="name" for="dg">透析过程提前时间(min)</label>
  218. <div class="content">
  219. <input type="tel" @focus="inputFocus" id="txz" v-model="formValue.in_advance_minute"/>
  220. </div>
  221. </div>
  222. <div @click="showSubMenu('in_advance_reason')" class="item" ref="in_advance_reason" v-if="formValue.dialysis_process == 2 && isShow('透析过程提前原因')">
  223. <label class="name" for="dg">透析过程提前原因</label>
  224. <div class="content">
  225. <span class="text" id="dg">{{formValue.in_advance_reason}}</span>
  226. <span class="iconfont">&#xe6f9;</span>
  227. </div>
  228. </div>
  229. <div class="item" ref="in_advance_reason_other" v-if="formValue.dialysis_process == 2 && isShow('透析过程提前其他原因')">
  230. <label class="name" for="dg">透析过程提前其他原因</label>
  231. <div class="content">
  232. <input type="tel" @focus="inputFocus" id="txz" v-model="formValue.in_advance_reason_other"/>
  233. </div>
  234. </div>
  235. <div class="item" ref="hemostasis_minute" v-if="isShow('内瘘管拔针后压迫止血时间')">
  236. <label class="name" for="dg">内瘘管拔针后压迫止血时间(min)</label>
  237. <div class="content">
  238. <input type="tel" @focus="inputFocus" id="txz" v-model="formValue.hemostasis_minute"/>
  239. </div>
  240. </div>
  241. <div @click="showSubMenu('hemostasis_opera')" class="item" ref="hemostasis_opera" v-if="isShow('内瘘管拔针后压迫止血操作')">
  242. <label class="name" for="dg">内瘘管拔针后压迫止血操作</label>
  243. <div class="content">
  244. <span class="text" id="dg">{{getOpera(formValue.hemostasis_opera)}}</span>
  245. <span class="iconfont">&#xe6f9;</span>
  246. </div>
  247. </div>
  248. <div @click="showSubMenu('tremor_noise')" class="item" ref="tremor_noise" v-if="isShow('内瘘震颤和血管杂音')">
  249. <label class="name" for="dg">内瘘震颤和血管杂音</label>
  250. <div class="content">
  251. <span class="text" id="dg">{{getTremorNoise(formValue.tremor_noise)}}</span>
  252. <span class="iconfont">&#xe6f9;</span>
  253. </div>
  254. </div>
  255. <div @click="showSubMenu('disequilibrium_syndrome')" class="item" ref="disequilibrium_syndrome" v-if="isShow('失衡综合症')">
  256. <label class="name" for="dg">失衡综合症</label>
  257. <div class="content">
  258. <span class="text" id="dg">{{getDisequilibriumSyndrome(formValue.disequilibrium_syndrome)}}</span>
  259. <span class="iconfont">&#xe6f9;</span>
  260. </div>
  261. </div>
  262. <div @click="showSubMenu('disequilibrium_syndrome_option')" class="item" ref="disequilibrium_syndrome_option" v-if="formValue.disequilibrium_syndrome == 2 && isShow('失衡综合症症状')">
  263. <label class="name" for="dg">失衡综合症症状</label>
  264. <div class="content">
  265. <span class="text" id="dg">{{formValue.disequilibrium_syndrome_option}}</span>
  266. <span class="iconfont">&#xe6f9;</span>
  267. </div>
  268. </div>
  269. <div @click="showSubMenu('arterial_tube')" class="item" ref="arterial_tube" v-if="isShow('动脉管道')">
  270. <label class="name" for="dg">动脉管道</label>
  271. <div class="content">
  272. <span class="text" id="dg">{{getArterialTubeName(formValue.arterial_tube)}}</span>
  273. <span class="iconfont">&#xe6f9;</span>
  274. </div>
  275. </div>
  276. <div @click="showSubMenu('intravenous_tube')" class="item" ref="intravenous_tube" v-if="isShow('静脉管道')">
  277. <label class="name" for="dg">静脉管道</label>
  278. <div class="content">
  279. <span class="text" id="dg">{{getIntravenousTubeName(formValue.intravenous_tube)}}</span>
  280. <span class="iconfont">&#xe6f9;</span>
  281. </div>
  282. </div>
  283. <div @click="showSubMenu('dialyzer')" class="item" ref="dialyzer" v-if="isShow('透析器')">
  284. <label class="name" for="dg">透析器</label>
  285. <div class="content">
  286. <span class="text" id="dg">{{getDialyzer(formValue.dialyzer)}}</span>
  287. <span class="iconfont">&#xe6f9;</span>
  288. </div>
  289. </div>
  290. <div class="item" v-if="isShow('透析期间进食')" @click="showSubMenu('is_eat')" ref="is_eat" >
  291. <h2 class="name">透析期间进食</h2>
  292. <div class="content">
  293. <span v-if="formValue.is_eat == 0" class="text" style="width: 50px"></span>
  294. <span v-if="formValue.is_eat == 1" class="text" style="width: 50px">有</span>
  295. <span v-if="formValue.is_eat == 2" class="text" style="width: 50px">无</span>
  296. <span class="iconfont">&#xe6f9;</span>
  297. </div>
  298. </div>
  299. <!-- <div class="line"></div> -->
  300. <div>
  301. <div class="item">
  302. <label class="name" for="bz">备注</label>
  303. <div class="content">
  304. <span class="text"></span>
  305. </div>
  306. </div>
  307. <textarea @focus="lastInputFocus" @blur="lastInputBlur" class="textarea" id="bz" placeholder="请输入内容" v-model="formValue.remark"></textarea>
  308. </div>
  309. </div>
  310. </div>
  311. <!--<two-menu title="二级菜单" v-show="true" ></two-menu>-->
  312. <check-box-sub-menu :visibility="visibility" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm" v-on:menu-empty="menuEmpty"
  313. :propsForm="propForm"></check-box-sub-menu>
  314. <mt-datetime-picker
  315. ref="picker"
  316. type="time"
  317. hourFormat="{value}小时"
  318. minuteFormat="{value}分钟"
  319. @confirm="handleTimeConfirm"
  320. v-model="time">
  321. </mt-datetime-picker>
  322. </div>
  323. </template>
  324. <script>
  325. // import TwoMenu from "./TwoMenu";
  326. import CheckBoxSubMenu from "./subMenu/checkBoxSubMenu";
  327. import {commitAssessmentAfterDislysis} from '@/api/dialysis';
  328. import {Toast} from 'vant';
  329. import {getDataConfig} from '@/utils/data';
  330. export default {
  331. name: "PrescriptionDialog",
  332. props: {
  333. record: {
  334. type: Object,
  335. },
  336. last_record: {
  337. type: Object,
  338. },
  339. patient_prop: {
  340. type: Object,
  341. }
  342. },
  343. data() {
  344. return {
  345. puncture_point_oozing_blood_state: false,
  346. puncture_point_haematoma_state: false,
  347. eat_state: false,
  348. isShowDialog: true,
  349. time: '00:00',
  350. puncture_point_oozing_bloods:[
  351. {id:1, name:"有"},
  352. {id:2, name:"无"},
  353. ],
  354. puncture_point_haematomas:[
  355. {id:1, name:"有"},
  356. {id:2, name:"无"},
  357. ],
  358. eat:[
  359. {id:1, name:"有"},
  360. {id:2, name:"无"},
  361. ],
  362. //sub menu prop
  363. visibility: false,
  364. propForm: {
  365. title: '',
  366. list: [],
  367. optionList: [],
  368. isMultiple: 2,
  369. result: [], //选中的值
  370. type: 1, //用来区分不同子菜单,方便对返回值进行赋值
  371. selectId: 0,
  372. isHasOther:1,
  373. },
  374. timeValue: '',
  375. formValue: {
  376. weight_after: '',
  377. weight_loss: '',
  378. temperature: '',
  379. systolic_blood_pressure: '',
  380. diastolic_blood_pressure: '',
  381. pulse_frequency: '',
  382. cruor: '',
  383. symptom_after_dialysis: '',
  384. dialysis_intakes: '',
  385. catheter: '',
  386. complication: '',
  387. puncture_point_oozing_blood: '',
  388. puncture_point_haematoma: '',
  389. remark: '',
  390. blood_access_part_id: 0,
  391. blood_access_part_opera_id: 0,
  392. actual_ultrafiltration: '',
  393. actual_displacement: '',
  394. actual_treatment_hour: '',
  395. actual_treatment_minute: '',
  396. internal_fistula: '',
  397. internal_fistula_tremor_ac: '',
  398. patient_gose: '',
  399. inpatient_department: '',
  400. observation_content: '',
  401. observation_content_other: '',
  402. dialysis_process:'',
  403. in_advance_minute:'',
  404. in_advance_reason:'',
  405. in_advance_reason_other:'',
  406. hemostasis_minute:'',
  407. hemostasis_opera:'',
  408. tremor_noise:'',
  409. disequilibrium_syndrome:'',
  410. disequilibrium_syndrome_option:'',
  411. arterial_tube:'',
  412. intravenous_tube:'',
  413. dialyzer:'',
  414. is_eat:'',
  415. breathing_rate:'',
  416. },
  417. record_date: ''
  418. };
  419. },
  420. methods: {
  421. isShow(name){
  422. var filedList = this.$store.getters.user.fileds
  423. for (let i = 0; i < filedList.length; i++){
  424. if(filedList[i].module == 5 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
  425. return true
  426. }
  427. }
  428. return false
  429. },
  430. puncturePointOozingBlood: function (is_select) {
  431. this.formValue.puncture_point_oozing_blood = is_select == true ? 1 : 2
  432. },
  433. puncturePointHaematoma: function (is_select) {
  434. this.formValue.puncture_point_haematoma = is_select == true ? 1 : 2
  435. },
  436. GetIFTAValue(id) {
  437. let name = "";
  438. let internal_fistula_tremor_ac = this.$store.getters.internal_fistula_tremor_ac;
  439. let ifl = internal_fistula_tremor_ac.length;
  440. for (let index = 0; index < ifl; index++) {
  441. if (internal_fistula_tremor_ac[index].id == id) {
  442. name = internal_fistula_tremor_ac[index].name;
  443. break
  444. }
  445. }
  446. return name;
  447. },
  448. GetPatientGoes(id) {
  449. let name = "";
  450. let patient_gose = this.$store.getters.patient_gose;
  451. let ifl = patient_gose.length;
  452. for (let index = 0; index < ifl; index++) {
  453. if (patient_gose[index].id == id) {
  454. name = patient_gose[index].name;
  455. break
  456. }
  457. }
  458. return name;
  459. },
  460. inputFocus: function (event) {
  461. var input = event.target
  462. setTimeout(function () {
  463. input.scrollIntoView()
  464. }, 0);
  465. if (input.setSelectionRange) {
  466. setTimeout(function () {
  467. input.setSelectionRange(0, input.value.length);
  468. }, 0);
  469. } else if (input.createTextRange) {
  470. var rng = input.createTextRange();
  471. rng.move('character', input.value.length);
  472. rng.select();
  473. }
  474. },
  475. lastInputFocus: function(event) {
  476. var input = event.target
  477. setTimeout(function () {
  478. input.style.marginBottom = "2rem"
  479. input.parentNode.scrollIntoView()
  480. }, 0);
  481. },
  482. lastInputBlur: function(event) {
  483. var input = event.target
  484. setTimeout(function () {
  485. input.style.marginBottom = ""
  486. }, 0);
  487. },
  488. showSubMenu: function (val) {
  489. switch (val) {
  490. case 'cruor':
  491. this.propForm.type = 1
  492. this.isShowDialog = false
  493. this.propForm.title = '凝血'
  494. this.propForm.isHasOther = 2
  495. this.visibility = true
  496. this.propForm.list = getDataConfig("hemodialysis", "cruor");
  497. this.propForm.optionList = []
  498. this.propForm.isMultiple = 2
  499. if (this.formValue.cruor != undefined || this.formValue.cruor != null) {
  500. if (this.formValue.cruor.length > 0) {
  501. this.propForm.result = this.formValue.cruor.split(",")
  502. } else {
  503. this.propForm.result = []
  504. }
  505. } else {
  506. this.propForm.result = []
  507. }
  508. this.propForm.click_ref = "cruor"
  509. break
  510. case 'symptom_after_dialysis':
  511. this.propForm.type = 2
  512. this.isShowDialog = false
  513. this.propForm.title = '透后症状'
  514. this.propForm.isHasOther = 2
  515. this.visibility = true
  516. this.propForm.list = getDataConfig('hemodialysis','symptoms');
  517. this.propForm.optionList = []
  518. this.propForm.isMultiple = 2
  519. if (this.formValue.symptom_after_dialysis != undefined || this.formValue.symptom_after_dialysis != null) {
  520. if (this.formValue.symptom_after_dialysis.length > 0) {
  521. this.propForm.result = this.formValue.symptom_after_dialysis.split(",")
  522. } else {
  523. this.propForm.result = []
  524. }
  525. } else {
  526. this.propForm.result = []
  527. }
  528. this.propForm.click_ref = "symptom_after_dialysis"
  529. break
  530. case 'catheter':
  531. this.propForm.type = 3
  532. this.isShowDialog = false
  533. this.propForm.title = '导管'
  534. this.visibility = true
  535. this.propForm.isHasOther = 2
  536. this.propForm.list = getDataConfig('hemodialysis','catheter')
  537. this.propForm.optionList = []
  538. this.propForm.isMultiple = 2
  539. if (this.formValue.catheter != undefined || this.formValue.catheter != null) {
  540. if (this.formValue.catheter.length > 0) {
  541. this.propForm.result = this.formValue.catheter.split(",")
  542. } else {
  543. this.propForm.result = []
  544. }
  545. } else {
  546. this.propForm.result = []
  547. }
  548. this.propForm.click_ref = "catheter"
  549. break
  550. case 'complication':
  551. this.propForm.type = 4
  552. this.isShowDialog = false
  553. this.propForm.title = '并发症'
  554. this.propForm.isHasOther = 2
  555. this.visibility = true
  556. this.propForm.list = getDataConfig('hemodialysis','complication')
  557. this.propForm.optionList = []
  558. this.propForm.isMultiple = 2
  559. // this.propForm.result = this.formValue.complication.split(",")
  560. if (this.formValue.complication != undefined || this.formValue.complication != null) {
  561. if (this.formValue.complication.length > 0) {
  562. this.propForm.result = this.formValue.complication.split(",")
  563. } else {
  564. this.propForm.result = []
  565. }
  566. } else {
  567. this.propForm.result = []
  568. }
  569. this.propForm.click_ref = "complication"
  570. break
  571. case 'blood_access_part':
  572. this.propForm.type = 5
  573. this.isShowDialog = false
  574. this.propForm.title = '血管通路部位'
  575. this.propForm.isHasOther = 2
  576. this.visibility = true
  577. this.propForm.list = []
  578. this.propForm.optionList = this.$store.getters.vascular_access
  579. this.propForm.isMultiple = 1
  580. this.propForm.selectId = this.formValue.blood_access_part_id
  581. this.propForm.click_ref = "blood_access_part"
  582. break
  583. case 'blood_access_opera':
  584. this.propForm.type = 6
  585. this.isShowDialog = false
  586. this.propForm.title = '血管通路操作'
  587. this.propForm.isHasOther = 2
  588. this.visibility = true
  589. this.propForm.list = []
  590. this.propForm.optionList = this.$store.getters.vascular_access_desc
  591. this.propForm.isMultiple = 1
  592. this.propForm.selectId = this.formValue.blood_access_part_opera_id
  593. this.propForm.click_ref = "blood_access_opera"
  594. break
  595. case 'internal_fistula':
  596. this.propForm.type = 7
  597. this.isShowDialog = false
  598. this.propForm.title = '内瘘'
  599. this.visibility = true
  600. this.propForm.list = getDataConfig('hemodialysis','internal_fistula')
  601. this.propForm.optionList = []
  602. this.propForm.isMultiple = 2
  603. this.propForm.isHasOther = 2
  604. if (this.formValue.internal_fistula != undefined || this.formValue.internal_fistula != null) {
  605. if (this.formValue.internal_fistula.length > 0) {
  606. this.propForm.result = this.formValue.internal_fistula.split(",")
  607. } else {
  608. this.propForm.result = []
  609. }
  610. } else {
  611. this.propForm.result = []
  612. }
  613. this.propForm.click_ref = "internal_fistula"
  614. break
  615. case "internal_fistula_tremor_ac":
  616. this.propForm.type = 8
  617. this.isShowDialog = false
  618. this.propForm.title = '压迫后内瘘震颤'
  619. this.visibility = true
  620. this.propForm.list = []
  621. this.propForm.isHasOther = 2
  622. this.propForm.optionList = this.$store.getters.internal_fistula_tremor_ac
  623. this.propForm.isMultiple = 1
  624. this.propForm.selectId = this.formValue.internal_fistula_tremor_ac
  625. this.propForm.click_ref = "internal_fistula_tremor_ac"
  626. break;
  627. case "patient_gose":
  628. this.propForm.type = 9
  629. this.isShowDialog = false
  630. this.propForm.title = '患者去向'
  631. this.visibility = true
  632. this.propForm.list = []
  633. this.propForm.isHasOther = 2
  634. this.propForm.optionList = this.$store.getters.patient_gose
  635. this.propForm.isMultiple = 1
  636. this.propForm.selectId = this.formValue.patient_gose
  637. this.propForm.click_ref = "patient_gose"
  638. break;
  639. case 'observation_content':
  640. this.propForm.type = 10
  641. this.isShowDialog = false
  642. this.propForm.title = '交待病房护士/患者/陪人观察内容'
  643. this.visibility = true
  644. this.propForm.isHasOther = 2
  645. this.propForm.list = this.$store.getters.observation_content
  646. this.propForm.optionList = []
  647. this.propForm.isMultiple = 2
  648. if (this.formValue.observation_content != undefined || this.formValue.observation_content != null) {
  649. if (this.formValue.observation_content.length > 0) {
  650. this.propForm.result = this.formValue.observation_content.split(",")
  651. } else {
  652. this.propForm.result = []
  653. }
  654. } else {
  655. this.propForm.result = []
  656. }
  657. this.propForm.click_ref = "observation_content"
  658. break
  659. case 'dialysis_process':
  660. this.propForm.type = 11
  661. this.isShowDialog = false
  662. this.propForm.title = '透析过程'
  663. this.visibility = true
  664. this.propForm.isHasOther = 2
  665. this.propForm.list = []
  666. this.propForm.optionList = this.$store.getters.dialysis_process
  667. this.propForm.isMultiple = 1
  668. this.propForm.selectId = this.formValue.dialysis_process
  669. this.propForm.click_ref = "dialysis_process"
  670. break
  671. case 'in_advance_reason':
  672. this.propForm.type = 12
  673. this.isShowDialog = false
  674. this.propForm.title = '透析过程提前原因'
  675. this.visibility = true
  676. this.propForm.isHasOther = 2
  677. this.propForm.list = this.$store.getters.in_advance_reason
  678. this.propForm.optionList = []
  679. this.propForm.isMultiple = 2
  680. if (this.formValue.in_advance_reason != undefined || this.formValue.in_advance_reason != null) {
  681. if (this.formValue.in_advance_reason.length > 0) {
  682. this.propForm.result = this.formValue.in_advance_reason.split(",")
  683. } else {
  684. this.propForm.result = []
  685. }
  686. } else {
  687. this.propForm.result = []
  688. }
  689. this.propForm.click_ref = "in_advance_reason"
  690. break
  691. case 'hemostasis_opera':
  692. this.propForm.type = 13
  693. this.isShowDialog = false
  694. this.propForm.title = '内瘘管拔针后压迫止血操作'
  695. this.visibility = true
  696. this.propForm.isHasOther = 2
  697. this.propForm.list = []
  698. this.propForm.optionList = this.$store.getters.hemostasis_opera
  699. this.propForm.isMultiple = 1
  700. this.propForm.selectId = this.formValue.hemostasis_opera
  701. this.propForm.click_ref = "hemostasis_opera"
  702. break
  703. case 'tremor_noise':
  704. this.propForm.type = 14
  705. this.isShowDialog = false
  706. this.propForm.title = '内瘘震颤和血管杂音'
  707. this.visibility = true
  708. this.propForm.isHasOther = 2
  709. this.propForm.list = []
  710. this.propForm.optionList = this.$store.getters.tremor_noise
  711. this.propForm.isMultiple = 1
  712. this.propForm.selectId = this.formValue.tremor_noise
  713. this.propForm.click_ref = "tremor_noise"
  714. break
  715. case 'disequilibrium_syndrome':
  716. this.propForm.type = 15
  717. this.isShowDialog = false
  718. this.propForm.title = '失衡综合症'
  719. this.visibility = true
  720. this.propForm.list = []
  721. this.propForm.isHasOther = 2
  722. this.propForm.optionList = this.$store.getters.disequilibrium_syndrome
  723. this.propForm.isMultiple = 1
  724. this.propForm.selectId = this.formValue.disequilibrium_syndrome
  725. this.propForm.click_ref = "disequilibrium_syndrome"
  726. break
  727. case 'disequilibrium_syndrome_option':
  728. this.propForm.type = 16
  729. this.isShowDialog = false
  730. this.propForm.title = '失衡综合症情况'
  731. this.visibility = true
  732. this.propForm.isHasOther = 2
  733. this.propForm.list = this.$store.getters.disequilibrium_syndrome_option
  734. this.propForm.optionList = []
  735. this.propForm.isMultiple = 2
  736. if (this.formValue.disequilibrium_syndrome_option != undefined || this.formValue.disequilibrium_syndrome_option != null) {
  737. if (this.formValue.disequilibrium_syndrome_option.length > 0) {
  738. this.propForm.result = this.formValue.disequilibrium_syndrome_option.split(",")
  739. } else {
  740. this.propForm.result = []
  741. }
  742. } else {
  743. this.propForm.result = []
  744. }
  745. this.propForm.click_ref = "disequilibrium_syndrome_option"
  746. break
  747. case 'arterial_tube':
  748. this.propForm.type = 17
  749. this.isShowDialog = false
  750. this.propForm.title = '动脉管道'
  751. this.propForm.isHasOther = 2
  752. this.visibility = true
  753. this.propForm.list = []
  754. this.propForm.optionList = this.$store.getters.arterial_tube
  755. this.propForm.isMultiple = 1
  756. this.propForm.selectId = this.formValue.arterial_tube
  757. this.propForm.click_ref = "arterial_tube"
  758. break
  759. case 'intravenous_tube':
  760. this.propForm.type = 18
  761. this.isShowDialog = false
  762. this.propForm.title = '静脉管道'
  763. this.visibility = true
  764. this.propForm.list = []
  765. this.propForm.isHasOther = 2
  766. this.propForm.optionList = this.$store.getters.intravenous_tube
  767. this.propForm.isMultiple = 1
  768. this.propForm.selectId = this.formValue.intravenous_tube
  769. this.propForm.click_ref = "intravenous_tube"
  770. break
  771. case 'dialyzer':
  772. this.propForm.type = 19
  773. this.isShowDialog = false
  774. this.propForm.title = '透析器'
  775. this.visibility = true
  776. this.propForm.isHasOther = 2
  777. this.propForm.list = []
  778. this.propForm.optionList = this.$store.getters.dialyzer
  779. this.propForm.isMultiple = 1
  780. this.propForm.selectId = this.formValue.dialyzer
  781. this.propForm.click_ref = "dialyzer"
  782. break
  783. case 'puncture_point_oozing_blood':
  784. this.propForm.type = 20
  785. this.isShowDialog = false
  786. this.propForm.title = '拔针后穿刺点渗血'
  787. this.visibility = true
  788. this.propForm.isHasOther = 2
  789. this.propForm.list = []
  790. this.propForm.optionList = this.puncture_point_oozing_bloods
  791. this.propForm.isMultiple = 1
  792. this.propForm.selectId = this.formValue.puncture_point_oozing_blood
  793. this.propForm.click_ref = "puncture_point_oozing_blood"
  794. break
  795. case 'puncture_point_haematoma':
  796. this.propForm.type = 21
  797. this.isShowDialog = false
  798. this.propForm.title = '穿刺处血肿'
  799. this.visibility = true
  800. this.propForm.isHasOther = 2
  801. this.propForm.list = []
  802. this.propForm.optionList = this.puncture_point_haematomas
  803. this.propForm.isMultiple = 1
  804. this.propForm.selectId = this.formValue.puncture_point_haematoma
  805. this.propForm.click_ref = "puncture_point_haematoma"
  806. break
  807. case 'is_eat':
  808. this.propForm.type = 22
  809. this.isShowDialog = false
  810. this.propForm.title = '透析期间进食'
  811. this.visibility = true
  812. this.propForm.isHasOther = 2
  813. this.propForm.list = []
  814. this.propForm.optionList = this.eat
  815. this.propForm.isMultiple = 1
  816. this.propForm.selectId = this.formValue.is_eat
  817. this.propForm.click_ref = "is_eat"
  818. break
  819. }
  820. }, menuCancle: function () {
  821. this.visibility = false
  822. this.isShowDialog = true
  823. this.$nextTick(() => {
  824. if (this.$refs[this.propForm.click_ref] != undefined && this.$refs[this.propForm.click_ref] != null) {
  825. this.$refs[this.propForm.click_ref].scrollIntoView()
  826. }
  827. })
  828. }, menuComfirm: function (val) {
  829. this.visibility = false
  830. this.isShowDialog = true
  831. this.$nextTick(() => {
  832. if (this.$refs[this.propForm.click_ref] != undefined && this.$refs[this.propForm.click_ref] != null) {
  833. this.$refs[this.propForm.click_ref].scrollIntoView()
  834. }
  835. })
  836. switch (val.type) {
  837. case 1:
  838. this.formValue.cruor = val.result.join(',')
  839. break
  840. case 2:
  841. this.formValue.symptom_after_dialysis = val.result.join(',')
  842. break
  843. case 3:
  844. this.formValue.catheter = val.result.join(',')
  845. break
  846. case 4:
  847. this.formValue.complication = val.result.join(',')
  848. break
  849. case 5:
  850. this.formValue.blood_access_part_id = val.selectId
  851. break
  852. case 6:
  853. this.formValue.blood_access_part_opera_id = val.selectId
  854. break
  855. case 7:
  856. this.formValue.internal_fistula = val.result.join(',');
  857. break;
  858. case 8:
  859. this.formValue.internal_fistula_tremor_ac = val.selectId
  860. break;
  861. case 9:
  862. this.formValue.patient_gose = val.selectId
  863. break;
  864. case 10:
  865. this.formValue.observation_content = val.result.join(',');
  866. break;
  867. case 11:
  868. this.formValue.dialysis_process = val.selectId
  869. break;
  870. case 12:
  871. this.formValue.in_advance_reason = val.result.join(',');
  872. break;
  873. case 13:
  874. this.formValue.hemostasis_opera = val.selectId
  875. break;
  876. case 14:
  877. this.formValue.tremor_noise = val.selectId
  878. break;
  879. case 15:
  880. this.formValue.disequilibrium_syndrome = val.selectId
  881. break;
  882. case 16:
  883. this.formValue.disequilibrium_syndrome_option = val.result.join(',');
  884. break;
  885. case 17:
  886. this.formValue.arterial_tube = val.selectId
  887. break;
  888. case 18:
  889. this.formValue.intravenous_tube = val.selectId
  890. break;
  891. case 19:
  892. this.formValue.dialyzer = val.selectId
  893. break;
  894. case 20:
  895. if(val.selectId ==1) {
  896. this.formValue.puncture_point_oozing_blood = val.selectId
  897. this.puncture_point_oozing_blood_state = true
  898. }else if(val.selectId == 2){
  899. this.formValue.puncture_point_oozing_blood = val.selectId
  900. this.puncture_point_oozing_blood_state = false
  901. }else{
  902. this.formValue.puncture_point_oozing_blood =0
  903. }
  904. break;
  905. case 21:
  906. if(val.selectId ==1) {
  907. this.formValue.puncture_point_haematoma = val.selectId
  908. this.puncture_point_haematoma_state = true
  909. }else if(val.selectId == 2){
  910. this.formValue.puncture_point_haematoma = val.selectId
  911. this.puncture_point_haematoma_state = false
  912. }else{
  913. this.formValue.puncture_point_haematoma = 0
  914. }
  915. break;
  916. case 22:
  917. if(val.selectId ==1) {
  918. this.formValue.is_eat = val.selectId
  919. this.eat_state = true
  920. }else if(val.selectId == 2){
  921. this.formValue.is_eat = val.selectId
  922. this.eat_state = false
  923. }else{
  924. this.formValue.is_eat = 0
  925. }
  926. break;
  927. }
  928. }, QueryPartById: function (val) {
  929. let vascular_access_part_name = ''
  930. let vascular_access = this.$store.getters.vascular_access
  931. for (let i = 0; i < vascular_access.length; i++) {
  932. if (vascular_access[i].id == val) {
  933. vascular_access_part_name = vascular_access[i].name
  934. }
  935. }
  936. return vascular_access_part_name
  937. }, QueryOperaById: function (val) {
  938. let vascular_access_desc_name = ''
  939. var vascular_access_desc = this.$store.getters.vascular_access_desc
  940. for (let i = 0; i < vascular_access_desc.length; i++) {
  941. if (vascular_access_desc[i].id == val) {
  942. vascular_access_desc_name = vascular_access_desc[i].name
  943. break;
  944. }
  945. }
  946. return vascular_access_desc_name
  947. }, commitInfo: function () {
  948. let ParamsQuery = this.formValue
  949. ParamsQuery['patient'] = this.$route.query.patient_id
  950. ParamsQuery['record_date'] = this.record_date
  951. commitAssessmentAfterDislysis(ParamsQuery).then(response => {
  952. if (response.data.state == 0) {
  953. Toast.fail(response.data.msg);
  954. return false;
  955. } else {
  956. Toast.success('提交成功');
  957. this.$emit('did_update', response.data.data.assessmentAfterDislysis);
  958. for (const key in response.data.data.assessmentAfterDislysis) {
  959. this.record[key] = response.data.data.assessmentAfterDislysis[key]
  960. }
  961. }
  962. });
  963. },
  964. close: function () {
  965. this.$emit("close")
  966. }, openPicker: function () {
  967. this.$refs.picker.open();
  968. }, handleTimeConfirm: function (val) {
  969. val = val.replace("小时")
  970. val = val.replace("分钟")
  971. let timeArray = val.split(":")
  972. if (parseInt(timeArray[0].substring(0, 1)) == 0) {
  973. this.formValue.actual_treatment_hour = timeArray[0].charAt(timeArray[0].length - 1)
  974. } else {
  975. this.formValue.actual_treatment_hour = timeArray[0]
  976. }
  977. if (parseInt(timeArray[1].substring(0, 1)) == 0) {
  978. this.formValue.actual_treatment_minute = timeArray[1].charAt(timeArray[1].length - 1)
  979. } else {
  980. this.formValue.actual_treatment_minute = timeArray[1]
  981. }
  982. this.timeValue = this.formValue.actual_treatment_hour + "小时" + this.formValue.actual_treatment_minute + "分钟"
  983. }, open:function(){
  984. this.isShowDialog = true;
  985. this.visibility = false;
  986. this.$refs.picker.close();
  987. var dialogTop = document.querySelector('#dialogTop');
  988. if (dialogTop != null) {
  989. this.$nextTick(() => {
  990. dialogTop.scrollTop = 0;
  991. });
  992. }
  993. },getTremorNoise:function (id) {
  994. var tremor_noise = this.$store.getters.tremor_noise;
  995. var tremorNoiseName = "";
  996. for (let i = 0; i < tremor_noise.length; i++){
  997. if(tremor_noise[i].id == id){
  998. tremorNoiseName = tremor_noise[i].name
  999. }
  1000. }
  1001. return tremorNoiseName
  1002. },getDisequilibriumSyndrome:function (id) {
  1003. var disequilibrium_syndrome = this.$store.getters.disequilibrium_syndrome;
  1004. var disequilibriumSyndromeName = "";
  1005. for (let i = 0; i < disequilibrium_syndrome.length; i++){
  1006. if(disequilibrium_syndrome[i].id == id){
  1007. disequilibriumSyndromeName = disequilibrium_syndrome[i].name
  1008. }
  1009. }
  1010. return disequilibriumSyndromeName
  1011. },getDisequilibriumSyndromeOptionName:function (id) {
  1012. var disequilibrium_syndrome_option = this.$store.getters.disequilibrium_syndrome_option;
  1013. var disequilibriumSyndromeOptionName = "";
  1014. for (let i = 0; i < disequilibrium_syndrome_option.length; i++) {
  1015. if (disequilibrium_syndrome_option[i].id == id) {
  1016. disequilibriumSyndromeOptionName = disequilibrium_syndrome_option[i].name
  1017. }
  1018. }
  1019. return disequilibriumSyndromeOptionName
  1020. },getArterialTubeName:function (id) {
  1021. var arterial_tube = this.$store.getters.arterial_tube;
  1022. var arterialTubeName = "";
  1023. for (let i = 0; i < arterial_tube.length; i++) {
  1024. if (arterial_tube[i].id == id) {
  1025. arterialTubeName = arterial_tube[i].name
  1026. }
  1027. }
  1028. return arterialTubeName
  1029. },getIntravenousTubeName:function (id) {
  1030. var intravenous_tube = this.$store.getters.intravenous_tube;
  1031. var intravenousTubeName = "";
  1032. for (let i = 0; i < intravenous_tube.length; i++) {
  1033. if (intravenous_tube[i].id == id) {
  1034. intravenousTubeName = intravenous_tube[i].name
  1035. }
  1036. }
  1037. return intravenousTubeName
  1038. },getDialyzer:function (id) {
  1039. var dialyzer = this.$store.getters.dialyzer;
  1040. var dialyzerName = "";
  1041. for (let i = 0; i < dialyzer.length; i++) {
  1042. if (dialyzer[i].id == id) {
  1043. dialyzerName = dialyzer[i].name
  1044. }
  1045. }
  1046. return dialyzerName
  1047. },getDialysisProcess:function (id) {
  1048. var dialysis_process = this.$store.getters.dialysis_process;
  1049. var dialysisProcessName = "";
  1050. for (let i = 0; i < dialysis_process.length; i++) {
  1051. if (dialysis_process[i].id == id) {
  1052. dialysisProcessName = dialysis_process[i].name
  1053. }
  1054. }
  1055. return dialysisProcessName
  1056. }, getOpera:function (id) {
  1057. var hemostasis_opera = this.$store.getters.hemostasis_opera;
  1058. var hemostasisOperaName = "";
  1059. for (let i = 0; i < hemostasis_opera.length; i++){
  1060. if(hemostasis_opera[i].id == id){
  1061. hemostasisOperaName = hemostasis_opera[i].name
  1062. }
  1063. }
  1064. return hemostasisOperaName
  1065. },menuEmpty:function (val) {
  1066. this.visibility = false
  1067. this.isShowDialog = true
  1068. switch (val.type) {
  1069. case 5:
  1070. this.formValue.blood_access_part_id = ''
  1071. break
  1072. case 6:
  1073. this.formValue.blood_access_part_opera_id = ''
  1074. break
  1075. case 8:
  1076. this.formValue.internal_fistula_tremor_ac = ''
  1077. break;
  1078. case 9:
  1079. this.formValue.patient_gose =''
  1080. break;
  1081. case 11:
  1082. this.formValue.dialysis_process = ''
  1083. break;
  1084. case 13:
  1085. this.formValue.hemostasis_opera = ''
  1086. break;
  1087. case 14:
  1088. this.formValue.tremor_noise = ''
  1089. break;
  1090. case 15:
  1091. this.formValue.disequilibrium_syndrome = ''
  1092. break;
  1093. case 17:
  1094. this.formValue.arterial_tube = ''
  1095. break;
  1096. case 18:
  1097. this.formValue.intravenous_tube = ''
  1098. break;
  1099. case 19:
  1100. this.formValue.dialyzer = ''
  1101. break;
  1102. }
  1103. }
  1104. },
  1105. components: {
  1106. CheckBoxSubMenu,
  1107. }, created() {
  1108. let initHour = ''
  1109. let initMinute = ''
  1110. let tempHour = ''
  1111. let tempMinute = ''
  1112. if (this.record != null && this.record.id != '') {
  1113. for (const key in this.formValue) {
  1114. // console.log(key, this.record[key]);
  1115. this.formValue[key] = this.record[key];
  1116. }
  1117. } else if (this.last_record != null && this.last_record.id != "") {
  1118. this.$set(this.formValue, "patient_gose", this.last_record.patient_gose)
  1119. this.$set(this.formValue, "blood_access_part_id", this.last_record.blood_access_part_id)
  1120. this.$set(this.formValue, "blood_access_part_opera_id", this.last_record.blood_access_part_opera_id)
  1121. this.$set(this.formValue, "internal_fistula", this.last_record.internal_fistula)
  1122. this.$set(this.formValue, "internal_fistula_tremor_ac", this.last_record.internal_fistula_tremor_ac)
  1123. }
  1124. if (typeof(this.formValue.actual_treatment_hour) == "undefined") {
  1125. tempHour = ''
  1126. initHour = '00'
  1127. } else {
  1128. tempHour = this.formValue.actual_treatment_hour+"小时"
  1129. if (parseInt(this.formValue.actual_treatment_hour) < 10) {
  1130. initHour = '0' + this.formValue.actual_treatment_hour
  1131. } else {
  1132. initHour = this.formValue.actual_treatment_hour
  1133. }
  1134. }
  1135. if (typeof(this.formValue.actual_treatment_minute) == "undefined") {
  1136. tempMinute = ''
  1137. initMinute = '00'
  1138. } else {
  1139. tempMinute = this.formValue.actual_treatment_minute+"分钟"
  1140. if (parseInt(this.formValue.actual_treatment_minute) < 10) {
  1141. initMinute = '0' + this.formValue.actual_treatment_minute
  1142. } else {
  1143. initMinute = this.formValue.actual_treatment_hour
  1144. }
  1145. }
  1146. this.time = initHour + ":" + initMinute
  1147. this.timeValue = tempHour + tempMinute
  1148. var date = this.$route.query && this.$route.query.date;
  1149. date *= 1000;
  1150. var newDate = new Date(date);
  1151. var y = newDate.getFullYear();
  1152. var m = newDate.getMonth() + 1;
  1153. var d = newDate.getDate();
  1154. if (isNaN(y) || isNaN(m) || isNaN(d)) {
  1155. newDate = new Date();
  1156. y = newDate.getFullYear();
  1157. m = newDate.getMonth() + 1;
  1158. d = newDate.getDate();
  1159. }
  1160. this.record_date = y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
  1161. this.puncture_point_oozing_blood_state = this.formValue.puncture_point_oozing_blood == 0
  1162. this.puncture_point_haematoma_state = this.formValue.puncture_point_haematoma == 0
  1163. this.eat_state = this.formValue.is_eat == 0
  1164. },
  1165. };
  1166. </script>
  1167. <style style="stylesheet/scss" lang="scss" scoped>
  1168. .textarea {
  1169. width: 100%;
  1170. height: 2.4rem;
  1171. line-height: 0.6rem;
  1172. color: $pgh-color;
  1173. font-size: 0.28rem;
  1174. padding-left: 0.36rem;
  1175. border: none;
  1176. border-bottom: 1px #e5e5e5 solid;
  1177. }
  1178. .DialogContent{
  1179. padding-bottom: 2rem !important;
  1180. }
  1181. </style>