血透系统PC前端

dialysisPrintOrderFive.vue 95KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941
  1. <template>
  2. <div id="dialysis-print-box-1">
  3. <div id="dialysis-print-box-1-1" :class="(this.monitors.length > 8 && this.print_length == 8) || (this.monitors.length > 9 && this.print_length == 9) ? 'margin-bottom-900 dialysis-print-order print-template-two print_page_main_content':'margin-bottom-50 dialysis-print-order print-template-two print_page_main_content'" >
  4. <div class="order-yy-name">{{orgname}}</div>
  5. <div class="order-title">血液净化专科护理记录单</div>
  6. <div class="row">
  7. <div class="inline_block">
  8. 科室:
  9. <check-box text="门诊透析" :checked="patientInfo_source_1 "></check-box>
  10. &nbsp;
  11. <check-box text="住院" :checked="patientInfo_source_2"></check-box>
  12. </div>
  13. <div class="inline_block" style="margin-left: 5px;">
  14. 住院号:
  15. <div class="under_line" style="width: 70px;text-align: left" v-if="patientInfo.admission_number">
  16. {{patientInfo.admission_number}}
  17. </div>
  18. <div class="under_line" style="width: 70px;text-align: left" v-else>
  19. {{'/'}}
  20. </div>
  21. </div>
  22. <div class="inline_block" style="margin-left:10px;">
  23. 姓名:
  24. <div class="under_line" style="width: 50px;text-align: left">{{patientInfo.name}}</div>
  25. </div>
  26. <div class="inline_block" style="margin-left: 10px;">
  27. 性别:
  28. <check-box text="男" :checked="patientInfo_gender_1"></check-box>
  29. &nbsp;
  30. <check-box text="女" :checked="patientInfo_gender_2"></check-box>
  31. </div>
  32. <div class="inline_block" style="margin-left: 10px;">
  33. 年龄:
  34. <div class="under_line" style="width: 30px;text-align: left">{{getAge(patientInfo)}}</div>
  35. </div>
  36. <div class="inline_block" style="margin-left: 10px;">
  37. 诊断:
  38. <div class="under_line" style="width: 180px;text-align: left">{{patientInfo.diagnose}}</div>
  39. </div>
  40. </div>
  41. <div class="row" :class="(this.monitors.length > 8 && this.print_length == 8) || (this.monitors.length > 9 && this.print_length == 9) ? 'margin-bottom-300':''">
  42. <table class="proj_table" >
  43. <tbody>
  44. <tr><td colspan="2">一、透析前护理评估:</td></tr>
  45. <tr>
  46. <td colspan="2">
  47. <div class="row" style="padding: 2px 0;line-height:19px;">
  48. <div class="inline_block">
  49. 入科方式:
  50. <check-box v-for="item,index in way_arr" :key="index" :text="item.name" :checked="receiverTreatmentAccess.way==item.id?true:false"></check-box>
  51. <!--<check-box text="步行" :checked="receiverTreatmentAccess.way==1?true:false"></check-box>-->
  52. <!--<check-box text="扶行" :checked="receiverTreatmentAccess.way==2?true:false"></check-box>-->
  53. <!--<check-box text="轮椅" :checked="receiverTreatmentAccess.way==3?true:false"></check-box>-->
  54. <!--<check-box text="平车" :checked="receiverTreatmentAccess.way==4?true:false"></check-box>-->
  55. </div>
  56. <div class="inline_block" style="margin-left: 30px;">
  57. 体温:
  58. <div class="under_line" style="width: 30px;text-align: left">
  59. {{predialysis.temperature?predialysis.temperature:''}}
  60. </div>℃
  61. </div>
  62. <div class="inline_block" style="margin-left: 30px;">
  63. 血压:
  64. <div class="under_line" style="width: 50px;text-align: left">
  65. {{predialysis.systolic_blood_pressure?predialysis.systolic_blood_pressure:''}}/{{predialysis.diastolic_blood_pressure?predialysis.diastolic_blood_pressure:''}}
  66. </div>
  67. </div>
  68. <div class="inline_block" style="margin-left: 30px;">
  69. 透析频次:
  70. <div class="under_line" style="width: 30px;text-align: left">
  71. {{predialysis.dialysis_count?predialysis.dialysis_count:''}}
  72. </div>
  73. 次/周
  74. </div>
  75. <div class="inline_block" style="margin-left: 30px;">
  76. 透析机号:
  77. <div class="under_line" style="width: 40px;text-align: left">{{dialysisOrder&&dialysisOrder.DeviceNumber&&dialysisOrder.DeviceNumber.number.length > 0?dialysisOrder.DeviceNumber.number:patientInfo.DialysisSchedule.device_number.number}}</div>
  78. </div>
  79. </div>
  80. <div class="row" style="padding: 2px 0;line-height:19px;">
  81. <div class="inline_block" >
  82. 意识:
  83. <check-box v-for="item,index in consciousness_arr" :key="index" :text="item.name" :checked="receiverTreatmentAccess.consciousness==item.id?true:false"></check-box>
  84. <!--<check-box text="清醒" :checked="receiverTreatmentAccess.consciousness==1?true:false"></check-box>-->
  85. <!--<check-box text="嗜睡" :checked="receiverTreatmentAccess.consciousness==2?true:false"></check-box>-->
  86. <!--<check-box text="昏迷" :checked="receiverTreatmentAccess.consciousness==3?true:false"></check-box>-->
  87. <!--<check-box text="模糊" :checked="receiverTreatmentAccess.consciousness==4?true:false"></check-box>-->
  88. </div>
  89. <div class="inline_block" style="margin-left: 5px;">
  90. 活动性出血:
  91. <check-box text="无" :checked="predialysis.is_hemorrhage==2?true:false"></check-box>
  92. <check-box text="异常" :checked="predialysis.is_hemorrhage==1?true:false"></check-box>
  93. (&nbsp;
  94. <check-box text="穿刺点渗血" :checked="predialysis.is_hemorrhage==1&&predialysis.hemorrhage.indexOf('穿刺点渗血')>-1?true:false"></check-box>
  95. <check-box text="牙龈出血" :checked="predialysis.is_hemorrhage==1&&predialysis.hemorrhage.indexOf('牙龈出血')>-1?true:false"></check-box>
  96. <check-box text="消化道出血" :checked="predialysis.is_hemorrhage==1&&predialysis.hemorrhage.indexOf('消化道出血')>-1?true:false"></check-box>
  97. <check-box text="女性经期" :checked="predialysis.is_hemorrhage==1&&predialysis.hemorrhage.indexOf('女性经期')>-1?true:false"></check-box>
  98. 其他:
  99. <div class="under_line" style="width: 70px;text-align: left">
  100. <span v-if="predialysis.is_hemorrhage==1">
  101. {{predialysis.hemorrhage_other}}
  102. </span>
  103. </div>
  104. &nbsp;)
  105. </div>
  106. </div>
  107. <div class="row" style="padding: 2px 0;line-height:19px;">
  108. <div class="inline_block">
  109. 血管通路:<br>
  110. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(内瘘):
  111. <check-box text="自体内瘘" :checked="predialysis.blood_access_internal_fistula.indexOf('自体内瘘')>-1?true:false"></check-box>
  112. <check-box text="人工血管内瘘" :checked="predialysis.blood_access_internal_fistula.indexOf('人工血管内瘘')>-1?true:false"></check-box>
  113. <check-box text="正常" :checked="predialysis.blood_access_internal_fistula.indexOf('正常')>-1?true:false"></check-box>
  114. <check-box text="震颤" :checked="predialysis.blood_access_internal_fistula.indexOf('震颤')>-1?true:false"></check-box>
  115. <check-box text="堵塞" :checked="predialysis.blood_access_internal_fistula.indexOf('堵塞')>-1?true:false"></check-box>
  116. <check-box text="血肿" :checked="predialysis.blood_access_internal_fistula.indexOf('血肿')>-1?true:false"></check-box>
  117. <check-box text="淤血" :checked="predialysis.blood_access_internal_fistula.indexOf('淤血')>-1?true:false"></check-box>
  118. <check-box text="感染" :checked="predialysis.blood_access_internal_fistula.indexOf('感染')>-1?true:false"></check-box>
  119. </div>
  120. <div class="inline_block" style="margin-left: 10px;">
  121. 其它:
  122. <div class="under_line" style="width: 150px;text-align: left">{{predialysis.internal_fistula_other}}</div>
  123. </div>
  124. </div>
  125. <div class="row" style="padding: 2px 0;line-height:19px;">
  126. <div class="inline_block">
  127. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;穿刺方式:
  128. <check-box text="绳梯" :checked="predialysis.puncture_way == 1?true:false"></check-box>
  129. <check-box text="扣眼" :checked="predialysis.puncture_way == 2?true:false"></check-box>
  130. <check-box text="区域" :checked="predialysis.puncture_way == 3?true:false"></check-box>
  131. </div>
  132. <div class="inline_block" style="margin-left: 30px;">
  133. 感染:
  134. <check-box text="无" :checked="predialysis.is_infect == 1?true:false"></check-box>
  135. <check-box text="有" :checked="predialysis.is_infect == 2?true:false"></check-box>
  136. <div class="inline_block">
  137. 外露:
  138. <div class="under_line" style="width: 50px;text-align: left">{{predialysis.exposed?predialysis.exposed:''}}</div>cm
  139. </div>
  140. <div class="inline_block">
  141. 其它:
  142. <div class="under_line" style="width: 150px;text-align: left">{{predialysis.venous_catheterization_part_other}}</div>
  143. </div>
  144. </div>
  145. </div>
  146. <div class="row" style="padding: 2px 0;line-height:19px;">
  147. <div class="inline_block">
  148. 中心静脉置管:
  149. <check-box text="长期" :checked="predialysis.venous_catheterization == 1?true:false"></check-box>
  150. <check-box text="临时" :checked="predialysis.venous_catheterization == 2?true:false"></check-box>
  151. &emsp;位置:
  152. <check-box text="锁骨下" :checked="predialysis.venous_catheterization_part == 1?true:false"></check-box>
  153. <check-box text="颈静脉" :checked="predialysis.venous_catheterization_part == 2?true:false"></check-box>
  154. <check-box text="股静脉" :checked="predialysis.venous_catheterization_part == 3?true:false"></check-box>
  155. <div class="inline_block">
  156. 其它:
  157. <div class="under_line" style="width: 50px;text-align: left">
  158. <span>{{predialysis.venous_catheterization_part_other}}</span>
  159. </div>
  160. </div>
  161. </div>
  162. </div>
  163. <div class="row" style="padding: 2px 0;line-height:19px;">
  164. <div class="inline_block">
  165. 中心静脉导管:
  166. <check-box text="正常" :checked="predialysis.ductus_arantii.indexOf('正常')>-1?true:false"></check-box>
  167. <check-box text="不畅" :checked="predialysis.ductus_arantii.indexOf('不畅')>-1?true:false"></check-box>
  168. <check-box text="血流不足" :checked="predialysis.ductus_arantii.indexOf('血流不足')>-1?true:false"></check-box>
  169. (<check-box text="正接" :checked="predialysis.ductus_arantii.indexOf('正接')>-1?true:false"></check-box>/
  170. <check-box text="反接" :checked="predialysis.ductus_arantii.indexOf('反接')>-1?true:false"></check-box>)
  171. <check-box text="血栓" :checked="predialysis.ductus_arantii.indexOf('血栓')>-1?true:false"></check-box>
  172. <check-box text="缝线脱落" :checked="predialysis.ductus_arantii.indexOf('缝线脱落')>-1?true:false"></check-box>
  173. <check-box text="导管脱落" :checked="predialysis.ductus_arantii.indexOf('导管脱落')>-1?true:false"></check-box>
  174. <check-box text="感染" :checked="predialysis.ductus_arantii.indexOf('感染')>-1?true:false"></check-box>
  175. <check-box text="破损" :checked="predialysis.ductus_arantii.indexOf('破损')>-1?true:false"></check-box>
  176. </div>
  177. <div class="inline_block">
  178. 其它:
  179. <div class="under_line" style="width: 100px;text-align: left">
  180. <span>{{predialysis.ductus_arantii_other}}</span>
  181. </div>
  182. </div>
  183. </div>
  184. <div class="row" style="padding: 2px 0;line-height:19px;">
  185. <div class="inline_block">
  186. 皮肤:
  187. <check-box text="完整" :checked="predialysis.skin==1?true:false"></check-box>
  188. <check-box text="干燥" :checked="predialysis.skin==2?true:false"></check-box>
  189. <check-box text="瘙痒" :checked="predialysis.skin==3?true:false"></check-box>
  190. <check-box text="菲薄" :checked="predialysis.skin==4?true:false"></check-box>/
  191. <check-box text="水肿" :checked="predialysis.skin==5?true:false"></check-box>
  192. <check-box text="皮疹" :checked="predialysis.skin==6?true:false"></check-box>
  193. <check-box text="出血点" :checked="predialysis.skin == 7?true:false"></check-box>
  194. <check-box text="压疮" :checked="predialysis.skin == 8 ? true:false"></check-box>
  195. <check-box text="皮下淤血" :checked="predialysis.skin == 9 ?true:false"></check-box>
  196. <div class="inline_block">
  197. 其它:
  198. <div class="under_line" style="width: 200px;text-align: left">
  199. <span>{{predialysis.skin_other}}</span>
  200. </div>
  201. </div>
  202. </div>
  203. </div>
  204. <div class="row" style="padding: 2px 0;line-height:19px;">
  205. <div class="inline_block">
  206. 急诊:
  207. <check-box text="急性心衰" :checked="predialysis.emergency_treatment == 1?true:false"></check-box>
  208. <check-box text="高血钾" :checked="predialysis.emergency_treatment == 2?true:false"></check-box>
  209. <check-box text="重症酸中毒" :checked="predialysis.emergency_treatment == 3?true:false"></check-box>
  210. <div class="inline_block">
  211. 其它:
  212. <div class="under_line" style="width: 150px;text-align: left">
  213. <span>{{predialysis.emergency_treatment_other}}</span>
  214. </div>
  215. </div>
  216. </div>
  217. <div class="inline_block">
  218. 病情:
  219. <check-box v-for="item, index in sick_condition_arr" :key="index" :text="item.name" :checked="receiverTreatmentAccess.sick_condition == item.id?true:false"></check-box>
  220. <!--<check-box text="一般" :checked="receiverTreatmentAccess.sick_condition == 1?true:false"></check-box>-->
  221. <!--<check-box text="重" :checked="receiverTreatmentAccess.sick_condition == 2?true:false"></check-box>-->
  222. <!--<check-box text="危" :checked="receiverTreatmentAccess.sick_condition == 3?true:false"></check-box>-->
  223. <div class="inline_block">
  224. 其它:
  225. <div class="under_line" style="width: 100px;text-align: left">
  226. <span>{{receiverTreatmentAccess.sick_condition_other}}</span>
  227. </div>
  228. </div>
  229. </div>
  230. </div>
  231. </td>
  232. </tr>
  233. <tr>
  234. <td colspan="2">
  235. <div class="row" style="padding: 2px 0;line-height:19px;">
  236. <div class="inline_block">
  237. 营养状况评估:&nbsp;食欲:
  238. <check-box v-for="item, index in appetite_arr" :key="item.id" :text="item.name" :checked="receiverTreatmentAccess.appetite == item.id?true:false"></check-box>
  239. <!--<check-box text="正常" :checked="receiverTreatmentAccess.appetite == 1?true:false"></check-box>-->
  240. <!--<check-box text="下降" :checked="receiverTreatmentAccess.appetite == 2?true:false"></check-box>-->
  241. </div>
  242. <div class="inline_block">
  243. &emsp; 摄入量:
  244. <check-box v-for="item, index in intake_arr" :key="index" :text="item.name" :checked="receiverTreatmentAccess.intake == item.id?true:false"></check-box>
  245. <!--<check-box text="正常" :checked="receiverTreatmentAccess.intake == 1?true:false"></check-box>-->
  246. <!--<check-box text="减少" :checked="receiverTreatmentAccess.intake == 2?true:false"></check-box>-->
  247. </div>
  248. <div class="inline_block">
  249. &emsp;营养状况:
  250. <check-box v-for="item, index in nutrition_arr" :key="index" :text="item.name" :checked="receiverTreatmentAccess.nutrition == item.id?true:false"></check-box>
  251. <!--<check-box text="正常" :checked="receiverTreatmentAccess.nutrition == 1?true:false"></check-box>-->
  252. <!--<check-box text="营养不良" :checked="receiverTreatmentAccess.nutrition == 2?true:false"></check-box>-->
  253. </div>
  254. </div>
  255. <div class="row" style="padding: 2px 0; line-height:19px;">
  256. <div class="inline_block">
  257. 心理评估:
  258. <check-box text="正常" :checked="receiverTreatmentAccess.psychological_assessment == 1?true:false"></check-box>
  259. <check-box text="异常" :checked="receiverTreatmentAccess.psychological_assessment == 2?true:false"></check-box>
  260. </div>
  261. <div class="inline_block">
  262. 其它:
  263. <div class="under_line" style="width: 100px;">
  264. <span >{{receiverTreatmentAccess.psychological_other}}</span>
  265. </div>
  266. </div>
  267. </div>
  268. <div class="row" style="padding: 2px 0;line-height:19px;">
  269. <div class="inline_block">
  270. 跌倒风险:
  271. <check-box text="无" :checked="receiverTreatmentAccess.danger_level == 1?true:false"></check-box>
  272. <check-box text="低风险" :checked="receiverTreatmentAccess.danger_level == 2?true:false"></check-box>
  273. <check-box text="中度风险" :checked="receiverTreatmentAccess.danger_level == 3?true:false"></check-box>
  274. <check-box text="高风险" :checked="receiverTreatmentAccess.danger_level == 4?true:false"></check-box>
  275. </div>
  276. <div class="inline_block">
  277. 跌倒风险预防措施:
  278. <check-box text="镇静剂" :checked="receiverTreatmentAccess.precaution == 1?true:false"></check-box>
  279. <check-box text="约束带" :checked="receiverTreatmentAccess.precaution == 2?true:false"></check-box>
  280. <check-box text="床栏" :checked="receiverTreatmentAccess.precaution == 3?true:false"></check-box>
  281. <check-box text="加强宣传" :checked="receiverTreatmentAccess.precaution == 4?true:false"></check-box>
  282. <div class="inline_block">
  283. 其它:
  284. <div class="under_line" style="width: 100px;">
  285. <span >{{receiverTreatmentAccess.precaution_other}}</span>
  286. </div>
  287. </div>
  288. </div>
  289. </div>
  290. </td>
  291. </tr>
  292. <tr>
  293. <td style="padding: 0; position: relative;" colspan="2">
  294. <table class="inside_table">
  295. <tbody>
  296. <tr><td colspan="12" style="font-size:16px;padding: 6px 8px;line-height: 30px;text-align:left;">二、透析中护理记录:</td></tr>
  297. <tr>
  298. <td width="100">时间</td>
  299. <td width="30">T<br>C°</td>
  300. <td width="30">P<br/>次/分</td>
  301. <td width="30">R<br/>次/分</td>
  302. <td width="100">BP<br/>mmHg</td>
  303. <td width="60">静脉压/动脉压<br/>mmHg</td>
  304. <td width="80">血流量<br/>ml/min</td>
  305. <td width="90">超滤量累计L</td>
  306. <td width="90">置换液流量ml/h</td>
  307. <td width="80">钠浓度<br/>mmol/L</td>
  308. <td width="240">病情特殊情况处理<br/>及专科护理措施记录</td>
  309. <td width="100">护士签名</td>
  310. </tr>
  311. <tr v-if="this.predialysis.systolic_blood_pressure != 0&&this.predialysis.diastolic_blood_pressure != 0||this.predialysis.remark.length > 0 || predialysis.pulse_frequency != 0 || predialysis.breathing_rate != 0 || predialysis.temperature != 0">
  312. <td>{{'透析前'}}</td>
  313. <td>{{predialysis.temperature?predialysis.temperature:''}}</td>
  314. <td>{{predialysis.pulse_frequency?predialysis.pulse_frequency:''}}</td>
  315. <td>{{predialysis.breathing_rate?predialysis.breathing_rate:''}}</td>
  316. <td>{{predialysis.systolic_blood_pressure?predialysis.systolic_blood_pressure:''}}/{{predialysis.diastolic_blood_pressure?predialysis.diastolic_blood_pressure:''}}</td>
  317. <td>{{''}}/{{''}}</td>
  318. <td>{{''}}</td>
  319. <td>{{''}}</td>
  320. <td>{{''}}</td>
  321. <td>{{''}}</td>
  322. <td style="line-height:16px;padding:0px;"> <div style="height:48px;line-height:48px; overflow:hidden;"><span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;"> {{predialysis.remark}}</span></div></td>
  323. <td>
  324. <span v-if="setAdminUserES(predialysis.creater) == ''">{{getAdminUser(predialysis.creater)}}</span>
  325. <img class="es-img" :src="setAdminUserES(predialysis.creater)" alt="" srcset="" v-else>
  326. </td>
  327. </tr>
  328. <tr v-for="(monitor,index) in monitors" :key="index">
  329. <td>{{getTime(monitor.operate_time,'{h}:{i}')}}</td>
  330. <td>{{monitor.temperature?monitor.temperature:''}}</td>
  331. <td>{{monitor.pulse_frequency?monitor.pulse_frequency:''}}</td>
  332. <td>{{monitor.breathing_rate?monitor.breathing_rate:''}}</td>
  333. <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
  334. <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
  335. <td>{{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
  336. <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:'/'}}</td>
  337. <td>{{monitor.displacement_flow_quantity?monitor.displacement_flow_quantity:''}}</td>
  338. <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
  339. <td style="line-height:16px;padding:0px;"><div style="height:48px;line-height:48px; overflow:hidden;"><span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">{{monitor.symptom}} &nbsp;{{monitor.dispose}} &nbsp;{{monitor.result}} </span> </div></td>
  340. <td>
  341. <span v-if="setAdminUserES(monitor.monitoring_nurse) == ''">{{getAdminUser(monitor.monitoring_nurse)}}</span>
  342. <img class="es-img" :src="setAdminUserES(monitor.monitoring_nurse)" alt="" srcset="" v-else>
  343. </td>
  344. </tr>
  345. </tbody>
  346. </table>
  347. <div v-if="(this.monitors.length > 8 && this.print_length == 8) || (this.monitors.length > 9 && this.print_length == 9)" class="print-yema">1</div>
  348. </td>
  349. </tr>
  350. </tbody>
  351. </table>
  352. </div>
  353. <template v-if="(this.monitors.length > 8 && this.print_length == 8) || (this.monitors.length > 9 && this.print_length == 9)">
  354. <div class="order-yy-name">{{orgname}}</div>
  355. <div class="order-title">血液净化专科护理记录单</div>
  356. <div class="row" style="margin-top: 15px">
  357. <div class="inline_block">
  358. 科室:
  359. <check-box text="门诊透析" :checked="patientInfo_source_1 "></check-box>
  360. &nbsp;
  361. <check-box text="住院" :checked="patientInfo_source_2"></check-box>
  362. </div>
  363. <div class="inline_block" style="margin-left: 5px;">
  364. 住院号:
  365. <div class="under_line" style="width: 70px;text-align: left" v-if="patientInfo.admission_number">
  366. {{patientInfo.admission_number}}
  367. </div>
  368. <div class="under_line" style="width: 70px;text-align: left" v-else>
  369. {{'/'}}
  370. </div>
  371. </div>
  372. <div class="inline_block" style="margin-left:10px;">
  373. 姓名:
  374. <div class="under_line" style="width: 50px;text-align: left">{{patientInfo.name}}</div>
  375. </div>
  376. <div class="inline_block" style="margin-left: 10px;">
  377. 性别:
  378. <check-box text="男" :checked="patientInfo_gender_1"></check-box>
  379. &nbsp;
  380. <check-box text="女" :checked="patientInfo_gender_2"></check-box>
  381. </div>
  382. <div class="inline_block" style="margin-left: 10px;">
  383. 年龄:
  384. <div class="under_line" style="width: 30px;text-align: left">{{getAge(patientInfo)}}</div>
  385. </div>
  386. <div class="inline_block" style="margin-left: 10px;">
  387. 诊断:
  388. <div class="under_line" style="width: 180px;text-align: left">{{patientInfo.diagnose}}</div>
  389. </div>
  390. </div>
  391. </template>
  392. <div class="row" :style="(this.monitors.length <= 8 && this.print_length == 8) || (this.monitors.length <= 9 && this.print_length == 9) ? 'margin-top:-11px;position: relative;':'position: relative;'">
  393. <table class="proj_table">
  394. <tbody>
  395. <tr v-if="this.monitors2.length > 0">
  396. <td style="padding: 0;" colspan="2">
  397. <table class="inside_table">
  398. <tbody>
  399. <tr><td colspan="12" style="font-size:16px;padding: 6px 8px;line-height: 30px;text-align:left;">二、透析中护理记录:</td></tr>
  400. <tr>
  401. <td width="100">时间</td>
  402. <td width="30">T<br>C°</td>
  403. <td width="30">P<br/>次/分</td>
  404. <td width="30">R<br/>次/分</td>
  405. <td width="100">BP<br/>mmHg</td>
  406. <td width="60">静脉压/动脉压<br/>mmHg</td>
  407. <td width="80">血流量<br/>ml/min</td>
  408. <td width="90">超滤量累计L</td>
  409. <td width="90">置换液流量ml/h</td>
  410. <td width="80">钠浓度<br/>mmol/L</td>
  411. <td width="240">病情特殊情况处理<br/>及专科护理措施记录</td>
  412. <td width="100">护士签名</td>
  413. </tr>
  414. <tr v-for="(monitor,index) in monitors2" :key="index">
  415. <td>{{getTime(monitor.operate_time,'{h}:{i}')}}</td>
  416. <td>{{monitor.temperature?monitor.temperature:''}}</td>
  417. <td>{{monitor.pulse_frequency?monitor.pulse_frequency:''}}</td>
  418. <td>{{monitor.breathing_rate?monitor.breathing_rate:''}}</td>
  419. <td>{{monitor.systolic_blood_pressure?monitor.systolic_blood_pressure:''}}/{{monitor.diastolic_blood_pressure?monitor.diastolic_blood_pressure:''}}</td>
  420. <td>{{monitor.venous_pressure?monitor.venous_pressure:''}}/{{monitor.arterial_pressure?monitor.arterial_pressure:''}}</td>
  421. <td>{{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
  422. <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:'/'}}</td>
  423. <td>{{monitor.displacement_flow_quantity?monitor.displacement_flow_quantity:''}}</td>
  424. <td>{{monitor.sodium_concentration?monitor.sodium_concentration:''}}</td>
  425. <td style="line-height:16px;"><div style="height:48px;line-height:48px; overflow:hidden;"><span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">{{monitor.symptom}} &nbsp;{{monitor.dispose}} &nbsp;{{monitor.result}}</span></div> </td>
  426. <td>
  427. <span v-if="setAdminUserES(monitor.monitoring_nurse) == ''">{{getAdminUser(monitor.monitoring_nurse)}}</span>
  428. <img class="es-img" :src="setAdminUserES(monitor.monitoring_nurse)" alt="" srcset="" v-else>
  429. </td>
  430. </tr>
  431. </tbody>
  432. </table>
  433. </td>
  434. </tr>
  435. <tr><td colspan="2" style="font-size:16px;padding: 6px 8px;line-height: 30px;text-align:left;">三、透析后护理记录</td></tr>
  436. <tr>
  437. <td>
  438. <div class="row" style="padding: 2px 0;line-height:19px;">
  439. <div class="inline_block">
  440. 透析过程:
  441. <check-box text="完成" :checked="afterdialysis.dialysis_process==1?true:false"></check-box>
  442. <check-box text="提前" :checked="afterdialysis.dialysis_process==2?true:false"></check-box>
  443. <div class="inline_block">
  444. <div class="under_line" style="width: 30px;text-align: left">
  445. <span v-if="afterdialysis.dialysis_process==2">{{afterdialysis.in_advance_minute}}</span>
  446. </div>
  447. min
  448. </div>
  449. </div>
  450. <div class="inline_block">
  451. &emsp;原因:
  452. <check-box text="心梗" :checked="afterdialysis.in_advance_reason.indexOf('心梗')>-1?true:false"></check-box>
  453. <check-box text="心律失常" :checked="afterdialysis.in_advance_reason.indexOf('心律失常')>-1?true:false"></check-box>
  454. <check-box text="低血压" :checked="afterdialysis.in_advance_reason.indexOf('低血压')>-1?true:false"></check-box>
  455. <check-box text="血流不止" :checked="afterdialysis.in_advance_reason.indexOf('血流不止')>-1?true:false"></check-box>
  456. </div>
  457. <div class="inline_block">
  458. &emsp; 其他原因:
  459. <div class="inline_block">
  460. <div class="under_line" style="width: 150px;text-align: left">
  461. <span v-if="afterdialysis.in_advance_reason.length > 0">{{afterdialysis.in_advance_reason_other}}</span>
  462. </div>
  463. </div>
  464. </div>
  465. </div>
  466. <div class="row" style="padding: 2px 0;line-height:19px;">
  467. <div class="inline_block">
  468. 内瘘管拔针后压迫止血时间:
  469. <div class="inline_block">
  470. <div class="under_line" style="width: 30px;text-align: left">
  471. <span v-if="afterdialysis.hemostasis_minute">{{afterdialysis.hemostasis_minute}}</span>
  472. </div>
  473. min
  474. </div>
  475. </div>
  476. <div class="inline_block">
  477. <check-box text="需要护士" :checked="afterdialysis.hemostasis_opera == 1?true:false"></check-box>
  478. <check-box text="他人协助" :checked="afterdialysis.hemostasis_opera == 2?true:false"></check-box>
  479. <check-box text="自己压迫" :checked="afterdialysis.hemostasis_opera == 3?true:false"></check-box>
  480. </div>
  481. <div class="inline_block" style="margin-left:30px;">
  482. 透析期间进食:
  483. <check-box text="无" :checked="afterdialysis.is_eat == 1?true:false"></check-box>
  484. <check-box text="有" :checked="afterdialysis.is_eat == 2?true:false"></check-box>
  485. </div>
  486. <!--<div class="inline_block" style="margin-left: 30px;">-->
  487. <!--实际超滤量:-->
  488. <!--<div class="under_line" style="width: 50px;">-->
  489. <!--{{afterdialysis.actual_ultrafiltration?afterdialysis.actual_ultrafiltration:'/'}}-->
  490. <!--</div>-->
  491. <!--L-->
  492. <!--</div>-->
  493. </div>
  494. <div class="row" style="padding: 2px 0;line-height:19px;">
  495. <div class="inline_block">
  496. 内瘘震颤和血管杂音:
  497. <check-box text="存在" :checked="afterdialysis.tremor_noise==1?true:false"></check-box>
  498. <check-box text="减弱" :checked="afterdialysis.tremor_noise==2?true:false"></check-box>
  499. <check-box text="不存在" :checked="afterdialysis.tremor_noise==3?true:false"></check-box>
  500. </div>
  501. <div class="inline_block">
  502. &emsp;失衡综合症:
  503. <check-box text="无" :checked="afterdialysis.disequilibrium_syndrome==1?true:false"></check-box>
  504. <check-box text="有" :checked="afterdialysis.disequilibrium_syndrome==2?true:false"></check-box>
  505. </div>
  506. <div class="inline_block">
  507. <check-box text="头晕" :checked="afterdialysis.disequilibrium_syndrome_option.indexOf('头晕')>-1?true:false"></check-box>
  508. <check-box text="头痛" :checked="afterdialysis.disequilibrium_syndrome_option.indexOf('头痛')>-1?true:false"></check-box>
  509. <check-box text="呕吐" :checked="afterdialysis.disequilibrium_syndrome_option.indexOf('呕吐')>-1?true:false"></check-box>
  510. <check-box text="低血压" :checked="afterdialysis.disequilibrium_syndrome_option.indexOf('低血压')>-1?true:false"></check-box>
  511. </div>
  512. </div>
  513. <div class="row" style="padding: 2px 0;line-height:19px;">
  514. <div class="inline_block">
  515. 透析器及血路管凝血情况: &emsp;动脉管道:
  516. <check-box text="0" :checked="afterdialysis.arterial_tube == 1?true:false"></check-box>
  517. <check-box text="+" :checked="afterdialysis.arterial_tube == 2?true:false"></check-box>
  518. <check-box text="++" :checked="afterdialysis.arterial_tube == 3?true:false"></check-box>
  519. <check-box text="+++" :checked="afterdialysis.arterial_tube == 4?true:false"></check-box>
  520. </div>
  521. <div class="inline_block">
  522. 静脉管道:
  523. <check-box text="0" :checked="afterdialysis.intravenous_tube == 1?true:false"></check-box>
  524. <check-box text="+" :checked="afterdialysis.intravenous_tube == 2?true:false"></check-box>
  525. <check-box text="++" :checked="afterdialysis.intravenous_tube == 3?true:false"></check-box>
  526. <check-box text="+++" :checked="afterdialysis.intravenous_tube == 4?true:false"></check-box>
  527. </div>
  528. <div class="inline_block">
  529. 透析器:
  530. <check-box text="0" :checked="afterdialysis.dialyzer == 1?true:false"></check-box>
  531. <check-box text="+" :checked="afterdialysis.dialyzer == 2?true:false"></check-box>
  532. <check-box text="++" :checked="afterdialysis.dialyzer == 3?true:false"></check-box>
  533. <check-box text="+++" :checked="afterdialysis.dialyzer == 4?true:false"></check-box>
  534. </div>
  535. </div>
  536. </td>
  537. </tr>
  538. <tr>
  539. <td colspan="2">
  540. <div class="row" style="padding: 2px 0;line-height:19px;">
  541. <div class="inline_block" >
  542. 责任护士:
  543. <div class="under_line" style="width: 80px;text-align: left">
  544. <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.start_nurse)}}</span>
  545. <img class="es-img" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse)" alt="" srcset="" v-else>
  546. </div>
  547. </div>
  548. <div class="inline_block" >
  549. 穿刺者:
  550. <div class="under_line" style="width: 80px;text-align: left">
  551. <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.puncture_nurse)}}</span>
  552. <img class="es-img" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse)" alt="" srcset="" v-else>
  553. </div>
  554. </div>
  555. <div class="inline_block" >
  556. &emsp;核对人:
  557. <div class="under_line" style="width: 80px;text-align: left" v-if="dialysisOrder == null">
  558. <span v-if="setAdminUserES(check==null?0:check.creater) == ''">{{getAdminUser(check==null?0:check.creater)}}</span>
  559. <img class="es-img" :src="setAdminUserES(check==null?0:check.creater)" alt="" srcset="" v-else>
  560. </div>
  561. <div class="under_line" style="width: 80px;text-align: left" v-if="dialysisOrder != null && dialysisOrder.start_nurse == check.modifier">
  562. <span v-if="setAdminUserES(check==null?0:check.creater) == ''">{{getAdminUser(check==null?0:check.creater)}}</span>
  563. <img class="es-img" :src="setAdminUserES(check==null?0:check.creater)" alt="" srcset="" v-else>
  564. </div>
  565. <div class="under_line" style="width: 80px;text-align: left" v-if="dialysisOrder != null && dialysisOrder.start_nurse == check.creater">
  566. <span v-if="setAdminUserES(check==null?0:check.modifier) == ''">{{getAdminUser(check==null?0:check.modifier)}}</span>
  567. <img class="es-img" :src="setAdminUserES(check==null?0:check.modifier)" alt="" srcset="" v-else>
  568. </div>
  569. <div class="under_line" style="width: 80px;text-align: left" v-if="dialysisOrder != null && dialysisOrder.start_nurse != check.creater&&dialysisOrder.start_nurse != check.modifier">
  570. <span v-if="setAdminUserES(check==null?0:check.creater) == ''">{{getAdminUser(check==null?0:check.creater)}}</span>
  571. <img class="es-img" :src="setAdminUserES(check==null?0:check.creater)" alt="" srcset="" v-else>
  572. </div>
  573. </div>
  574. <div class="inline_block">
  575. &emsp;核对时间:
  576. <div class="under_line" style="width: 200px;text-align: left" v-if="check == null">
  577. <!--{{getTime(check.check_time,'{y}年{m}月{d}日 {h}时{i}分')}}-->
  578. </div>
  579. <div class="under_line" style="width: 200px;text-align: left" v-if="check != null && check.first_check_time < check.check_time">
  580. {{getTime(check.check_time,'{y}年{m}月{d}日 {h}时{i}分')}}
  581. </div>
  582. <div class="under_line" style="width: 200px;text-align: left" v-if="check != null &&check.check_time < check.first_check_time">
  583. {{getTime(check.first_check_time,'{y}年{m}月{d}日 {h}时{i}分')}}
  584. </div>
  585. </div>
  586. <div class="inline_block" >
  587. &emsp;收针者:
  588. <div class="under_line" style="width: 80px;text-align: left">
  589. <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.finish_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.finish_nurse)}}</span>
  590. <img class="es-img" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.finish_nurse)" alt="" srcset="" v-else>
  591. </div>
  592. </div>
  593. </div>
  594. </td>
  595. </tr>
  596. <tr>
  597. <td colspan="2">
  598. <div class="row" style="padding: 2px 0; line-height:19px;">
  599. 患者去向:
  600. <check-box text="门诊" :checked="afterdialysis.patient_gose==4?true:false"></check-box>
  601. <check-box text="离院" :checked="afterdialysis.patient_gose==1?true:false"></check-box>
  602. <check-box text="留观" :checked="afterdialysis.patient_gose==2?true:false"></check-box>
  603. <check-box text="住院" :checked="afterdialysis.patient_gose==3?true:false"></check-box>
  604. ( 科室
  605. <div class="under_line" style="width: 200px;">
  606. <span v-if="afterdialysis.patient_gose==3">{{afterdialysis.inpatient_department}}</span>
  607. </div>
  608. </div>
  609. <div class="row" style="padding: 2px 0; line-height:19px;">
  610. <div class="inline_block" >
  611. 血透室护士签名:
  612. <div class="under_line" style="width: 100px;text-align: left">
  613. <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.start_nurse)}}</span>
  614. <img class="es-img" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse)" alt="" srcset="" v-else>
  615. </div>
  616. </div>
  617. <div class="inline_block" >
  618. &emsp;病区护士签名:
  619. <div class="under_line" style="width: 100px;text-align: left">
  620. </div>
  621. </div>
  622. <div class="inline_block">
  623. &emsp;时间:
  624. <div class="under_line" style="width: 200px;text-align: left" v-if="dialysisOrder != null">
  625. {{getTime(dialysisOrder.end_time,'{y}年{m}月{d}日 {h}时{i}分')}}
  626. </div>
  627. </div>
  628. </div>
  629. </td>
  630. </tr>
  631. <tr>
  632. <td colspan="2">
  633. <div class="row" style="font-size: 10px;">
  634. 注:透析器及血路管凝血:0级无凝血;
  635. “+”(指Ⅰ级:束状纤维凝血或动/静脉壶/滤网见轻微凝血);“++”(指II级:近半数纤维凝血或动/静脉壶/滤网出现凝血块);“+++”(指III级:压力异常升高,须中途更换透析器/血路管A/V)。
  636. </div>
  637. </td>
  638. </tr>
  639. </tbody>
  640. </table>
  641. <div v-if="(this.monitors.length > 8 && this.print_length == 8) || (this.monitors.length > 9 && this.print_length == 9)" class="print-yema3" >2</div>
  642. <div v-else class="print-yema2">1</div>
  643. </div>
  644. </div>
  645. <div id="dialysis-print-box-1-2" class="dialysis-print-order print-template-two print_page_main_content" style="position: relative;">
  646. <div class="order-yy-name">{{orgname}}</div>
  647. <div class="order_title"> 血液净化科医嘱及执行单 </div>
  648. <div class="row" style="margin-top: 15px">
  649. <div class="inline_block">
  650. 科室:
  651. <check-box text="门诊透析" :checked="patientInfo_source_1 "></check-box>
  652. &nbsp;
  653. <check-box text="住院" :checked="patientInfo_source_2"></check-box>
  654. </div>
  655. <div class="inline_block" style="margin-left: 5px;">
  656. 住院号:
  657. <div class="under_line" style="width: 70px;text-align: left" v-if="patientInfo.admission_number">
  658. {{patientInfo.admission_number}}
  659. </div>
  660. <div class="under_line" style="width: 70px;text-align: left" v-else>
  661. {{'/'}}
  662. </div>
  663. </div>
  664. <div class="inline_block" style="margin-left:10px;">
  665. 姓名:
  666. <div class="under_line" style="width: 50px;text-align: left">{{patientInfo.name}}</div>
  667. </div>
  668. <div class="inline_block" style="margin-left: 10px;">
  669. 性别:
  670. <check-box text="男" :checked="patientInfo_gender_1"></check-box>
  671. &nbsp;
  672. <check-box text="女" :checked="patientInfo_gender_2"></check-box>
  673. </div>
  674. <div class="inline_block" style="margin-left: 10px;">
  675. 年龄:
  676. <div class="under_line" style="width: 30px;text-align: left">{{getAge(patientInfo)}}</div>
  677. </div>
  678. <div class="inline_block" style="margin-left: 10px;">
  679. 诊断:
  680. <div class="under_line" style="width:180px;text-align: left">{{patientInfo.diagnose}}</div>
  681. </div>
  682. </div>
  683. <table class="proj_table">
  684. <tbody>
  685. <tr>
  686. <td>
  687. <!--<div class="row" style="padding: 2px 0;line-height:24px;">-->
  688. <!--<div class="inline_block">-->
  689. <!--诊断:-->
  690. <!--<div class="under_line" style="width: 150px;text-align: left">{{patientInfo.diagnose}}</div>-->
  691. <!--</div>-->
  692. <!--</div>-->
  693. <div class="row" style="padding: 2px 0;line-height:24px;">
  694. <div class="inline_block">治疗方式:
  695. <check-box text="HD" :checked="prescription.mode_id==1?true:false"></check-box>
  696. <check-box text="HDF" :checked="prescription.mode_id==2?true:false"></check-box>
  697. <check-box text="HF" :checked="prescription.mode_id==5?true:false"></check-box>
  698. <check-box text="HP" :checked="prescription.mode_id==4?true:false"></check-box>
  699. <check-box text="HD+HP" :checked="prescription.mode_id==3?true:false"></check-box>
  700. </div>
  701. <!--<div class="inline_block" v-if="patientInfo.diagnose.length <= 10">-->
  702. <!--&emsp;治疗方式:-->
  703. <!--<check-box text="HD" :checked="prescription.mode_id==1?true:false"></check-box>-->
  704. <!--<check-box text="HDF" :checked="prescription.mode_id==2?true:false"></check-box>-->
  705. <!--<check-box text="HF" :checked="prescription.mode_id==5?true:false"></check-box>-->
  706. <!--<check-box text="HP" :checked="prescription.mode_id==4?true:false"></check-box>-->
  707. <!--<check-box text="HD+HP" :checked="prescription.mode_id==3?true:false"></check-box>-->
  708. <!--</div>-->
  709. <div class="inline_block" style="margin-left:20px;">
  710. 其它:
  711. <div class="under_line" style="width: 100px;text-align: left">
  712. <span v-if="prescription.mode_id>5">{{prescription.mode}}</span>
  713. </div>
  714. </div>
  715. <div class="inline_block" style="margin-left:20px;">
  716. 治疗时间:
  717. <div class="under_line" style="width: 30px;text-align: left">
  718. {{prescription.dialysis_duration_hour?prescription.dialysis_duration_hour:'0'}}
  719. </div>
  720. h
  721. <div class="under_line" style="width: 30px;text-align: left">
  722. {{prescription.dialysis_duration_minute?prescription.dialysis_duration_minute:'0'}}
  723. </div>
  724. min
  725. </div>
  726. <div class="inline_block">
  727. &emsp;&emsp;病情:
  728. <check-box text="一般" :checked="receiverTreatmentAccess.sick_condition == 1?true:false"></check-box>
  729. <check-box text="重" :checked="receiverTreatmentAccess.sick_condition == 2?true:false"></check-box>
  730. <check-box text="危" :checked="receiverTreatmentAccess.sick_condition == 3?true:false"></check-box>
  731. </div>
  732. </div>
  733. <div class="row" style="padding: 2px 0; line-height:24px;">
  734. <div class="inline_block">
  735. 体液过多症状:
  736. <check-box text="无" :checked="prescription.body_fluid==1?true:false"></check-box>
  737. <check-box text="下肢水肿+" :checked="prescription.body_fluid==2?true:false"></check-box>
  738. <check-box text="下肢水肿++" :checked="prescription.body_fluid==3?true:false"></check-box>
  739. <check-box text="下肢水肿+++" :checked="prescription.body_fluid==4?true:false"></check-box>
  740. </div>
  741. <div class="inline_block">
  742. 其它:
  743. <div class="under_line" style="width: 100px;">
  744. <span v-if="prescription&&prescription.body_fluid_other.length > 0">&nbsp;{{prescription.body_fluid_other}}</span>
  745. </div>
  746. </div>
  747. </div>
  748. <div class="row" style="padding: 2px 0;line-height:24px;">
  749. <div class="inline_block">
  750. 透析器型号:
  751. <div class="under_line" style="width: 100px;text-align: left">
  752. {{prescription.dialyzer_perfusion_apparatus}}
  753. </div>
  754. </div>
  755. <div class="inline_block" style="margin-left:20px;">
  756. 透析前使用特殊药物:
  757. <check-box text="无" :checked="prescription.special_medicine==1?true:false"></check-box>
  758. <check-box text="降压药" :checked="prescription.special_medicine==2?true:false"></check-box>
  759. <check-box text="抗凝" :checked="prescription.special_medicine==3?true:false"></check-box>
  760. </div>
  761. <div class="inline_block">
  762. 其它:
  763. <div class="under_line" style="width: 100px;text-align: left">
  764. <span v-if="prescription.special_medicine == -1">{{prescription.special_medicine_other}}</span>
  765. </div>
  766. </div>
  767. </div>
  768. <div class="row" style="padding: 2px 0;line-height:24px;">
  769. <div class="inline_block">
  770. 透析液(mmol/L): &emsp;Ca<sup>2+</sup>:
  771. <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.calcium">
  772. <span>{{getFloat(prescription.calcium)?getFloat(prescription.calcium):'/'}}</span>
  773. </div>
  774. <div class="under_line" style="width: 70px;" v-else>
  775. <span>{{'/'}}</span>
  776. </div>
  777. mmol/L &emsp;Na<sup>+</sup>:
  778. <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.sodium">
  779. <span>{{getFloat(prescription.sodium)?getFloat(prescription.sodium):'/'}}</span>
  780. </div>
  781. <div class="under_line" style="width: 70px;" v-else>
  782. <span>{{'/'}}</span>
  783. </div>
  784. mmol/L &emsp;K<sup>+</sup>:
  785. <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.kalium">
  786. <span>{{getFloat(prescription.kalium)?getFloat(prescription.kalium):'/'}}</span>
  787. </div>
  788. <div class="under_line" style="width: 70px;" v-else>
  789. <span>{{'/'}}</span>
  790. </div>
  791. mmol/L
  792. </div>
  793. <div class="inline_block" v-if="prescription.displace_liqui_part == 0">
  794. &emsp;置换液后/前稀释 总量:
  795. <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.displace_liqui_value">
  796. {{prescription.displace_liqui_value}}
  797. </div>
  798. <div class="under_line" style="width: 70px;" v-else>
  799. {{'/'}}
  800. </div>
  801. L
  802. </div>
  803. <div class="inline_block" v-if="prescription.displace_liqui_part == 1">
  804. &emsp;置换液前稀释 总量:
  805. <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.displace_liqui_value">
  806. {{prescription.displace_liqui_value}}
  807. </div>
  808. <div class="under_line" style="width: 70px;" v-else>
  809. {{'/'}}
  810. </div>
  811. L
  812. </div>
  813. <div class="inline_block" v-if="prescription.displace_liqui_part == 2">
  814. &emsp;置换液后稀释 总量:
  815. <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.displace_liqui_value">
  816. {{prescription.displace_liqui_value}}
  817. </div>
  818. <div class="under_line" style="width: 70px;" v-else>
  819. {{'/'}}
  820. </div>
  821. L
  822. </div>
  823. </div>
  824. <div class="row" style="padding: 2px 0;line-height:24px;">
  825. <div class="inline_block">
  826. 血管通路:
  827. <check-box text="内瘘" :checked="prescription.blood_access == 1?true:false"></check-box>
  828. <check-box text="直穿" :checked="prescription.blood_access == 2?true:false"></check-box>
  829. <check-box text="导管" :checked="prescription.blood_access == 3?true:false"></check-box>
  830. </div>
  831. <div class="inline_block">
  832. &emsp;血流量:
  833. <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.blood_flow_volume">
  834. {{prescription.blood_flow_volume}}
  835. </div>
  836. <div class="under_line" style="width: 70px;text-align: left" v-else>
  837. {{'/'}}
  838. </div>
  839. ml/min
  840. </div>
  841. <div class="inline_block">
  842. &emsp;透析液流量:
  843. <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.dialysate_flow">
  844. {{prescription.dialysate_flow}}
  845. </div>
  846. <div class="under_line" style="width: 70px;" v-else>
  847. {{'/'}}
  848. </div>
  849. ml/min
  850. </div>
  851. </div>
  852. <div class="row" style="padding: 2px 0;line-height:24px;">
  853. <div class="inline_block">
  854. 透前体重:
  855. <div class="under_line" style="width: 70px;text-align: left" v-if="predialysis.weight_before">
  856. {{predialysis.weight_before}}
  857. </div>
  858. <div class="under_line" style="width: 70px;" v-else>
  859. {{'/'}}
  860. </div>
  861. kg
  862. </div>
  863. <div class="inline_block">
  864. &emsp;设定超滤量:
  865. <div class="under_line" style="width: 70px;text-align: left" v-if="getFloat(prescription.target_ultrafiltration)">
  866. {{getFloat(prescription.target_ultrafiltration)}}
  867. </div>
  868. <div class="under_line" style="width: 70px;" v-else>
  869. {{'/'}}
  870. </div>
  871. L
  872. </div>
  873. <div class="inline_block">
  874. &emsp;实际超滤量:
  875. <div class="under_line" style="width: 70px;text-align: left" v-if="getFloat(prescription.ultrafiltration)">
  876. {{getFloat(prescription.ultrafiltration)}}
  877. </div>
  878. <div class="under_line" style="width: 70px;" v-else>
  879. {{'/'}}
  880. </div>
  881. L
  882. </div>
  883. <div class="inline_block">
  884. 透后体重:
  885. <div class="under_line" style="width: 70px;text-align: left" v-if="afterdialysis.weight_after">
  886. {{afterdialysis.weight_after}}
  887. </div>
  888. <div class="under_line" style="width: 70px;" v-else>
  889. {{'/'}}
  890. </div>
  891. kg
  892. </div>
  893. </div>
  894. </td>
  895. </tr>
  896. </tbody>
  897. </table>
  898. <table class="print-table-no" border="1" count="0" :style="this.advice_groups_2.length > 0 ? 'margin-bottom:350px;margin-top: -1px;position: relative;':'margin-top: -1px;position: relative;'">
  899. <tbody>
  900. <tr style="line-height:35px;padding:8px 5px;">
  901. <td colspan="7" style="font-size: 18px">医嘱</td>
  902. </tr>
  903. <tr style="line-height:35px;padding:8px 5px;">
  904. <td colspan="4" style="font-size: 16px">开医嘱</td>
  905. <td colspan="3" style="font-size: 16px">执行核对医嘱</td>
  906. </tr>
  907. <tr style="line-height:35px;padding:8px 5px;">
  908. <td style="font-size: 16px" width="10%">时间</td>
  909. <td style="font-size: 16px" colspan="2" width="45%">医嘱内容</td>
  910. <td style="font-size: 16px" width="10%">医生签名</td>
  911. <td style="font-size: 16px" width="10%">核对人签名</td>
  912. <td style="font-size: 16px" width="10%">执行人签名</td>
  913. <td style="font-size: 16px" width="10%">时间</td>
  914. </tr>
  915. <template v-for="(group, group_index) in advice_groups" >
  916. <tr v-for="(advice, advice_index) in group.advices" :key="advice_index" >
  917. <td height="60px" v-if="advice_index == 0" :rowspan="group.advices.length">
  918. <span v-if="advice.start_time">
  919. {{getTime(advice.start_time,'{y}-{m}-{d} {h}:{i}')}}
  920. </span>
  921. <span v-else>&nbsp;<br/>&nbsp;</span>
  922. </td>
  923. <td height="60px" class="advice-name" style="padding-left:7px;" :colspan="advice.children && advice.children.length > 0 || advice.parent_id > 0 ? 1 :2" v-if="advice.isShow == 2">
  924. <span >{{advice.advice_name }}</span>
  925. <span>{{advice.advice_desc}}</span>
  926. <span v-if="advice.prescribing_number">* {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
  927. <span v-if="advice.single_dose != 0">单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>
  928. <span v-if="advice.parent_id == 0 && advice.children.length == 0">{{advice.delivery_way}}</span>
  929. <span v-if="advice.parent_id == 0 && advice.children.length == 0">{{advice.execution_frequency}}</span>
  930. <span v-if="advice.parent_id == 0 && advice.children && advice.children.length == 0 && advice.remark.length > 0" >({{advice.remark}})</span>
  931. </td>
  932. <td colspan="2" height="60px" style="text-align: center" v-else >
  933. <span>{{advice.delivery_way}}</span>
  934. <span>{{advice.execution_frequency}}</span>
  935. <span v-if="advice.remark.length > 0">({{advice.remark}})</span>
  936. </td>
  937. <td width="10%" v-if="(advice.children && advice.children.length > 0 || advice.parent_id > 0) && advice.isShow == 2" ></td>
  938. <td height="60px">
  939. <span v-if="setAdminUserES(advice.advice_doctor) == ''">{{getAdminUser(advice.advice_doctor)}}</span>
  940. <img class="es-img" :src="setAdminUserES(advice.advice_doctor)" alt="" srcset="" v-else>
  941. </td>
  942. <td height="60px">
  943. <span v-if="setAdminUserES(advice.checker) == ''">{{getAdminUser(advice.checker)}}</span>
  944. <img class="es-img" :src="setAdminUserES(advice.checker)" alt="" srcset="" v-else>
  945. </td>
  946. <td height="60px">
  947. <span v-if="setAdminUserES(advice.execution_staff) == ''">{{getAdminUser(advice.execution_staff)}}</span>
  948. <img class="es-img" :src="setAdminUserES(advice.execution_staff)" alt="" srcset="" v-else>
  949. </td>
  950. <td height="60px">
  951. <span v-if="advice.execution_time">{{getTime(advice.execution_time,'{y}-{m}-{d} {h}:{i}')}}</span>
  952. </td>
  953. </tr>
  954. </template>
  955. <!-- <tr v-if="this.advice_groups_2.length == 0">
  956. <td colspan="7" style="text-align:left;">特殊纪录:</td>
  957. </tr> -->
  958. </tbody>
  959. <div class="print-yema4">1</div>
  960. </table>
  961. <template v-if="this.advice_groups_2.length > 0">
  962. <div style="position: relative;">
  963. <div class="order-yy-name">{{orgname}}</div>
  964. <div class="order_title"> 血液净化科医嘱及执行单 </div>
  965. <div class="row" style="margin-top: 15px">
  966. <div class="inline_block">
  967. 科室:
  968. <check-box text="门诊透析" :checked="patientInfo_source_1 "></check-box>
  969. &nbsp;
  970. <check-box text="住院" :checked="patientInfo_source_2"></check-box>
  971. </div>
  972. <div class="inline_block" style="margin-left: 5px;">
  973. 住院号:
  974. <div class="under_line" style="width: 70px;text-align: left" v-if="patientInfo.admission_number">
  975. {{patientInfo.admission_number}}
  976. </div>
  977. <div class="under_line" style="width: 70px;text-align: left" v-else>
  978. {{'/'}}
  979. </div>
  980. </div>
  981. <div class="inline_block" style="margin-left:10px;">
  982. 姓名:
  983. <div class="under_line" style="width: 50px;text-align: left">{{patientInfo.name}}</div>
  984. </div>
  985. <div class="inline_block" style="margin-left: 10px;">
  986. 性别:
  987. <check-box text="男" :checked="patientInfo_gender_1"></check-box>
  988. &nbsp;
  989. <check-box text="女" :checked="patientInfo_gender_2"></check-box>
  990. </div>
  991. <div class="inline_block" style="margin-left: 10px;">
  992. 年龄:
  993. <div class="under_line" style="width: 30px;text-align: left">{{getAge(patientInfo)}}</div>
  994. </div>
  995. <div class="inline_block" style="margin-left: 10px;">
  996. 诊断:
  997. <div class="under_line" style="width: 180px;text-align: left">{{patientInfo.diagnose}}</div>
  998. </div>
  999. </div>
  1000. <table class="print-table-no" border="1" count="0">
  1001. <tbody>
  1002. <tr style="line-height:35px;padding:8px 5px;">
  1003. <td colspan="7" style="font-size: 18px">医嘱</td>
  1004. </tr>
  1005. <tr style="line-height:35px;padding:8px 5px;">
  1006. <td colspan="4" style="font-size: 16px">开医嘱</td>
  1007. <td colspan="3" style="font-size: 16px">执行核对医嘱</td>
  1008. </tr>
  1009. <tr style="line-height:35px;padding:8px 5px;">
  1010. <td style="font-size: 16px" width="10%">时间</td>
  1011. <td style="font-size: 16px" colspan="2" width="45%">医嘱内容</td>
  1012. <td style="font-size: 16px" width="10%">医生签名</td>
  1013. <td style="font-size: 16px" width="10%">核对人签名</td>
  1014. <td style="font-size: 16px" width="10%">执行人签名</td>
  1015. <td style="font-size: 16px" width="10%">时间</td>
  1016. </tr>
  1017. <template v-for="(group, group_index) in advice_groups_2" >
  1018. <tr v-for="(advice, advice_index) in group.advices" :key="advice_index" >
  1019. <td height="60px" v-if="advice_index == 0" :rowspan="group.advices.length">
  1020. <span v-if="advice.start_time">
  1021. {{getTime(advice.start_time,'{y}-{m}-{d} {h}:{i}')}}
  1022. </span>
  1023. <span v-else>&nbsp;<br/>&nbsp;</span>
  1024. </td>
  1025. <td height="60px" class="advice-name" style="padding-left:7px;" :colspan="advice.children && advice.children.length > 0 || advice.parent_id > 0 ? 1 :2" v-if="advice.isShow == 2">
  1026. <span >{{advice.advice_name }}</span>
  1027. <span>{{advice.advice_desc}}</span>
  1028. <span v-if="advice.prescribing_number">* {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
  1029. <span v-if="advice.single_dose != 0">单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>
  1030. <span v-if="advice.parent_id == 0 && advice.children.length == 0">{{advice.delivery_way}}</span>
  1031. <span v-if="advice.parent_id == 0 && advice.children.length == 0">{{advice.execution_frequency}}</span>
  1032. <span v-if="advice.parent_id == 0 && advice.children && advice.children.length == 0 && advice.remark.length > 0" >({{advice.remark}})</span>
  1033. </td>
  1034. <td colspan="2" height="60px" style="text-align: center" v-else >
  1035. <span>{{advice.delivery_way}}</span>
  1036. <span>{{advice.execution_frequency}}</span>
  1037. <span v-if="advice.remark.length > 0">({{advice.remark}})</span>
  1038. </td>
  1039. <td width="10%" v-if="(advice.children && advice.children.length > 0 || advice.parent_id > 0) && advice.isShow == 2" ></td>
  1040. <td height="60px">
  1041. <span v-if="setAdminUserES(advice.advice_doctor) == ''">{{getAdminUser(advice.advice_doctor)}}</span>
  1042. <img class="es-img" :src="setAdminUserES(advice.advice_doctor)" alt="" srcset="" v-else>
  1043. </td>
  1044. <td height="60px">
  1045. <span v-if="setAdminUserES(advice.checker) == ''">{{getAdminUser(advice.checker)}}</span>
  1046. <img class="es-img" :src="setAdminUserES(advice.checker)" alt="" srcset="" v-else>
  1047. </td>
  1048. <td height="60px">
  1049. <span v-if="setAdminUserES(advice.execution_staff) == ''">{{getAdminUser(advice.execution_staff)}}</span>
  1050. <img class="es-img" :src="setAdminUserES(advice.execution_staff)" alt="" srcset="" v-else>
  1051. </td>
  1052. <td height="60px">
  1053. <span v-if="advice.execution_time">{{getTime(advice.execution_time,'{y}-{m}-{d} {h}:{i}')}}</span>
  1054. </td>
  1055. </tr>
  1056. </template>
  1057. <!-- <tr >
  1058. <td colspan="7" style="text-align:left;">特殊纪录:</td>
  1059. </tr> -->
  1060. </tbody>
  1061. </table>
  1062. <div class="print-yema4">2</div>
  1063. </div>
  1064. </template>
  1065. </div>
  1066. </div>
  1067. </template>
  1068. <script>
  1069. import CheckBox from '../batch_print/option_check_box'
  1070. import { getDialysisRecord } from '@/api/dialysis'
  1071. import { getDataConfig } from '@/utils/data'
  1072. import { jsGetAge, uParseTime } from '@/utils/tools'
  1073. import LabelBox from '../printItem/LabelBox'
  1074. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  1075. // import DialysisPrintOrderOne from './template/dialysisPrintOrderOne'
  1076. // import DialysisPrintOrderTwo from './template/dialysisPrintOrderTwo'
  1077. import print from 'print-js'
  1078. export default {
  1079. name: 'dialysisPrintOrderFive',
  1080. props: ['childResponse'],
  1081. components: {
  1082. // DialysisPrintOrderOne,
  1083. // DialysisPrintOrderTwo,
  1084. CheckBox,
  1085. LabelBox,
  1086. BreadCrumb
  1087. },
  1088. data() {
  1089. return {
  1090. way_arr: [],
  1091. consciousness_arr: [],
  1092. appetite_arr: [],
  1093. posture_arr: [],
  1094. sick_condition_arr: [],
  1095. precaution_arr: [],
  1096. intake_arr: [],
  1097. nutrition_arr: [],
  1098. crumbs: [
  1099. { path: false, name: '透析管理' },
  1100. { path: false, name: '打印单' }
  1101. ],
  1102. operators: [],
  1103. adminUser: [],
  1104. check: {},
  1105. dialysisOrder: {
  1106. DeviceNumber: []
  1107. },
  1108. operatorMaps: {},
  1109. complications: ['低血压', '高血压', '心律失常', '头晕', '头痛', '呕吐', '抽搐', '出血', '心衰', '腹痛'],
  1110. jilurow: 0,
  1111. advice_jilurow: 0,
  1112. loading: false,
  1113. orgname: '',
  1114. patientInfo_gender_1: false,
  1115. patientInfo_gender_2: false,
  1116. patientInfo_source_2: false,
  1117. patientInfo_source_1: false,
  1118. modeOptions: {},
  1119. replacementWays: [],
  1120. perfusionApparatus: [],
  1121. anticoagulantsConfit: {},
  1122. bloodAccessParOpera: {},
  1123. dialysateFormulationOptions: {},
  1124. queryParams: {
  1125. xtdate: '',
  1126. xtno: ''
  1127. },
  1128. patientInfo: {
  1129. birth: '',
  1130. age: '',
  1131. DialysisSchedule: {
  1132. device_number: { number: '' },
  1133. device_zone: { name: '' }
  1134. },
  1135. gender: 0
  1136. },
  1137. predialysis: {
  1138. score: '',
  1139. internal_fistula: '',
  1140. internal_fistula_skin: '',
  1141. catheter: '',
  1142. blood_access_part_opera_name: ''
  1143. },
  1144. afterdialysis: {
  1145. complications_index: ''
  1146. },
  1147. prescription: {
  1148. dialysate_formulation_name: '',
  1149. device: {}
  1150. },
  1151. advices: [],
  1152. users: [],
  1153. monitors: [],
  1154. monitors2: [],
  1155. summary: {},
  1156. receiverTreatmentAccess: {},
  1157. org_template_info: {},
  1158. doctor_advices: [],
  1159. advice_groups: [],
  1160. advice_groups_2: [],
  1161. print_length : 0,
  1162. AlPanel: {
  1163. id: 0,
  1164. name: '',
  1165. type: 1,
  1166. shouji: 2,
  1167. weichi: 2,
  1168. zongliang: 2,
  1169. gaimingcheng: -1,
  1170. gaijiliang: -1,
  1171. shouji_unit: 'mg',
  1172. weichi_unit: 'mg/h',
  1173. zongliang_unit: 'mg',
  1174. gaimingcheng_unit: '',
  1175. gaijiliang_unit: ''
  1176. }
  1177. }
  1178. },
  1179. methods: {
  1180. getAdminUser(id) {
  1181. if (id == 0) {
  1182. return ''
  1183. }
  1184. if (id == undefined) {
  1185. return ''
  1186. }
  1187. for (let i = 0; i < this.adminUser.length; i++) {
  1188. if (this.adminUser[i].id == id) {
  1189. return this.adminUser[i].name
  1190. }
  1191. }
  1192. },
  1193. getTime(value, temp) {
  1194. if (value == 0) {
  1195. return ''
  1196. }
  1197. if (value != undefined) {
  1198. return uParseTime(value, temp)
  1199. }
  1200. return ''
  1201. },
  1202. printThisPage() {
  1203. var ptime = Math.round(new Date().getTime() / 1000)
  1204. this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
  1205. const style = '@media print {.dialysis-print-order{width:960px;margin:0 auto}.dialysis-print-order .order-yy-name{margin:auto;text-align:center;font-size:20px;letter-spacing:5px}.dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px}.dialysis-print-order .table-box{width:100%;line-height:23px;font-size:14px}.dialysis-print-order .print-table{width:100%;text-align:center;border-collapse:collapse;line-height:25px;font-size:14px}.dialysis-print-order .print-table-no{width:100%;text-align:left;border-collapse:collapse;font-size:14px} .dialysis-print-order .under_line {display: inline-block;border-bottom: 1px solid #999;text-align:left;white-space: nowrap;width: 50%;} .dialysis-print-order .title-box{text-align:center;font-size:16px;border:1px solid #666}.dialysis-print-order .radio-lebel-box{font-weight:400;cursor:pointer}.dialysis-print-order .radio-no{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.dialysis-print-order .radio-inner{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.dialysis-print-order .radio-fang{display:inline-block;position:relative;border:1px solid #000;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.dialysis-print-order .is-checked-radio::after{content:"√";font-size:15px}}.dialysis-print-order .print-table-no tr td { padding: 8px 5px; line-height: 25px; }.es-img{height: 30px; }.advice-name{text-align: left;}.advice-children{display:flex;} .dialysis-print-order .print-table tr td{padding: 0px 0px;} .print-template-two tr {line-height: 30px;} .title-box-pro{border: 0 #fff;line-height: 40px;height: 40px;text-align: left;padding-left: 10px !important;} .text-align-left{text-align: left !important;padding-left:10px !important;font-size: 14px !important;line-height: 25px;}'
  1206. if (this.org_template_info.template_id == 1) {
  1207. printJS({
  1208. printable: 'dialysis-print-box',
  1209. type: 'html',
  1210. style: style,
  1211. scanStyles: false
  1212. })
  1213. } else if (this.org_template_info.template_id == 2 ||this.org_template_info.template_id == 0 ) {
  1214. printJS({
  1215. printable: 'dialysis-print-box-1',
  1216. type: 'html',
  1217. style: style,
  1218. scanStyles: false
  1219. })
  1220. }
  1221. }, getNumber() {
  1222. if (this.dialysisOrder != null) {
  1223. return this.patientInfo.DialysisSchedule.device_zone.name + this.dialysisOrder.DeviceNumber.number
  1224. } else {
  1225. return this.patientInfo.DialysisSchedule.device_zone.name + this.patientInfo.DialysisSchedule.device_number.number
  1226. }
  1227. },
  1228. getXuserName(id) {
  1229. if (id <= 0) {
  1230. return ''
  1231. }
  1232. var name = ''
  1233. if (this.users == null || typeof (this.users.length) === 'undefined') {
  1234. return name
  1235. }
  1236. var leng = this.users.length
  1237. if (leng == 0) {
  1238. return name
  1239. }
  1240. for (let index = 0; index < leng; index++) {
  1241. if (this.users[index].id == id) {
  1242. name = this.users[index].name
  1243. break
  1244. }
  1245. }
  1246. return name
  1247. },
  1248. setAdminUserES(id) {
  1249. if (id == 0) {
  1250. return ''
  1251. }
  1252. if (id in this.operatorMaps) {
  1253. return this.operatorMaps[id].url
  1254. } else {
  1255. return ''
  1256. }
  1257. },
  1258. modeName(mode_id) {
  1259. return typeof (this.modeOptions[mode_id]) !== 'undefined' && typeof (this.modeOptions[mode_id].name) !== 'undefined' ? this.modeOptions[mode_id].name : ''
  1260. },
  1261. getDialysisRecord() {
  1262. this.loading = true
  1263. // getDialysisRecord(this.queryParams).then(response => {
  1264. var response = this.childResponse
  1265. if (response.data.state == 1) {
  1266. this.adminUser = response.data.data.users
  1267. this.users = response.data.data.users
  1268. this.patientInfo = response.data.data.patientInfo
  1269. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  1270. // this.patientInfo.age = jsGetAge(this.patientInfo.birth, '-')
  1271. if (response.data.data.patientInfo.first_dialysis_date != 0) {
  1272. this.patientInfo.first_dialysis_date = uParseTime(response.data.data.patientInfo.first_dialysis_date, '{y}-{m}-{d}')
  1273. } else {
  1274. this.patientInfo.first_dialysis_date = ''
  1275. }
  1276. this.check = response.data.data.check
  1277. this.predialysis = response.data.data.PredialysisEvaluation
  1278. this.predialysis.blood_access_part_opera_name = this.bloodAccessParOperaName(this.predialysis.blood_access_part_opera_id)
  1279. this.afterdialysis = response.data.data.AssessmentAfterDislysis
  1280. this.operators = response.data.data.operators
  1281. this.dialysisOrder = response.data.data.dialysisOrder === null ? null : response.data.data.dialysisOrder
  1282. if (this.operators.length > 0) {
  1283. var operatorsLen = this.operators.length
  1284. for (var index = 0; index < operatorsLen; index++) {
  1285. this.$set(this.operatorMaps, this.operators[index].creator, this.operators[index])
  1286. }
  1287. }
  1288. this.afterdialysis.txqnx = -1
  1289. if (this.afterdialysis.cruor.indexOf('0度') > -1) {
  1290. this.afterdialysis.txqnx = 0
  1291. }
  1292. if (this.afterdialysis.cruor.indexOf('Ⅰ度') > -1) {
  1293. this.afterdialysis.txqnx = 1
  1294. }
  1295. if (this.afterdialysis.cruor.indexOf('Ⅱ度') > -1) {
  1296. this.afterdialysis.txqnx = 2
  1297. }
  1298. if (this.afterdialysis.cruor.indexOf('Ⅲ度') > -1) {
  1299. this.afterdialysis.txqnx = 3
  1300. }
  1301. this.afterdialysis.complications = this.afterdialysis.complication.split(',')
  1302. this.afterdialysis.complications_other = []
  1303. this.afterdialysis.complications_index = []
  1304. var acllen = this.afterdialysis.complications.length
  1305. for (let index = 0; index < acllen; index++) {
  1306. if (this.complications.indexOf(this.afterdialysis.complications[index]) >= 0) {
  1307. this.afterdialysis.complications_index.push(this.afterdialysis.complications[index])
  1308. } else if (this.complications.indexOf(this.afterdialysis.complications[index]) < 0 && this.afterdialysis.complications_other.indexOf(this.afterdialysis.complications[index]) < 0) {
  1309. this.afterdialysis.complications_other.push(this.afterdialysis.complications[index])
  1310. }
  1311. }
  1312. this.afterdialysis.complications_other = this.afterdialysis.complications_other.join(',')
  1313. this.prescription = response.data.data.dialysisPrescription
  1314. this.receiverTreatmentAccess = response.data.data.receiverTreatmentAccess
  1315. this.prescription.mode = this.modeName(this.prescription.mode_id)
  1316. var rwLen = this.replacementWays.length
  1317. this.prescription.replacement = ''
  1318. for (let index = 0; index < rwLen; index++) {
  1319. if (this.replacementWays[index].id == this.prescription.replacement_way) {
  1320. this.prescription.replacement = this.replacementWays[index].name
  1321. break
  1322. }
  1323. }
  1324. this.prescription.dialysate_formulation_name = this.dialysateFormulationName(this.prescription.dialysate_formulation)
  1325. var paLen = this.perfusionApparatus.length
  1326. this.prescription.perfusion_apparatus_name = ''
  1327. for (let index = 0; index < paLen; index++) {
  1328. if (this.perfusionApparatus[index].id == this.prescription.perfusion_apparatus) {
  1329. this.prescription.perfusion_apparatus_name = this.perfusionApparatus[index].name
  1330. break
  1331. }
  1332. }
  1333. var acLen = this.anticoagulantsConfit.length
  1334. var thisALID = this.prescription.anticoagulant
  1335. this.prescription.anticoagulant_name = ''
  1336. if (typeof (this.anticoagulantsConfit[thisALID]) !== 'undefined' && this.anticoagulantsConfit[thisALID] != null) {
  1337. this.prescription.anticoagulant_name = this.anticoagulantsConfit[thisALID].name
  1338. this.AlPanel = this.anticoagulantsConfit[thisALID]
  1339. }
  1340. this.advices = response.data.data.advices
  1341. this.monitors = response.data.data.monitors
  1342. this.summary = response.data.data.summary
  1343. this.org_template_info = response.data.data.org_template_info
  1344. if (this.monitors.length <= 9) {
  1345. if(this.predialysis.systolic_blood_pressure != 0&&this.predialysis.diastolic_blood_pressure != 0||this.predialysis.remark.length > 0 || this.predialysis.pulse_frequency != 0 || this.predialysis.breathing_rate != 0 || this.predialysis.temperature != 0){
  1346. var nl = 8
  1347. this.print_length = 8
  1348. }else{
  1349. var nl = 9
  1350. this.print_length = 9
  1351. }
  1352. for (let index = 0; index < nl; index++) {
  1353. if (this.monitors[index] == undefined || this.monitors[index].length <= 0) {
  1354. this.monitors.push([])
  1355. } else {
  1356. continue
  1357. }
  1358. }
  1359. }
  1360. if (this.monitors.length > 13) {
  1361. const tempMonitors = []
  1362. const tempMonitors2 = []
  1363. for (let index = 0; index < this.monitors.length; index++) {
  1364. if (index < 13) {
  1365. tempMonitors.push(this.monitors[index])
  1366. } else {
  1367. tempMonitors2.push(this.monitors[index])
  1368. }
  1369. }
  1370. this.monitors = tempMonitors
  1371. this.monitors2 = tempMonitors2
  1372. }
  1373. this.jilurow = this.monitors.length + 1
  1374. this.advice_jilurow = this.advices.length + 1
  1375. var childMap = {}
  1376. for (const index in this.advices) {
  1377. if (this.advices[index].parent_id == 0) {
  1378. continue
  1379. }
  1380. if (!(this.advices[index].parent_id in childMap)) {
  1381. childMap[this.advices[index].parent_id] = []
  1382. }
  1383. childMap[this.advices[index].parent_id].push(this.advices[index])
  1384. }
  1385. var advices = []
  1386. for (const index in this.advices) {
  1387. if (this.advices[index].parent_id > 0) {
  1388. continue
  1389. }
  1390. var item = this.advices[index]
  1391. if (item.id in childMap) {
  1392. item.children = childMap[item.id]
  1393. } else {
  1394. item.children = []
  1395. }
  1396. advices.push(item)
  1397. }
  1398. var leftAdvice = []
  1399. var rightAdvice = []
  1400. var adlen = advices.length
  1401. var halfLen = adlen % 2 == 0 ? adlen / 2 : (adlen + 1) / 2
  1402. for (var i = 0; i < halfLen; i++) {
  1403. leftAdvice.push(advices[i])
  1404. rightAdvice.push(advices[i + halfLen])
  1405. }
  1406. if (halfLen < 5) {
  1407. var nl = 5 - leftAdvice.length
  1408. for (let index = 0; index < nl; index++) {
  1409. leftAdvice.push([])
  1410. }
  1411. var nl = 5 - rightAdvice.length
  1412. for (let index = 0; index < nl; index++) {
  1413. rightAdvice.push([])
  1414. }
  1415. }
  1416. this.advices = []
  1417. for (var i = 0; i < halfLen; i++) {
  1418. var item = []
  1419. item.push(leftAdvice[i])
  1420. item.push(rightAdvice[i])
  1421. this.advices.push(item)
  1422. }
  1423. this.loading = false
  1424. this.doctor_advices = response.data.data.advices == null ? [] : response.data.data.advices
  1425. for (let index = 0; index < this.doctor_advices.length; index++) {
  1426. this.doctor_advices[index]['isShow'] = 2
  1427. }
  1428. if (this.doctor_advices.length > 0) {
  1429. var group = this.newAdviceGroupObject()
  1430. var initGroupBlock = function(group, advice) {
  1431. group.group_no = advice.groupno
  1432. }
  1433. for (let index = this.doctor_advices.length - 1; index >= 0; index--) {
  1434. var new_advice_index = 0
  1435. if ('children' in this.doctor_advices[index] && this.doctor_advices[index].children.length > 0) {
  1436. new_advice_index = index + this.doctor_advices[index].children.length + 1
  1437. var doctor_advice = {
  1438. delivery_way: this.doctor_advices[index].delivery_way,
  1439. execution_frequency: this.doctor_advices[index].execution_frequency,
  1440. groupno: this.doctor_advices[index].groupno,
  1441. id: this.doctor_advices[index].id,
  1442. parent_id: this.doctor_advices[index].parent_id,
  1443. children: this.doctor_advices[index].children,
  1444. remark: this.doctor_advices[index].remark,
  1445. execution_staff: this.doctor_advices[index].execution_staff,
  1446. checker: this.doctor_advices[index].checker,
  1447. execution_time: this.doctor_advices[index].execution_time,
  1448. advice_doctor: this.doctor_advices[index].advice_doctor
  1449. }
  1450. doctor_advice['isShow'] = 1
  1451. this.doctor_advices.splice(new_advice_index, 0, doctor_advice)
  1452. // this.doctor_advices.push(doctor_advice)
  1453. }
  1454. }
  1455. var templength = 0
  1456. if (this.doctor_advices.length > 12) {
  1457. templength = 12
  1458. } else {
  1459. templength = this.doctor_advices.length
  1460. }
  1461. for (let index = 0; index < templength; index++) {
  1462. const advice = this.doctor_advices[index]
  1463. if (advice.groupno == 0) {
  1464. // 老版本的医嘱没有分组的概念,所以这一个 if 是解决这个问题的,将每个无分组的医嘱各自归为一组
  1465. if (advice.parent_id > 0) {
  1466. if (this.advice_groups.length > 0) {
  1467. var parent_group = this.advice_groups[
  1468. this.advice_groups.length - 1
  1469. ]
  1470. if (parent_group.advices.length > 0) {
  1471. if (parent_group.advices[0].id == advice.parent_id) {
  1472. parent_group.advices.push(advice)
  1473. }
  1474. }
  1475. }
  1476. continue
  1477. } else {
  1478. if (group.group_no > 0) {
  1479. this.advice_groups.push(group)
  1480. group = this.newAdviceGroupObject()
  1481. }
  1482. initGroupBlock(group, advice)
  1483. group.advices.push(advice)
  1484. this.advice_groups.push(group)
  1485. group = this.newAdviceGroupObject()
  1486. continue
  1487. }
  1488. }
  1489. if (group.group_no > 0 && group.group_no != advice.groupno) {
  1490. this.advice_groups.push(group)
  1491. group = this.newAdviceGroupObject()
  1492. }
  1493. if (group.group_no == 0) {
  1494. initGroupBlock(group, advice)
  1495. }
  1496. if (group.group_no == advice.groupno) {
  1497. group.advices.push(advice)
  1498. }
  1499. if (index == 11) {
  1500. this.advice_groups.push(group)
  1501. group = this.newAdviceGroupObject()
  1502. }
  1503. }
  1504. if (this.doctor_advices.length > 12) {
  1505. for (let index = 12; index < this.doctor_advices.length; index++) {
  1506. const advice = this.doctor_advices[index]
  1507. if (advice.groupno == 0) {
  1508. // 老版本的医嘱没有分组的概念,所以这一个 if 是解决这个问题的,将每个无分组的医嘱各自归为一组
  1509. if (advice.parent_id > 0) {
  1510. if (this.advice_groups_2.length > 0) {
  1511. var parent_group = this.advice_groups_2[
  1512. this.advice_groups_2.length - 1
  1513. ]
  1514. if (parent_group.advices.length > 0) {
  1515. if (parent_group.advices[0].id == advice.parent_id) {
  1516. parent_group.advices.push(advice)
  1517. }
  1518. }
  1519. }
  1520. continue
  1521. } else {
  1522. if (group.group_no > 0) {
  1523. this.advice_groups_2.push(group)
  1524. group = this.newAdviceGroupObject()
  1525. }
  1526. initGroupBlock(group, advice)
  1527. group.advices.push(advice)
  1528. this.advice_groups_2.push(group)
  1529. group = this.newAdviceGroupObject()
  1530. continue
  1531. }
  1532. }
  1533. if (group.group_no > 0 && group.group_no != advice.groupno) {
  1534. this.advice_groups_2.push(group)
  1535. group = this.newAdviceGroupObject()
  1536. }
  1537. if (group.group_no == 0) {
  1538. initGroupBlock(group, advice)
  1539. }
  1540. if (group.group_no == advice.groupno) {
  1541. group.advices.push(advice)
  1542. }
  1543. }
  1544. }
  1545. if (group.group_no > 0) {
  1546. // 上述的算法会导致最后一组没有加到advice_groups,这里要手动加上
  1547. if (this.doctor_advices.length > 12) {
  1548. this.advice_groups_2.push(group)
  1549. } else {
  1550. this.advice_groups.push(group)
  1551. }
  1552. }
  1553. }
  1554. } else {
  1555. this.loading = false
  1556. this.$message.error('请求数据失败')
  1557. return false
  1558. }
  1559. // })
  1560. },
  1561. bloodAccessParOperaName(id) {
  1562. if (id in this.bloodAccessParOpera) {
  1563. return this.bloodAccessParOpera[id].name
  1564. }
  1565. return ''
  1566. },
  1567. dialysateFormulationName(id) {
  1568. if (id in this.dialysateFormulationOptions) {
  1569. return this.dialysateFormulationOptions[id].name
  1570. }
  1571. return ''
  1572. }, getAge: function(val) {
  1573. if (this.org_template_info.template_id == 2 || this.org_template_info.template_id == 0) {
  1574. if (val.age == 0) {
  1575. return jsGetAge(val.birth, '-')
  1576. } else {
  1577. return val.age
  1578. }
  1579. } else {
  1580. return jsGetAge(val.birth, '-')
  1581. }
  1582. }, newAdviceGroupObject: function() {
  1583. return Object.assign(
  1584. {},
  1585. {
  1586. group_no: 0,
  1587. // advice_doctor: 0,
  1588. // start_time: 0,
  1589. advices: []
  1590. // exec_staff: 0,
  1591. // exec_time: 0,
  1592. // checker: 0,
  1593. }
  1594. )
  1595. }, getFloat: function(x) {
  1596. if(x == 0){
  1597. return "/"
  1598. }
  1599. if (x != '.') {
  1600. var f = Math.round(x * 100) / 100
  1601. var s = f.toString()
  1602. var rs = s.indexOf('.')
  1603. if (rs <= 0) {
  1604. rs = s.length
  1605. s += '.'
  1606. }
  1607. while (s.length <= rs + 1) {
  1608. s += '0'
  1609. }
  1610. return s
  1611. } else {
  1612. return '0.0'
  1613. }
  1614. }
  1615. },
  1616. watch: {
  1617. 'patientInfo.gender': function() {
  1618. if (this.patientInfo.gender == 1) {
  1619. this.patientInfo_gender_1 = true
  1620. this.patientInfo_gender_2 = false
  1621. } else if (this.patientInfo.gender == 2) {
  1622. this.patientInfo_gender_2 = true
  1623. this.patientInfo_gender_1 = false
  1624. } else {
  1625. this.patientInfo_gender_2 = false
  1626. this.patientInfo_gender_1 = false
  1627. }
  1628. },
  1629. 'patientInfo.source': function() {
  1630. if (this.patientInfo.source == 1) {
  1631. this.patientInfo_source_1 = true
  1632. this.patientInfo_source_2 = false
  1633. } else if (this.patientInfo.source == 2) {
  1634. this.patientInfo_source_2 = true
  1635. this.patientInfo_source_1 = false
  1636. } else {
  1637. this.patientInfo_source_2 = false
  1638. this.patientInfo_source_1 = false
  1639. }
  1640. }
  1641. },
  1642. created() {
  1643. this.way_arr = getDataConfig('hemodialysis', 'way')
  1644. this.consciousness_arr = getDataConfig('hemodialysis', 'consciousness')
  1645. this.appetite_arr = getDataConfig('hemodialysis', 'appetite')
  1646. this.posture_arr = getDataConfig('hemodialysis', 'posture')
  1647. this.sick_condition_arr = getDataConfig('hemodialysis', 'sick_condition')
  1648. this.precaution_arr = getDataConfig('hemodialysis', 'precaution')
  1649. this.intake_arr = getDataConfig('hemodialysis', 'intake')
  1650. this.nutrition_arr = getDataConfig('hemodialysis', 'nutrition')
  1651. var xtuser = this.$store.getters.xt_user
  1652. this.orgname = xtuser.org.org_name
  1653. // this.orgname = "遂溪方济医院";
  1654. this.modeOptions = this.$store.getters.treatment_mode
  1655. this.replacementWays = this.$store.getters.replacement_ways
  1656. this.perfusionApparatus = this.$store.getters.perfusion_apparatus
  1657. this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit
  1658. // this.bloodAccessParOpera = getDataConfig('hemodialysis', 'vascular_access_desc')
  1659. var bloodAccessParOpera = getDataConfig('hemodialysis', 'vascular_access_desc')
  1660. for (var key in bloodAccessParOpera) {
  1661. this.bloodAccessParOpera[bloodAccessParOpera[key].id] = bloodAccessParOpera[key]
  1662. }
  1663. var dialysateFormulationOptions = getDataConfig('hemodialysis', 'dialysate_formulation')
  1664. for (var key in dialysateFormulationOptions) {
  1665. this.dialysateFormulationOptions[dialysateFormulationOptions[key].id] = dialysateFormulationOptions[key]
  1666. }
  1667. const xtdate = this.$route.query && this.$route.query.xtdate
  1668. const xtno = this.$route.query && this.$route.query.xtno
  1669. if (typeof (xtdate) === 'string' && xtdate.length > 0 && typeof (xtno) === 'string' && xtno.length > 0) {
  1670. this.queryParams.xtdate = xtdate
  1671. this.queryParams.xtno = xtno
  1672. this.getDialysisRecord()
  1673. } else {
  1674. this.$message.error('参数不齐')
  1675. return false
  1676. }
  1677. }
  1678. }
  1679. </script>
  1680. <style>
  1681. .print_page_main_content {
  1682. background-color: white;
  1683. width: 960px;
  1684. margin: 0 auto 50px;
  1685. padding: 0 0 0 0;
  1686. page-break-after: always;
  1687. }
  1688. .print_page_main_content .order-yy-name {
  1689. margin: auto;
  1690. text-align: center;
  1691. font-size: 20px;
  1692. letter-spacing: 5px;
  1693. }
  1694. .dialysis-print-order .order-title {
  1695. margin: auto;
  1696. font-weight: 600;
  1697. text-align: center;
  1698. font-size: 22px;
  1699. padding: 10px;
  1700. }
  1701. .print_page_main_content .order_title {
  1702. text-align: center;
  1703. font-size: 23px;
  1704. line-height: 50px;
  1705. font-weight: 500;
  1706. }
  1707. .row {
  1708. font-size: 14px;
  1709. line-height: 20px;
  1710. padding: 5px 0;
  1711. }
  1712. .inline_block {
  1713. display: inline-block;
  1714. }
  1715. .under_line_two {display: inline-block;border-bottom: 1px solid #999;text-align: left;white-space: nowrap;width: 50%;}
  1716. .under_line_two::before {content: "\00A0";}
  1717. .under_line_two::after {content: "\00A0";}
  1718. .under_line {display: inline-block;border-bottom: 1px solid #999;text-align: center;white-space: nowrap;width: 50%;}
  1719. .under_line::before {
  1720. content: "\00A0";
  1721. }
  1722. .under_line::after {
  1723. content: "\00A0";
  1724. }
  1725. .flex {
  1726. display: -webkit-box;
  1727. display: -moz-box;
  1728. display: -ms-flexbox;
  1729. display: -webkit-flex;
  1730. display: flex;
  1731. align-items: center;
  1732. -webkit-align-items: center;
  1733. box-align: center;
  1734. -moz-box-align: center;
  1735. -webkit-box-align: center;
  1736. text-align: center;
  1737. -webkit-justify-content: space-between;
  1738. justify-content: space-between;
  1739. -moz-box-pack: space-between;
  1740. -webkit--moz-box-pack: space-between;
  1741. box-pack: space-between;
  1742. }
  1743. .print_page_main_content .proj_table {
  1744. width: 100%;
  1745. border: 1px solid;
  1746. border-collapse: collapse;
  1747. padding: 2px;
  1748. }
  1749. .print_page_main_content .proj_table tbody tr td {
  1750. border: 1px solid;
  1751. /* text-align: center; */
  1752. font-size: 16px;
  1753. padding: 5px 8px;
  1754. line-height: 30px;
  1755. }
  1756. .print_page_main_content .proj_table .inside_table {
  1757. width: 100%;
  1758. border: hidden; /* 解决边框冲突 */
  1759. border-collapse: collapse;
  1760. }
  1761. .print_page_main_content .proj_table .inside_table tr td {
  1762. border: 1px solid;
  1763. text-align: center;
  1764. font-size: 14px;
  1765. padding: 6px 5px;
  1766. line-height: 16px;
  1767. }
  1768. .print-table-no {
  1769. width: 100%;
  1770. text-align: center;
  1771. border-collapse: collapse;
  1772. font-size: 14px;
  1773. }
  1774. .es-img {
  1775. height: 30px;
  1776. }
  1777. .advice-name {
  1778. text-align: left !important;
  1779. line-height: 16px !important;
  1780. }
  1781. .advice-children {
  1782. display: flex;
  1783. }
  1784. .margin-bottom-50{
  1785. }
  1786. .margin-bottom-300 {
  1787. margin-bottom:450px;
  1788. }
  1789. .margin-bottom-600 {
  1790. margin-bottom:600px;
  1791. }
  1792. .margin-bottom-900 {
  1793. margin-bottom:900px;
  1794. }
  1795. .print-yema{
  1796. position: absolute;
  1797. left: 50%;
  1798. }
  1799. .print-yema2{
  1800. position: absolute;
  1801. left: 50%;
  1802. }
  1803. .print-yema3{
  1804. position: absolute;
  1805. left: 50%;
  1806. }
  1807. .print-yema4{
  1808. position: absolute;
  1809. left: 50%;
  1810. }
  1811. .check_box_panel .did_checke::after {
  1812. font-size: 8px;
  1813. margin-left: 2px;
  1814. margin-top: 2px;
  1815. position: absolute;
  1816. }
  1817. </style>