dialysisPrintOrderTwo.vue 129KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528
  1. <template>
  2. <div id="dialysis-print-box-1">
  3. <div
  4. id="dialysis-print-box-1-1"
  5. :class="
  6. (this.monitors.length > 8 && this.print_length == 8) ||
  7. (this.monitors.length > 9 && this.print_length == 9)
  8. ? 'margin-bottom-900 dialysis-print-order print-template-two print_page_main_content'
  9. : 'margin-bottom-50 dialysis-print-order print-template-two print_page_main_content'
  10. "
  11. >
  12. <div class="order-yy-name">{{ orgname }}</div>
  13. <div class="order-title">血液净化专科护理记录单</div>
  14. <div class="row">
  15. <div class="inline_block">
  16. 科室:
  17. <check-box text="门诊透析" :checked="patientInfo_source_1"></check-box
  18. >&nbsp;
  19. <check-box text="住院" :checked="patientInfo_source_2"></check-box>
  20. </div>
  21. <div class="inline_block" style="margin-left: 5px;">
  22. 住院号:
  23. <div
  24. class="under_line"
  25. style="width: 70px;text-align: left"
  26. v-if="receiverTreatmentAccess.admission_number"
  27. >
  28. {{
  29. patientInfo_source_2
  30. ? receiverTreatmentAccess.admission_number
  31. : "/"
  32. }}
  33. </div>
  34. <div class="under_line" style="width: 70px;text-align: left" v-else>
  35. {{ "/" }}
  36. </div>
  37. </div>
  38. <div class="inline_block" style="margin-left:5px;">
  39. 姓名:
  40. <div class="under_line" style="width: 50px;text-align: left">
  41. {{ patientInfo.name }}
  42. </div>
  43. </div>
  44. <div class="inline_block" style="margin-left: 5px;">
  45. 性别:
  46. <check-box text="男" :checked="patientInfo_gender_1"></check-box
  47. >&nbsp;
  48. <check-box text="女" :checked="patientInfo_gender_2"></check-box>
  49. </div>
  50. <div class="inline_block" style="margin-left: 5px;">
  51. 年龄:
  52. <div class="under_line" style="width: 30px;text-align: left">
  53. {{ getAge(patientInfo) }}
  54. </div>
  55. </div>
  56. </div>
  57. <div class="row">
  58. <div class="inline_block" style="margin-left: 5px;">
  59. 诊断:
  60. <div
  61. class="under_line"
  62. style="width: 880px;text-align: left;word-wrap: break-word;white-space: inherit;"
  63. >
  64. {{ patientInfo.diagnose }}
  65. </div>
  66. </div>
  67. </div>
  68. <div
  69. class="row"
  70. :class="
  71. (this.monitors.length > 8 && this.print_length == 8) ||
  72. (this.monitors.length > 9 && this.print_length == 9)
  73. ? 'margin-bottom-300'
  74. : ''
  75. "
  76. >
  77. <table class="proj_table">
  78. <tbody>
  79. <tr>
  80. <td colspan="2">一、透析前护理评估:</td>
  81. </tr>
  82. <tr>
  83. <td colspan="2">
  84. <div class="row" style="padding: 2px 0;line-height:19px;">
  85. <div class="inline_block">
  86. 入科方式:
  87. <check-box
  88. v-for="(item, index) in way_arr"
  89. :key="index"
  90. :text="item.name"
  91. :checked="
  92. receiverTreatmentAccess.way == item.id ? true : false
  93. "
  94. ></check-box>
  95. <!--<check-box text="扶行" :checked="receiverTreatmentAccess.way==2?true:false"></check-box>-->
  96. <!--<check-box text="轮椅" :checked="receiverTreatmentAccess.way==3?true:false"></check-box>-->
  97. <!--<check-box text="平车" :checked="receiverTreatmentAccess.way==4?true:false"></check-box>-->
  98. </div>
  99. <div class="inline_block" style="margin-left: 10px;">
  100. 意识:
  101. <check-box
  102. v-for="(item, index) in consciousness_arr"
  103. :key="index"
  104. :text="item.name"
  105. :checked="
  106. receiverTreatmentAccess.consciousness == item.id
  107. ? true
  108. : false
  109. "
  110. ></check-box>
  111. <!--<check-box text="清醒" :checked="receiverTreatmentAccess.consciousness==1?true:false"></check-box>-->
  112. <!--<check-box text="嗜睡" :checked="receiverTreatmentAccess.consciousness==2?true:false"></check-box>-->
  113. <!--<check-box text="昏迷" :checked="receiverTreatmentAccess.consciousness==3?true:false"></check-box>-->
  114. <!--<check-box text="模糊" :checked="receiverTreatmentAccess.consciousness==4?true:false"></check-box>-->
  115. </div>
  116. <div class="inline_block" style="margin-left: 10px;">
  117. 透析机编号:
  118. <div
  119. class="under_line"
  120. style="width: 40px;text-align: left"
  121. >
  122. {{
  123. dialysisOrder &&
  124. dialysisOrder.DeviceNumber &&
  125. dialysisOrder.DeviceNumber.number.length > 0
  126. ? dialysisOrder.DeviceNumber.number
  127. : patientInfo.DialysisSchedule.device_number.number
  128. }}
  129. </div>
  130. 型号
  131. <div
  132. class="under_line"
  133. style="width: 70px;text-align: left"
  134. >
  135. {{
  136. predialysis && predialysis.machine_type.length > 0
  137. ? predialysis.machine_type
  138. : ""
  139. }}
  140. </div>
  141. </div>
  142. </div>
  143. <div class="row" style="padding: 2px 0;line-height:19px;">
  144. <div class="inline_block">
  145. 透析频次:
  146. <div
  147. class="under_line"
  148. style="width: 30px;text-align: left"
  149. >
  150. {{
  151. predialysis.dialysis_count
  152. ? predialysis.dialysis_count
  153. : ""
  154. }}
  155. </div>
  156. 次/周
  157. </div>
  158. <div class="inline_block" style="margin-left: 10px;">
  159. 活动性出血:
  160. <check-box
  161. text="无"
  162. :checked="predialysis.is_hemorrhage == 2 ? true : false"
  163. ></check-box>
  164. <check-box
  165. text="异常"
  166. :checked="predialysis.is_hemorrhage == 1 ? true : false"
  167. ></check-box
  168. >(&nbsp;
  169. <check-box
  170. text="穿刺点渗血"
  171. :checked="
  172. predialysis.is_hemorrhage == 1 &&
  173. predialysis.hemorrhage.indexOf('穿刺点渗血') > -1
  174. ? true
  175. : false
  176. "
  177. ></check-box>
  178. <check-box
  179. text="牙龈出血"
  180. :checked="
  181. predialysis.is_hemorrhage == 1 &&
  182. predialysis.hemorrhage.indexOf('牙龈出血') > -1
  183. ? true
  184. : false
  185. "
  186. ></check-box>
  187. <check-box
  188. text="消化道出血"
  189. :checked="
  190. predialysis.is_hemorrhage == 1 &&
  191. predialysis.hemorrhage.indexOf('消化道出血') > -1
  192. ? true
  193. : false
  194. "
  195. ></check-box>
  196. <check-box
  197. text="女性经期"
  198. :checked="
  199. predialysis.is_hemorrhage == 1 &&
  200. predialysis.hemorrhage.indexOf('女性经期') > -1
  201. ? true
  202. : false
  203. "
  204. ></check-box
  205. >其他:
  206. <div
  207. class="under_line"
  208. style="width: 70px;text-align: left"
  209. >
  210. <span v-if="predialysis.is_hemorrhage == 1">{{
  211. predialysis.hemorrhage_other
  212. }}</span>
  213. </div>
  214. &nbsp;)
  215. </div>
  216. </div>
  217. <div class="row" style="padding: 2px 0;line-height:19px;">
  218. <div class="inline_block">
  219. 血管通路(内瘘):
  220. <check-box
  221. text="正常"
  222. :checked="
  223. predialysis.internal_fistula.indexOf('正常') > -1
  224. ? true
  225. : false
  226. "
  227. ></check-box>
  228. <check-box
  229. text="震颤"
  230. :checked="
  231. predialysis.internal_fistula.indexOf('震颤') > -1
  232. ? true
  233. : false
  234. "
  235. ></check-box>
  236. <check-box
  237. text="堵塞"
  238. :checked="
  239. predialysis.internal_fistula.indexOf('堵塞') > -1
  240. ? true
  241. : false
  242. "
  243. ></check-box>
  244. <check-box
  245. text="血肿"
  246. :checked="
  247. predialysis.internal_fistula.indexOf('血肿') > -1
  248. ? true
  249. : false
  250. "
  251. ></check-box>
  252. <check-box
  253. text="淤血"
  254. :checked="
  255. predialysis.internal_fistula.indexOf('淤血') > -1
  256. ? true
  257. : false
  258. "
  259. ></check-box>
  260. <check-box
  261. text="感染"
  262. :checked="
  263. predialysis.internal_fistula.indexOf('感染') > -1
  264. ? true
  265. : false
  266. "
  267. ></check-box>
  268. </div>
  269. <div class="inline_block">
  270. 其它:
  271. <div
  272. class="under_line"
  273. style="width: 300px;text-align: left"
  274. >
  275. {{ predialysis.internal_fistula_other }}
  276. </div>
  277. </div>
  278. </div>
  279. <div class="row" style="padding: 2px 0;line-height:19px;">
  280. <div class="inline_block">
  281. 血管杂音:
  282. <!-- <check-box text="震颤" :checked="isValueIndexOfCheck(record.assessment_before_dislysis, 'internal_fistula', '震颤-存在')"></check-box> -->
  283. <check-box
  284. text="存在"
  285. :checked="
  286. predialysis.blood_access_noise == 1 ? true : false
  287. "
  288. ></check-box>
  289. <check-box
  290. text="不存在"
  291. :checked="
  292. predialysis.blood_access_noise == 2 ? true : false
  293. "
  294. ></check-box>
  295. <check-box
  296. text="减弱"
  297. :checked="
  298. predialysis.blood_access_noise == 3 ? true : false
  299. "
  300. ></check-box
  301. >&emsp;穿刺方式:
  302. <check-box
  303. text="绳梯"
  304. :checked="predialysis.puncture_way == 1 ? true : false"
  305. ></check-box>
  306. <check-box
  307. text="扣眼"
  308. :checked="predialysis.puncture_way == 2 ? true : false"
  309. ></check-box>
  310. <check-box
  311. text="区域"
  312. :checked="predialysis.puncture_way == 3 ? true : false"
  313. ></check-box>
  314. </div>
  315. </div>
  316. <div class="row" style="padding: 2px 0;line-height:19px;">
  317. <div class="inline_block">
  318. 中心静脉置管:
  319. <check-box
  320. text="长期"
  321. :checked="
  322. predialysis.venous_catheterization == 1 ? true : false
  323. "
  324. ></check-box>
  325. <check-box
  326. text="临时"
  327. :checked="
  328. predialysis.venous_catheterization == 2 ? true : false
  329. "
  330. ></check-box
  331. >&emsp;位置:
  332. <check-box
  333. text="锁骨下"
  334. :checked="
  335. predialysis.blood_access_part_id ==
  336. getIsCheckDataConfig(
  337. 'hemodialysis',
  338. 'vascular_access',
  339. '锁骨下'
  340. )
  341. ? true
  342. : false
  343. "
  344. ></check-box>
  345. <check-box
  346. text="颈静脉"
  347. :checked="
  348. predialysis.blood_access_part_id ==
  349. getIsCheckDataConfig(
  350. 'hemodialysis',
  351. 'vascular_access',
  352. '颈静脉'
  353. )
  354. ? true
  355. : false
  356. "
  357. ></check-box>
  358. <check-box
  359. text="股静脉"
  360. :checked="
  361. predialysis.blood_access_part_id ==
  362. getIsCheckDataConfig(
  363. 'hemodialysis',
  364. 'vascular_access',
  365. '股静脉'
  366. )
  367. ? true
  368. : false
  369. "
  370. ></check-box>
  371. <div class="inline_block">
  372. 其它:
  373. <div
  374. class="under_line"
  375. style="width: 50px;text-align: left"
  376. >
  377. <span>
  378. {{ predialysis.venous_catheterization_part_other }}
  379. </span>
  380. </div>
  381. </div>
  382. </div>
  383. </div>
  384. <div class="row" style="padding: 2px 0;line-height:19px;">
  385. <div class="inline_block">
  386. 中心静脉导管:
  387. <check-box
  388. text="正常"
  389. :checked="
  390. predialysis.catheter.indexOf('正常') > -1 ? true : false
  391. "
  392. ></check-box>
  393. <check-box
  394. text="不畅"
  395. :checked="
  396. predialysis.catheter.indexOf('不畅') > -1 ? true : false
  397. "
  398. ></check-box>
  399. <check-box
  400. text="血流不足"
  401. :checked="
  402. predialysis.catheter.indexOf('血流不足') > -1
  403. ? true
  404. : false
  405. "
  406. ></check-box
  407. >(
  408. <check-box
  409. text="正接"
  410. :checked="
  411. predialysis.catheter.indexOf('正接') > -1 ? true : false
  412. "
  413. ></check-box
  414. >/
  415. <check-box
  416. text="反接"
  417. :checked="
  418. predialysis.catheter.indexOf('反接') > -1 ? true : false
  419. "
  420. ></check-box
  421. >)
  422. <check-box
  423. text="血栓"
  424. :checked="
  425. predialysis.catheter.indexOf('血栓') > -1 ? true : false
  426. "
  427. ></check-box>
  428. <check-box
  429. text="缝线脱落"
  430. :checked="
  431. predialysis.catheter.indexOf('缝线脱落') > -1
  432. ? true
  433. : false
  434. "
  435. ></check-box>
  436. <check-box
  437. text="导管脱落"
  438. :checked="
  439. predialysis.catheter.indexOf('导管脱落') > -1
  440. ? true
  441. : false
  442. "
  443. ></check-box>
  444. <check-box
  445. text="感染"
  446. :checked="
  447. predialysis.catheter.indexOf('感染') > -1 ? true : false
  448. "
  449. ></check-box>
  450. <check-box
  451. text="破损"
  452. :checked="
  453. predialysis.catheter.indexOf('破损') > -1 ? true : false
  454. "
  455. ></check-box>
  456. </div>
  457. </div>
  458. <div class="row" style="padding: 2px 0;line-height:19px;">
  459. <div class="inline_block">
  460. 急诊:
  461. <check-box
  462. text="急性心衰"
  463. :checked="
  464. predialysis.emergency_treatment == 1 ? true : false
  465. "
  466. ></check-box>
  467. <check-box
  468. text="高血钾"
  469. :checked="
  470. predialysis.emergency_treatment == 2 ? true : false
  471. "
  472. ></check-box>
  473. <check-box
  474. text="重症酸中毒"
  475. :checked="
  476. predialysis.emergency_treatment == 3 ? true : false
  477. "
  478. ></check-box>
  479. <div class="inline_block">
  480. 其它:
  481. <div
  482. class="under_line"
  483. style="min-width: 100px;text-align: left"
  484. >
  485. <span>{{ predialysis.emergency_treatment_other }}</span>
  486. </div>
  487. </div>
  488. </div>
  489. <div class="inline_block">
  490. 病情:
  491. <!--<check-box text="一般" :checked="receiverTreatmentAccess.sick_condition == 1?true:false"></check-box>-->
  492. <!--<check-box text="重" :checked="receiverTreatmentAccess.sick_condition == 2?true:false"></check-box>-->
  493. <check-box
  494. v-for="(item, index) in sick_condition_arr"
  495. :key="index"
  496. :text="item.name"
  497. :checked="
  498. receiverTreatmentAccess.sick_condition == item.id
  499. ? true
  500. : false
  501. "
  502. ></check-box>
  503. </div>
  504. </div>
  505. </td>
  506. </tr>
  507. <tr>
  508. <td colspan="2">
  509. <div class="row" style="padding: 2px 0;line-height:19px;">
  510. <div class="inline_block">
  511. 跌倒风险评估:&nbsp;评分:
  512. <div
  513. class="under_line"
  514. style="width: 50px;text-align: left"
  515. >
  516. {{ receiverTreatmentAccess.score }}
  517. </div>
  518. 分 &emsp;风险程度:
  519. <check-box
  520. text="无"
  521. :checked="
  522. receiverTreatmentAccess.danger_level == 1 ? true : false
  523. "
  524. ></check-box>
  525. <check-box
  526. text="低风险"
  527. :checked="
  528. receiverTreatmentAccess.danger_level == 2 ? true : false
  529. "
  530. ></check-box>
  531. <check-box
  532. text="中度风险"
  533. :checked="
  534. receiverTreatmentAccess.danger_level == 3 ? true : false
  535. "
  536. ></check-box>
  537. <check-box
  538. text="高风险"
  539. :checked="
  540. receiverTreatmentAccess.danger_level == 4 ? true : false
  541. "
  542. ></check-box>
  543. </div>
  544. </div>
  545. <div class="row" style="padding: 2px 0;line-height:19px;">
  546. <div class="inline_block">
  547. 营养状况评估:&nbsp;食欲:
  548. <check-box
  549. v-for="(item, index) in appetite_arr"
  550. :key="item.id"
  551. :text="item.name"
  552. :checked="
  553. receiverTreatmentAccess.appetite == item.id
  554. ? true
  555. : false
  556. "
  557. ></check-box>
  558. <!--<check-box text="下降" :checked="receiverTreatmentAccess.appetite == 2?true:false"></check-box>-->
  559. </div>
  560. <div class="inline_block">
  561. &emsp; 摄入量:
  562. <check-box
  563. v-for="(item, index) in intake_arr"
  564. :key="index"
  565. :text="item.name"
  566. :checked="
  567. receiverTreatmentAccess.intake == item.id ? true : false
  568. "
  569. ></check-box>
  570. <!--<check-box text="正常" :checked="receiverTreatmentAccess.intake == 1?true:false"></check-box>-->
  571. <!--<check-box text="减少" :checked="receiverTreatmentAccess.intake == 2?true:false"></check-box>-->
  572. </div>
  573. <div class="inline_block">
  574. &emsp;营养状况:
  575. <check-box
  576. v-for="(item, index) in nutrition_arr"
  577. :key="index"
  578. :text="item.name"
  579. :checked="
  580. receiverTreatmentAccess.nutrition == item.id
  581. ? true
  582. : false
  583. "
  584. ></check-box>
  585. <!--<check-box text="正常" :checked="receiverTreatmentAccess.nutrition == 1?true:false"></check-box>-->
  586. <!--<check-box text="营养不良" :checked="receiverTreatmentAccess.nutrition == 2?true:false"></check-box>-->
  587. </div>
  588. </div>
  589. <div class="row" style="padding: 2px 0; line-height:19px;">
  590. <div class="inline_block">
  591. 心理评估:
  592. <check-box
  593. text="正常"
  594. :checked="
  595. receiverTreatmentAccess.psychological_assessment == 1
  596. ? true
  597. : false
  598. "
  599. ></check-box>
  600. <check-box
  601. text="异常"
  602. :checked="
  603. receiverTreatmentAccess.psychological_assessment == 2
  604. ? true
  605. : false
  606. "
  607. ></check-box>
  608. </div>
  609. <div class="inline_block">
  610. <div class="under_line" style="width: 100px;">
  611. <span
  612. v-if="
  613. receiverTreatmentAccess.psychological_assessment == 2
  614. "
  615. >
  616. {{
  617. receiverTreatmentAccess.psychological_assessment_other
  618. }}
  619. </span>
  620. </div>
  621. </div>
  622. </div>
  623. </td>
  624. </tr>
  625. <tr>
  626. <td style="padding: 0; position: relative;" colspan="2">
  627. <table class="inside_table">
  628. <tbody>
  629. <tr>
  630. <td
  631. colspan="10"
  632. style="font-size:16px;padding: 6px 8px;line-height: 30px;text-align:left;"
  633. >
  634. 二、透析中护理记录:
  635. </td>
  636. </tr>
  637. <tr style="font-size:16px;">
  638. <td width="100">时间</td>
  639. <td width="30">
  640. T
  641. <br />C°
  642. </td>
  643. <td width="30">
  644. P
  645. <br />次/分
  646. </td>
  647. <td width="30">
  648. R
  649. <br />次/分
  650. </td>
  651. <td width="100">
  652. BP
  653. <br />mmHg
  654. </td>
  655. <td width="60">
  656. 静脉压/动脉压
  657. <br />mmHg
  658. </td>
  659. <td width="80">
  660. 血流量
  661. <br />ml/min
  662. </td>
  663. <td width="90">超滤量累计L</td>
  664. <td width="80">
  665. 钠浓度
  666. <br />mmol/L
  667. </td>
  668. <td width="240">
  669. 病情特殊情况处理
  670. <br />及专科护理措施记录
  671. </td>
  672. <td width="100">护士签名</td>
  673. </tr>
  674. <tr
  675. v-if="
  676. (this.predialysis.systolic_blood_pressure != 0 &&
  677. this.predialysis.diastolic_blood_pressure != 0) ||
  678. this.predialysis.remark.length > 0 ||
  679. predialysis.pulse_frequency != 0 ||
  680. predialysis.breathing_rate != 0 ||
  681. predialysis.temperature != 0
  682. "
  683. >
  684. <td>{{ "透析前" }}</td>
  685. <td>
  686. {{
  687. predialysis.temperature ? predialysis.temperature : ""
  688. }}
  689. </td>
  690. <td>
  691. {{
  692. predialysis.pulse_frequency
  693. ? predialysis.pulse_frequency
  694. : ""
  695. }}
  696. </td>
  697. <td>
  698. {{
  699. predialysis.breathing_rate
  700. ? predialysis.breathing_rate
  701. : ""
  702. }}
  703. </td>
  704. <td>
  705. {{
  706. predialysis.systolic_blood_pressure
  707. ? predialysis.systolic_blood_pressure
  708. : ""
  709. }}/{{
  710. predialysis.diastolic_blood_pressure
  711. ? predialysis.diastolic_blood_pressure
  712. : ""
  713. }}
  714. </td>
  715. <td>{{ "" }}/{{ "" }}</td>
  716. <td>{{ "" }}</td>
  717. <td>{{ "" }}</td>
  718. <td>{{ "" }}</td>
  719. <td style="line-height:16px;padding:0px;">
  720. <div
  721. style="min-height:40px;line-height:40px; overflow:hidden;"
  722. >
  723. <span
  724. style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;"
  725. >{{ predialysis.remark }}</span
  726. >
  727. </div>
  728. </td>
  729. <td>
  730. <span
  731. v-if="setAdminUserES(predialysis.creater) == ''"
  732. >{{ getAdminUser(predialysis.creater) }}</span
  733. >
  734. <img
  735. class="es-img"
  736. :src="setAdminUserES(predialysis.creater)"
  737. alt
  738. srcset
  739. v-else
  740. />
  741. </td>
  742. </tr>
  743. <tr v-for="(monitor, index) in monitors" :key="index">
  744. <td>{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
  745. <td>
  746. {{ monitor.temperature ? monitor.temperature : "" }}
  747. </td>
  748. <td>
  749. {{
  750. monitor.pulse_frequency ? monitor.pulse_frequency : ""
  751. }}
  752. </td>
  753. <td>
  754. {{
  755. monitor.breathing_rate ? monitor.breathing_rate : ""
  756. }}
  757. </td>
  758. <td>
  759. {{
  760. monitor.systolic_blood_pressure
  761. ? monitor.systolic_blood_pressure
  762. : ""
  763. }}/{{
  764. monitor.diastolic_blood_pressure
  765. ? monitor.diastolic_blood_pressure
  766. : ""
  767. }}
  768. </td>
  769. <td>
  770. {{
  771. monitor.venous_pressure
  772. ? monitor.venous_pressure
  773. : ""
  774. }}/{{
  775. monitor.arterial_pressure
  776. ? monitor.arterial_pressure
  777. : ""
  778. }}
  779. </td>
  780. <td>
  781. {{
  782. monitor.blood_flow_volume
  783. ? monitor.blood_flow_volume
  784. : ""
  785. }}
  786. </td>
  787. <td>
  788. {{
  789. monitor.ultrafiltration_volume
  790. ? monitor.ultrafiltration_volume
  791. : "/"
  792. }}
  793. </td>
  794. <td>
  795. {{
  796. monitor.sodium_concentration
  797. ? monitor.sodium_concentration
  798. : ""
  799. }}
  800. </td>
  801. <td style="line-height:16px;padding:0px;">
  802. <div
  803. style="min-height:40px;line-height:40px; overflow:hidden;"
  804. >
  805. <span
  806. style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;"
  807. >
  808. {{ monitor.symptom }} &nbsp;{{
  809. monitor.dispose
  810. }}
  811. &nbsp;{{ monitor.result }}
  812. </span>
  813. </div>
  814. </td>
  815. <td>
  816. <span
  817. v-if="setAdminUserES(monitor.monitoring_nurse) == ''"
  818. >{{ getAdminUser(monitor.monitoring_nurse) }}</span
  819. >
  820. <img
  821. class="es-img"
  822. :src="setAdminUserES(monitor.monitoring_nurse)"
  823. alt
  824. srcset
  825. v-else
  826. />
  827. </td>
  828. </tr>
  829. </tbody>
  830. </table>
  831. <div
  832. v-if="
  833. (this.monitors.length > 8 && this.print_length == 8) ||
  834. (this.monitors.length > 9 && this.print_length == 9)
  835. "
  836. class="print-yema"
  837. >
  838. 1
  839. </div>
  840. </td>
  841. </tr>
  842. </tbody>
  843. </table>
  844. </div>
  845. <template
  846. v-if="
  847. (this.monitors.length > 8 && this.print_length == 8) ||
  848. (this.monitors.length > 9 && this.print_length == 9)
  849. "
  850. >
  851. <div class="order-yy-name">{{ orgname }}</div>
  852. <div class="order-title">血液净化专科护理记录单</div>
  853. <div class="row" style="margin-top: 15px">
  854. <div class="inline_block">
  855. 科室:
  856. <check-box
  857. text="门诊透析"
  858. :checked="patientInfo_source_1"
  859. ></check-box
  860. >&nbsp;
  861. <check-box text="住院" :checked="patientInfo_source_2"></check-box>
  862. </div>
  863. <div class="inline_block" style="margin-left: 5px;">
  864. 住院号:
  865. <div
  866. class="under_line"
  867. style="width: 70px;text-align: left"
  868. v-if="receiverTreatmentAccess.admission_number"
  869. >
  870. {{
  871. patientInfo_source_2
  872. ? receiverTreatmentAccess.admission_number
  873. : "/"
  874. }}
  875. </div>
  876. <div class="under_line" style="width: 70px;text-align: left" v-else>
  877. {{ "/" }}
  878. </div>
  879. </div>
  880. <div class="inline_block" style="margin-left:10px;">
  881. 姓名:
  882. <div class="under_line" style="width: 50px;text-align: left">
  883. {{ patientInfo.name }}
  884. </div>
  885. </div>
  886. <div class="inline_block" style="margin-left: 10px;">
  887. 性别:
  888. <check-box text="男" :checked="patientInfo_gender_1"></check-box
  889. >&nbsp;
  890. <check-box text="女" :checked="patientInfo_gender_2"></check-box>
  891. </div>
  892. <div class="inline_block" style="margin-left: 10px;">
  893. 年龄:
  894. <div class="under_line" style="width: 30px;text-align: left">
  895. {{ getAge(patientInfo) }}
  896. </div>
  897. </div>
  898. <div class="inline_block" style="margin-left: 10px;">
  899. 诊断:
  900. <div class="under_line" style="width: 180px;text-align: left">
  901. {{ patientInfo.diagnose }}
  902. </div>
  903. </div>
  904. </div>
  905. </template>
  906. <div
  907. class="row"
  908. :style="
  909. (this.monitors.length <= 8 && this.print_length == 8) ||
  910. (this.monitors.length <= 9 && this.print_length == 9)
  911. ? 'margin-top:-11px;position: relative;'
  912. : 'position: relative;'
  913. "
  914. >
  915. <table class="proj_table">
  916. <tbody>
  917. <tr v-if="this.monitors2.length > 0">
  918. <td style="padding: 0;" colspan="2">
  919. <table class="inside_table">
  920. <tbody>
  921. <tr>
  922. <td
  923. colspan="10"
  924. style="font-size:16px;padding: 6px 8px;line-height: 30px;text-align:left;"
  925. >
  926. 二、透析中护理记录:
  927. </td>
  928. </tr>
  929. <tr>
  930. <td width="100">时间</td>
  931. <td width="30">
  932. T
  933. <br />C°
  934. </td>
  935. <td width="30">
  936. P
  937. <br />次/分
  938. </td>
  939. <td width="30">
  940. R
  941. <br />次/分
  942. </td>
  943. <td width="100">
  944. BP
  945. <br />mmHg
  946. </td>
  947. <td width="70">
  948. 静脉压/动脉压
  949. <br />mmHg
  950. </td>
  951. <td width="80">
  952. 血流量
  953. <br />ml/min
  954. </td>
  955. <td width="90">超滤量累计L</td>
  956. <td width="80">
  957. 钠浓度
  958. <br />mmol/L
  959. </td>
  960. <td width="240">
  961. 病情特殊情况处理
  962. <br />及专科护理措施记录
  963. </td>
  964. <td width="100">护士签名</td>
  965. </tr>
  966. <tr v-for="(monitor, index) in monitors2" :key="index">
  967. <td>{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
  968. <td>
  969. {{ monitor.temperature ? monitor.temperature : "" }}
  970. </td>
  971. <td>
  972. {{
  973. monitor.pulse_frequency ? monitor.pulse_frequency : ""
  974. }}
  975. </td>
  976. <td>
  977. {{
  978. monitor.breathing_rate ? monitor.breathing_rate : ""
  979. }}
  980. </td>
  981. <td>
  982. {{
  983. monitor.systolic_blood_pressure
  984. ? monitor.systolic_blood_pressure
  985. : ""
  986. }}/{{
  987. monitor.diastolic_blood_pressure
  988. ? monitor.diastolic_blood_pressure
  989. : ""
  990. }}
  991. </td>
  992. <td>
  993. {{
  994. monitor.venous_pressure
  995. ? monitor.venous_pressure
  996. : ""
  997. }}/{{
  998. monitor.arterial_pressure
  999. ? monitor.arterial_pressure
  1000. : ""
  1001. }}
  1002. </td>
  1003. <td>
  1004. {{
  1005. monitor.blood_flow_volume
  1006. ? monitor.blood_flow_volume
  1007. : ""
  1008. }}
  1009. </td>
  1010. <td>
  1011. {{
  1012. monitor.ultrafiltration_volume
  1013. ? monitor.ultrafiltration_volume
  1014. : "/"
  1015. }}
  1016. </td>
  1017. <td>
  1018. {{
  1019. monitor.sodium_concentration
  1020. ? monitor.sodium_concentration
  1021. : ""
  1022. }}
  1023. </td>
  1024. <td style="line-height:16px;">
  1025. <div
  1026. style="min-height:40px;line-height:40px; overflow:hidden;"
  1027. >
  1028. <span
  1029. style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;"
  1030. >
  1031. {{ monitor.symptom }} &nbsp;{{
  1032. monitor.dispose
  1033. }}
  1034. &nbsp;{{ monitor.result }}
  1035. </span>
  1036. </div>
  1037. </td>
  1038. <td>
  1039. <span
  1040. v-if="setAdminUserES(monitor.monitoring_nurse) == ''"
  1041. >{{ getAdminUser(monitor.monitoring_nurse) }}</span
  1042. >
  1043. <img
  1044. class="es-img"
  1045. :src="setAdminUserES(monitor.monitoring_nurse)"
  1046. alt
  1047. srcset
  1048. v-else
  1049. />
  1050. </td>
  1051. </tr>
  1052. </tbody>
  1053. </table>
  1054. </td>
  1055. </tr>
  1056. <tr>
  1057. <td
  1058. colspan="2"
  1059. style="font-size:16px;padding: 6px 8px;line-height: 30px;text-align:left;"
  1060. >
  1061. 三、透析后护理记录
  1062. </td>
  1063. </tr>
  1064. <tr>
  1065. <td>
  1066. <div class="row" style="padding: 2px 0;line-height:19px;">
  1067. <div class="inline_block">
  1068. 透析过程:
  1069. <check-box
  1070. text="完成"
  1071. :checked="
  1072. afterdialysis.dialysis_process == 1 ? true : false
  1073. "
  1074. ></check-box>
  1075. <check-box
  1076. text="提前"
  1077. :checked="
  1078. afterdialysis.dialysis_process == 2 ? true : false
  1079. "
  1080. ></check-box>
  1081. <div class="inline_block">
  1082. <div
  1083. class="under_line"
  1084. style="width: 30px;text-align: left"
  1085. >
  1086. <span v-if="afterdialysis.dialysis_process == 2">
  1087. {{ afterdialysis.in_advance_minute }}
  1088. </span>
  1089. </div>
  1090. min
  1091. </div>
  1092. </div>
  1093. <div class="inline_block">
  1094. &emsp;原因:
  1095. <check-box
  1096. text="心梗"
  1097. :checked="
  1098. afterdialysis.in_advance_reason.indexOf('心梗') > -1
  1099. ? true
  1100. : false
  1101. "
  1102. ></check-box>
  1103. <check-box
  1104. text="心律失常"
  1105. :checked="
  1106. afterdialysis.in_advance_reason.indexOf('心律失常') > -1
  1107. ? true
  1108. : false
  1109. "
  1110. ></check-box>
  1111. <check-box
  1112. text="低血压"
  1113. :checked="
  1114. afterdialysis.in_advance_reason.indexOf('低血压') > -1
  1115. ? true
  1116. : false
  1117. "
  1118. ></check-box>
  1119. <check-box
  1120. text="血流不止"
  1121. :checked="
  1122. afterdialysis.in_advance_reason.indexOf('血流不止') > -1
  1123. ? true
  1124. : false
  1125. "
  1126. ></check-box>
  1127. </div>
  1128. <div class="inline_block">
  1129. &emsp; 其他原因:
  1130. <div class="inline_block">
  1131. <div
  1132. class="under_line"
  1133. style="width: 150px;text-align: left"
  1134. >
  1135. <span
  1136. v-if="afterdialysis.in_advance_reason.length > 0"
  1137. >{{ afterdialysis.in_advance_reason_other }}</span
  1138. >
  1139. </div>
  1140. </div>
  1141. </div>
  1142. </div>
  1143. <div class="row" style="padding: 2px 0;line-height:19px;">
  1144. <div class="inline_block">
  1145. 内瘘管拔针后压迫止血时间:
  1146. <div class="inline_block">
  1147. <div
  1148. class="under_line"
  1149. style="width: 30px;text-align: left"
  1150. >
  1151. <span v-if="afterdialysis.hemostasis_minute">
  1152. {{ afterdialysis.hemostasis_minute }}
  1153. </span>
  1154. </div>
  1155. min
  1156. </div>
  1157. </div>
  1158. <div class="inline_block">
  1159. <check-box
  1160. text="需要护士"
  1161. :checked="
  1162. afterdialysis.hemostasis_opera == 1 ? true : false
  1163. "
  1164. ></check-box>
  1165. <check-box
  1166. text="他人协助"
  1167. :checked="
  1168. afterdialysis.hemostasis_opera == 2 ? true : false
  1169. "
  1170. ></check-box>
  1171. <check-box
  1172. text="自己压迫"
  1173. :checked="
  1174. afterdialysis.hemostasis_opera == 3 ? true : false
  1175. "
  1176. ></check-box>
  1177. </div>
  1178. <!--<div class="inline_block" style="margin-left: 30px;">-->
  1179. <!--实际超滤量:-->
  1180. <!--<div class="under_line" style="width: 50px;">-->
  1181. <!--{{afterdialysis.actual_ultrafiltration?afterdialysis.actual_ultrafiltration:'/'}}-->
  1182. <!--</div>-->
  1183. <!--L-->
  1184. <!--</div>-->
  1185. </div>
  1186. <div class="row" style="padding: 2px 0;line-height:19px;">
  1187. <div class="inline_block">
  1188. 内瘘震颤和血管杂音:
  1189. <check-box
  1190. text="正常"
  1191. :checked="
  1192. afterdialysis.internal_fistula.indexOf('正常') > -1
  1193. ? true
  1194. : false
  1195. "
  1196. ></check-box>
  1197. <check-box
  1198. text="减弱"
  1199. :checked="
  1200. afterdialysis.internal_fistula.indexOf('减弱') > -1
  1201. ? true
  1202. : false
  1203. "
  1204. ></check-box>
  1205. <check-box
  1206. text="不存在"
  1207. :checked="
  1208. afterdialysis.internal_fistula.indexOf('不存在') > -1
  1209. ? true
  1210. : false
  1211. "
  1212. ></check-box>
  1213. </div>
  1214. <div class="inline_block">
  1215. &emsp;失衡综合症:
  1216. <check-box
  1217. text="无"
  1218. :checked="
  1219. afterdialysis.complication.indexOf('无') > -1
  1220. ? true
  1221. : false
  1222. "
  1223. ></check-box>
  1224. <check-box
  1225. text="有"
  1226. :checked="
  1227. afterdialysis.complication.indexOf('头晕') > -1 ||
  1228. afterdialysis.complication.indexOf('头痛') > -1 ||
  1229. afterdialysis.complication.indexOf('呕吐') > -1 ||
  1230. afterdialysis.complication.indexOf('低血压') > -1
  1231. ? true
  1232. : false
  1233. "
  1234. ></check-box>
  1235. </div>
  1236. <div class="inline_block">
  1237. <check-box
  1238. :checked="
  1239. afterdialysis.complication.indexOf('头晕') > -1
  1240. ? true
  1241. : false
  1242. "
  1243. text="头晕"
  1244. ></check-box>
  1245. <check-box
  1246. :checked="
  1247. afterdialysis.complication.indexOf('头痛') > -1
  1248. ? true
  1249. : false
  1250. "
  1251. text="头痛"
  1252. ></check-box>
  1253. <check-box
  1254. :checked="
  1255. afterdialysis.complication.indexOf('呕吐') > -1
  1256. ? true
  1257. : false
  1258. "
  1259. text="呕吐"
  1260. ></check-box>
  1261. <check-box
  1262. :checked="
  1263. afterdialysis.complication.indexOf('低血压') > -1
  1264. ? true
  1265. : false
  1266. "
  1267. text="低血压"
  1268. ></check-box
  1269. >)
  1270. </div>
  1271. </div>
  1272. <div class="row" style="padding: 2px 0;line-height:19px;">
  1273. <div class="inline_block">
  1274. 透析器及血路管凝血情况:动脉管道:
  1275. <check-box
  1276. text="0"
  1277. :checked="afterdialysis.arterial_tube == 1 ? true : false"
  1278. ></check-box>
  1279. <check-box
  1280. text="+"
  1281. :checked="afterdialysis.arterial_tube == 2 ? true : false"
  1282. ></check-box>
  1283. <check-box
  1284. text="++"
  1285. :checked="afterdialysis.arterial_tube == 3 ? true : false"
  1286. ></check-box>
  1287. <check-box
  1288. text="+++"
  1289. :checked="afterdialysis.arterial_tube == 4 ? true : false"
  1290. ></check-box>
  1291. </div>
  1292. <div class="inline_block">
  1293. 静脉管道:
  1294. <check-box
  1295. text="0"
  1296. :checked="
  1297. afterdialysis.intravenous_tube == 1 ? true : false
  1298. "
  1299. ></check-box>
  1300. <check-box
  1301. text="+"
  1302. :checked="
  1303. afterdialysis.intravenous_tube == 2 ? true : false
  1304. "
  1305. ></check-box>
  1306. <check-box
  1307. text="++"
  1308. :checked="
  1309. afterdialysis.intravenous_tube == 3 ? true : false
  1310. "
  1311. ></check-box>
  1312. <check-box
  1313. text="+++"
  1314. :checked="
  1315. afterdialysis.intravenous_tube == 4 ? true : false
  1316. "
  1317. ></check-box>
  1318. </div>
  1319. <div class="inline_block">
  1320. 透析器凝血:
  1321. <check-box
  1322. text="0"
  1323. :checked="afterdialysis.cruor.indexOf('透析器-0度') > -1"
  1324. ></check-box>
  1325. <check-box
  1326. text="+"
  1327. :checked="afterdialysis.cruor.indexOf('透析器-Ⅰ度') > -1"
  1328. ></check-box>
  1329. <check-box
  1330. text="++"
  1331. :checked="afterdialysis.cruor.indexOf('透析器-Ⅱ度') > -1"
  1332. ></check-box>
  1333. <check-box
  1334. text="+++"
  1335. :checked="afterdialysis.cruor.indexOf('透析器-Ⅲ度') > -1"
  1336. ></check-box>
  1337. <!--<div-->
  1338. <!--class="under_line"-->
  1339. <!--style="width:200px;text-align:center;"-->
  1340. <!--&gt;-->
  1341. <!--{{ afterdialysis.cruor ? afterdialysis.cruor : "/" }}-->
  1342. <!--</div>-->
  1343. </div>
  1344. </div>
  1345. </td>
  1346. </tr>
  1347. <tr>
  1348. <td colspan="2">
  1349. <div class="row" style="padding: 2px 0;line-height:19px;">
  1350. <div class="inline_block">
  1351. 责任护士:
  1352. <div
  1353. class="under_line"
  1354. style="width: 70px;text-align: left"
  1355. >
  1356. <span
  1357. v-if="
  1358. setAdminUserES(
  1359. dialysisOrder == null
  1360. ? 0
  1361. : dialysisOrder.start_nurse
  1362. ) == ''
  1363. "
  1364. >
  1365. {{
  1366. getAdminUser(
  1367. dialysisOrder == null
  1368. ? 0
  1369. : dialysisOrder.start_nurse
  1370. )
  1371. }}
  1372. </span>
  1373. <img
  1374. class="es-img"
  1375. :src="
  1376. setAdminUserES(
  1377. dialysisOrder == null
  1378. ? 0
  1379. : dialysisOrder.start_nurse
  1380. )
  1381. "
  1382. alt
  1383. srcset
  1384. v-else
  1385. />
  1386. </div>
  1387. </div>
  1388. <div class="inline_block">
  1389. 穿刺者:
  1390. <div
  1391. class="under_line"
  1392. style="width: 70px;text-align: left"
  1393. >
  1394. <span
  1395. v-if="
  1396. setAdminUserES(
  1397. dialysisOrder == null
  1398. ? 0
  1399. : dialysisOrder.puncture_nurse
  1400. ) == ''
  1401. "
  1402. >
  1403. {{
  1404. getAdminUser(
  1405. dialysisOrder == null
  1406. ? 0
  1407. : dialysisOrder.puncture_nurse
  1408. )
  1409. }}
  1410. </span>
  1411. <img
  1412. class="es-img"
  1413. :src="
  1414. setAdminUserES(
  1415. dialysisOrder == null
  1416. ? 0
  1417. : dialysisOrder.puncture_nurse
  1418. )
  1419. "
  1420. alt
  1421. srcset
  1422. v-else
  1423. />
  1424. </div>
  1425. </div>
  1426. <div class="inline_block">
  1427. &emsp;核对人:
  1428. <div
  1429. class="under_line"
  1430. style="width: 70px;text-align: left"
  1431. v-if="dialysisOrder == null"
  1432. >
  1433. <span
  1434. v-if="
  1435. setAdminUserES(check == null ? 0 : check.creater) ==
  1436. ''
  1437. "
  1438. >
  1439. {{ getAdminUser(check == null ? 0 : check.creater) }}
  1440. </span>
  1441. <img
  1442. class="es-img"
  1443. :src="setAdminUserES(check == null ? 0 : check.creater)"
  1444. alt
  1445. srcset
  1446. v-else
  1447. />
  1448. </div>
  1449. <div
  1450. class="under_line"
  1451. style="width: 70px;text-align: left"
  1452. v-if="
  1453. dialysisOrder != null &&
  1454. dialysisOrder.start_nurse == check.modifier
  1455. "
  1456. >
  1457. <span
  1458. v-if="
  1459. setAdminUserES(check == null ? 0 : check.creater) ==
  1460. ''
  1461. "
  1462. >
  1463. {{ getAdminUser(check == null ? 0 : check.creater) }}
  1464. </span>
  1465. <img
  1466. class="es-img"
  1467. :src="setAdminUserES(check == null ? 0 : check.creater)"
  1468. alt
  1469. srcset
  1470. v-else
  1471. />
  1472. </div>
  1473. <div
  1474. class="under_line"
  1475. style="width: 70px;text-align: left"
  1476. v-if="
  1477. dialysisOrder != null &&
  1478. dialysisOrder.start_nurse == check.creater
  1479. "
  1480. >
  1481. <span
  1482. v-if="
  1483. setAdminUserES(check == null ? 0 : check.modifier) ==
  1484. ''
  1485. "
  1486. >
  1487. {{ getAdminUser(check == null ? 0 : check.modifier) }}
  1488. </span>
  1489. <img
  1490. class="es-img"
  1491. :src="
  1492. setAdminUserES(check == null ? 0 : check.modifier)
  1493. "
  1494. alt
  1495. srcset
  1496. v-else
  1497. />
  1498. </div>
  1499. <div
  1500. class="under_line"
  1501. style="width: 70px;text-align: left"
  1502. v-if="
  1503. dialysisOrder != null &&
  1504. dialysisOrder.start_nurse != check.creater &&
  1505. dialysisOrder.start_nurse != check.modifier
  1506. "
  1507. >
  1508. <span
  1509. v-if="
  1510. setAdminUserES(check == null ? 0 : check.creater) ==
  1511. ''
  1512. "
  1513. >
  1514. {{ getAdminUser(check == null ? 0 : check.creater) }}
  1515. </span>
  1516. <img
  1517. class="es-img"
  1518. :src="setAdminUserES(check == null ? 0 : check.creater)"
  1519. alt
  1520. srcset
  1521. v-else
  1522. />
  1523. </div>
  1524. </div>
  1525. <div class="inline_block">
  1526. &emsp;核对时间:
  1527. <div
  1528. class="under_line"
  1529. style="width: 210px;text-align: left"
  1530. v-if="check == null"
  1531. >
  1532. <!--{{getTime(check.check_time,'{y}年{m}月{d}日 {h}时{i}分')}}-->
  1533. </div>
  1534. <div
  1535. class="under_line"
  1536. style="width: 210px;text-align: left"
  1537. v-if="
  1538. check != null &&
  1539. check.first_check_time < check.check_time
  1540. "
  1541. >
  1542. {{
  1543. getTime(check.check_time, "{y}年{m}月{d}日 {h}时{i}分")
  1544. }}
  1545. </div>
  1546. <div
  1547. class="under_line"
  1548. style="width: 210px;text-align: left"
  1549. v-if="
  1550. check != null &&
  1551. check.check_time < check.first_check_time
  1552. "
  1553. >
  1554. {{
  1555. getTime(
  1556. check.first_check_time,
  1557. "{y}年{m}月{d}日 {h}时{i}分"
  1558. )
  1559. }}
  1560. </div>
  1561. </div>
  1562. <div class="inline_block">
  1563. &emsp;收针者:
  1564. <div
  1565. class="under_line"
  1566. style="width: 70px;text-align: left"
  1567. >
  1568. <span
  1569. v-if="
  1570. setAdminUserES(
  1571. dialysisOrder == null
  1572. ? 0
  1573. : dialysisOrder.finish_nurse
  1574. ) == ''
  1575. "
  1576. >
  1577. {{
  1578. getAdminUser(
  1579. dialysisOrder == null
  1580. ? 0
  1581. : dialysisOrder.finish_nurse
  1582. )
  1583. }}
  1584. </span>
  1585. <img
  1586. class="es-img"
  1587. :src="
  1588. setAdminUserES(
  1589. dialysisOrder == null
  1590. ? 0
  1591. : dialysisOrder.finish_nurse
  1592. )
  1593. "
  1594. alt
  1595. srcset
  1596. v-else
  1597. />
  1598. </div>
  1599. </div>
  1600. </div>
  1601. </td>
  1602. </tr>
  1603. <tr>
  1604. <td colspan="2">
  1605. <div class="row" style="padding: 2px 0; line-height:19px;">
  1606. 患者去向:
  1607. <check-box
  1608. text="门诊"
  1609. :checked="afterdialysis.patient_gose == 4 ? true : false"
  1610. ></check-box>
  1611. <check-box
  1612. text="离院"
  1613. :checked="afterdialysis.patient_gose == 1 ? true : false"
  1614. ></check-box>
  1615. <check-box
  1616. text="留观"
  1617. :checked="afterdialysis.patient_gose == 2 ? true : false"
  1618. ></check-box>
  1619. <check-box
  1620. text="住院"
  1621. :checked="afterdialysis.patient_gose == 3 ? true : false"
  1622. ></check-box
  1623. >( 科室
  1624. <div class="under_line" style="width: 200px;">
  1625. <span v-if="afterdialysis.patient_gose == 3">
  1626. {{ afterdialysis.inpatient_department }}
  1627. </span>
  1628. </div>
  1629. </div>
  1630. <div class="row" style="padding: 2px 0; line-height:19px;">
  1631. <div class="inline_block">
  1632. 血透室护士签名:
  1633. <div
  1634. class="under_line"
  1635. style="width: 100px;text-align: left"
  1636. >
  1637. <span
  1638. v-if="
  1639. setAdminUserES(
  1640. dialysisOrder == null
  1641. ? 0
  1642. : dialysisOrder.start_nurse
  1643. ) == ''
  1644. "
  1645. >
  1646. {{
  1647. getAdminUser(
  1648. dialysisOrder == null
  1649. ? 0
  1650. : dialysisOrder.start_nurse
  1651. )
  1652. }}
  1653. </span>
  1654. <img
  1655. class="es-img"
  1656. :src="
  1657. setAdminUserES(
  1658. dialysisOrder == null
  1659. ? 0
  1660. : dialysisOrder.start_nurse
  1661. )
  1662. "
  1663. alt
  1664. srcset
  1665. v-else
  1666. />
  1667. </div>
  1668. </div>
  1669. <div class="inline_block">
  1670. &emsp;病区护士签名:
  1671. <div
  1672. class="under_line"
  1673. style="width: 100px;text-align: left"
  1674. ></div>
  1675. </div>
  1676. <div class="inline_block">
  1677. &emsp;时间:
  1678. <div
  1679. class="under_line"
  1680. style="width: 200px;text-align: left"
  1681. v-if="dialysisOrder != null"
  1682. >
  1683. {{
  1684. getTime(
  1685. dialysisOrder.end_time,
  1686. "{y}年{m}月{d}日 {h}时{i}分"
  1687. )
  1688. }}
  1689. </div>
  1690. </div>
  1691. </div>
  1692. </td>
  1693. </tr>
  1694. <tr>
  1695. <td colspan="2">
  1696. <div class="row" style="font-size: 10px;">
  1697. 注:透析器及血路管凝血:0级无凝血;
  1698. “+”(指Ⅰ级:束状纤维凝血或动/静脉壶/滤网见轻微凝血);“++”(指II级:近半数纤维凝血或动/静脉壶/滤网出现凝血块);“+++”(指III级:压力异常升高,须中途更换透析器/血路管A/V)。
  1699. </div>
  1700. </td>
  1701. </tr>
  1702. </tbody>
  1703. </table>
  1704. <div
  1705. v-if="
  1706. (this.monitors.length > 8 && this.print_length == 8) ||
  1707. (this.monitors.length > 9 && this.print_length == 9)
  1708. "
  1709. class="print-yema3"
  1710. >
  1711. 2
  1712. </div>
  1713. <div v-else class="print-yema2">1</div>
  1714. </div>
  1715. </div>
  1716. <div
  1717. id="dialysis-print-box-1-2"
  1718. class="dialysis-print-order print-template-two print_page_main_content"
  1719. style="position: relative;"
  1720. >
  1721. <div class="order-yy-name">{{ orgname }}</div>
  1722. <div class="order_title">血液净化科医嘱及执行单</div>
  1723. <div class="row" style="margin-top: 15px">
  1724. <div class="inline_block">
  1725. 科室:
  1726. <check-box text="门诊透析" :checked="patientInfo_source_1"></check-box
  1727. >&nbsp;
  1728. <check-box text="住院" :checked="patientInfo_source_2"></check-box>
  1729. </div>
  1730. <div class="inline_block" style="margin-left: 5px;">
  1731. 住院号:
  1732. <div
  1733. class="under_line"
  1734. style="width: 70px;text-align: left"
  1735. v-if="receiverTreatmentAccess.admission_number"
  1736. >
  1737. {{
  1738. patientInfo_source_2
  1739. ? receiverTreatmentAccess.admission_number
  1740. : "/"
  1741. }}
  1742. </div>
  1743. <div class="under_line" style="width: 70px;text-align: left" v-else>
  1744. {{ "/" }}
  1745. </div>
  1746. </div>
  1747. <div class="inline_block" style="margin-left:5px;">
  1748. 姓名:
  1749. <div class="under_line" style="width: 50px;text-align: left">
  1750. {{ patientInfo.name }}
  1751. </div>
  1752. </div>
  1753. <div class="inline_block" style="margin-left: 5px;">
  1754. 性别:
  1755. <check-box text="男" :checked="patientInfo_gender_1"></check-box
  1756. >&nbsp;
  1757. <check-box text="女" :checked="patientInfo_gender_2"></check-box>
  1758. </div>
  1759. <div class="inline_block" style="margin-left: 5px;">
  1760. 年龄:
  1761. <div class="under_line" style="width: 30px;text-align: left">
  1762. {{ getAge(patientInfo) }}
  1763. </div>
  1764. </div>
  1765. <div class="inline_block" style="margin-left: 5px;">
  1766. 诊断:
  1767. <div class="under_line" style="width:150px;text-align: left">
  1768. {{ patientInfo.diagnose }}
  1769. </div>
  1770. </div>
  1771. </div>
  1772. <table class="proj_table">
  1773. <tbody>
  1774. <tr>
  1775. <td>
  1776. <!--<div class="row" style="padding: 2px 0;line-height:24px;">-->
  1777. <!--<div class="inline_block">-->
  1778. <!--诊断:-->
  1779. <!--<div class="under_line" style="width: 150px;text-align: left">{{patientInfo.diagnose}}</div>-->
  1780. <!--</div>-->
  1781. <!--</div>-->
  1782. <div class="row" style="padding: 2px 0;line-height:24px;">
  1783. <div class="inline_block">
  1784. 治疗方式:
  1785. <check-box
  1786. text="HD"
  1787. :checked="prescription.mode_id == 1 ? true : false"
  1788. ></check-box>
  1789. <check-box
  1790. text="HDF"
  1791. :checked="prescription.mode_id == 2 ? true : false"
  1792. ></check-box>
  1793. <check-box
  1794. text="HF"
  1795. :checked="prescription.mode_id == 5 ? true : false"
  1796. ></check-box>
  1797. <check-box
  1798. text="HP"
  1799. :checked="prescription.mode_id == 4 ? true : false"
  1800. ></check-box>
  1801. <check-box
  1802. text="HD+HP"
  1803. :checked="prescription.mode_id == 3 ? true : false"
  1804. ></check-box>
  1805. <!-- <check-box text="SCUF" :checked="prescription.mode_id==6?true:false"></check-box>
  1806. <check-box text="IUF" :checked="prescription.mode_id==7?true:false"></check-box>
  1807. <check-box text="HFHD" :checked="prescription.mode_id==8?true:false"></check-box>
  1808. <check-box text="HFHD+HP" :checked="prescription.mode_id==9?true:false"></check-box>
  1809. <check-box text="PHF" :checked="prescription.mode_id==10?true:false"></check-box>
  1810. <check-box text="HFR" :checked="prescription.mode_id==11?true:false"></check-box>
  1811. <check-box text="HDF+HP" :checked="prescription.mode_id==12?true:false"></check-box>
  1812. <check-box text="CRRT" :checked="prescription.mode_id==13?true:false"></check-box>
  1813. <check-box text="腹水回输" :checked="prescription.mode_id==14?true:false"></check-box>
  1814. <check-box text="HD前置换" :checked="prescription.mode_id==15?true:false"></check-box>
  1815. <check-box text="HD后置换" :checked="prescription.mode_id==16?true:false"></check-box>
  1816. <check-box text="HDF前置换" :checked="prescription.mode_id==17?true:false"></check-box>
  1817. <check-box text="HDF后置换" :checked="prescription.mode_id==18?true:false"></check-box>-->
  1818. </div>
  1819. <!--<div class="inline_block" v-if="patientInfo.diagnose.length <= 10">-->
  1820. <!--&emsp;治疗方式:-->
  1821. <!--<check-box text="HD" :checked="prescription.mode_id==1?true:false"></check-box>-->
  1822. <!--<check-box text="HDF" :checked="prescription.mode_id==2?true:false"></check-box>-->
  1823. <!--<check-box text="HF" :checked="prescription.mode_id==5?true:false"></check-box>-->
  1824. <!--<check-box text="HP" :checked="prescription.mode_id==4?true:false"></check-box>-->
  1825. <!--<check-box text="HD+HP" :checked="prescription.mode_id==3?true:false"></check-box>-->
  1826. <!--</div>-->
  1827. <div class="inline_block" style="margin-left:10px;">
  1828. 其它:
  1829. <div class="under_line" style="width: 50px;text-align: left">
  1830. <span v-if="prescription.mode_id > 5">
  1831. {{ prescription.mode }}
  1832. </span>
  1833. </div>
  1834. </div>
  1835. <div class="inline_block" style="margin-left:10px;">
  1836. 治疗时间:
  1837. <div class="under_line" style="width: 30px;text-align: left">
  1838. {{
  1839. prescription.dialysis_duration_hour
  1840. ? prescription.dialysis_duration_hour
  1841. : "0"
  1842. }}
  1843. </div>
  1844. h
  1845. <div class="under_line" style="width: 30px;text-align: left">
  1846. {{
  1847. prescription.dialysis_duration_minute
  1848. ? prescription.dialysis_duration_minute
  1849. : "0"
  1850. }}
  1851. </div>
  1852. min
  1853. </div>
  1854. <div class="inline_block" style="margin-left:10px;">
  1855. 病情:
  1856. <check-box
  1857. v-for="(item, index) in sick_condition_arr"
  1858. :key="index"
  1859. :text="item.name"
  1860. :checked="
  1861. receiverTreatmentAccess.sick_condition == item.id
  1862. ? true
  1863. : false
  1864. "
  1865. ></check-box>
  1866. <!--<check-box text="一般" :checked="receiverTreatmentAccess.sick_condition == 1?true:false"></check-box>-->
  1867. <!--<check-box text="重" :checked="receiverTreatmentAccess.sick_condition == 2?true:false"></check-box>-->
  1868. <!--<check-box text="危" :checked="receiverTreatmentAccess.sick_condition == 3?true:false"></check-box>-->
  1869. </div>
  1870. </div>
  1871. <div class="row" style="padding: 2px 0; line-height:24px;">
  1872. <div class="inline_block">
  1873. 体液过多症状:
  1874. <check-box
  1875. text="无"
  1876. :checked="prescription.body_fluid == 1 ? true : false"
  1877. ></check-box>
  1878. <check-box
  1879. text="下肢水肿+"
  1880. :checked="prescription.body_fluid == 2 ? true : false"
  1881. ></check-box>
  1882. <check-box
  1883. text="下肢水肿++"
  1884. :checked="prescription.body_fluid == 3 ? true : false"
  1885. ></check-box>
  1886. <check-box
  1887. text="下肢水肿+++"
  1888. :checked="prescription.body_fluid == 4 ? true : false"
  1889. ></check-box>
  1890. </div>
  1891. <div class="inline_block">
  1892. 其它:
  1893. <div class="under_line" style="width: 100px;">
  1894. <span
  1895. v-if="
  1896. prescription && prescription.body_fluid_other.length > 0
  1897. "
  1898. >&nbsp;{{ prescription.body_fluid_other }}</span
  1899. >
  1900. </div>
  1901. </div>
  1902. </div>
  1903. <div class="row" style="padding: 2px 0;line-height:24px;">
  1904. <div class="inline_block">
  1905. 透析器型号:
  1906. <div class="under_line" style="width: 100px;text-align: left">
  1907. {{ prescription.dialyzer_perfusion_apparatus }}
  1908. </div>
  1909. </div>
  1910. <div class="inline_block" style="margin-left:20px;">
  1911. 透析前使用特殊药物:
  1912. <check-box
  1913. text="无"
  1914. :checked="prescription.special_medicine == 1 ? true : false"
  1915. ></check-box>
  1916. <check-box
  1917. text="降压药"
  1918. :checked="prescription.special_medicine == 2 ? true : false"
  1919. ></check-box>
  1920. <check-box
  1921. text="抗凝"
  1922. :checked="prescription.special_medicine == 3 ? true : false"
  1923. ></check-box>
  1924. </div>
  1925. <div class="inline_block">
  1926. 其它:
  1927. <div class="under_line" style="width: 150px;text-align: left">
  1928. <span>{{ prescription.special_medicine_other }}</span>
  1929. </div>
  1930. </div>
  1931. </div>
  1932. <div class="row" style="padding: 2px 0;line-height:24px;">
  1933. <div class="inline_block">
  1934. 透析液(mmol/L): &emsp;Ca
  1935. <sup>2+</sup>:
  1936. <div
  1937. class="under_line"
  1938. style="width: 40px;text-align: left"
  1939. v-if="prescription.calcium"
  1940. >
  1941. <span>
  1942. {{
  1943. getFloat(prescription.calcium)
  1944. ? getFloat(prescription.calcium)
  1945. : "/"
  1946. }}
  1947. </span>
  1948. </div>
  1949. <div class="under_line" style="width: 40px;" v-else>
  1950. <span>{{ "/" }}</span>
  1951. </div>
  1952. mmol/L &emsp;Na
  1953. <sup>+</sup>
  1954. <div
  1955. class="under_line"
  1956. style="width: 40px;text-align: left"
  1957. v-if="prescription.sodium"
  1958. >
  1959. <span>
  1960. {{
  1961. getFloat(prescription.sodium)
  1962. ? getFloat(prescription.sodium)
  1963. : "/"
  1964. }}
  1965. </span>
  1966. </div>
  1967. <div class="under_line" style="width: 40px;" v-else>
  1968. <span>{{ "/" }}</span>
  1969. </div>
  1970. mmol/L &emsp;K <sup>+</sup>:
  1971. <div
  1972. class="under_line"
  1973. style="width: 50px;text-align: left"
  1974. v-if="prescription.kalium"
  1975. >
  1976. <span>
  1977. {{
  1978. getFloat(prescription.kalium)
  1979. ? getFloat(prescription.kalium)
  1980. : "/"
  1981. }}
  1982. </span>
  1983. </div>
  1984. <div class="under_line" style="width: 40px;" v-else>
  1985. <span>{{ "/" }}</span>
  1986. </div>
  1987. mmol/L
  1988. </div>
  1989. <div
  1990. class="inline_block"
  1991. v-if="prescription.displace_liqui_part == 0"
  1992. >
  1993. &emsp;置换液后/前稀释 总量:
  1994. <div
  1995. class="under_line"
  1996. style="width: 50px;text-align: left"
  1997. v-if="prescription.displace_liqui_value"
  1998. >
  1999. {{ prescription.displace_liqui_value }}
  2000. </div>
  2001. <div class="under_line" style="width: 50px;" v-else>
  2002. {{ "/" }}
  2003. </div>
  2004. L
  2005. </div>
  2006. <div
  2007. class="inline_block"
  2008. v-if="prescription.displace_liqui_part == 1"
  2009. >
  2010. &emsp;置换液前稀释 总量:
  2011. <div
  2012. class="under_line"
  2013. style="width: 50px;text-align: left"
  2014. v-if="prescription.displace_liqui_value"
  2015. >
  2016. {{ prescription.displace_liqui_value }}
  2017. </div>
  2018. <div class="under_line" style="width: 50px;" v-else>
  2019. {{ "/" }}
  2020. </div>
  2021. L
  2022. </div>
  2023. <div
  2024. class="inline_block"
  2025. v-if="prescription.displace_liqui_part == 2"
  2026. >
  2027. &emsp;置换液后稀释 总量:
  2028. <div
  2029. class="under_line"
  2030. style="width: 50px;text-align: left"
  2031. v-if="prescription.displace_liqui_value"
  2032. >
  2033. {{ prescription.displace_liqui_value }}
  2034. </div>
  2035. <div class="under_line" style="width: 50px;" v-else>
  2036. {{ "/" }}
  2037. </div>
  2038. L
  2039. </div>
  2040. </div>
  2041. <div class="row" style="padding: 2px 0;line-height:24px;">
  2042. <div class="inline_block">
  2043. 血管通路:
  2044. <!-- <check-box-->
  2045. <!-- text="内瘘"-->
  2046. <!-- :checked="prescription.blood_access == 1 ? true : false"-->
  2047. <!-- ></check-box>-->
  2048. <!-- <check-box-->
  2049. <!-- text="直穿"-->
  2050. <!-- :checked="prescription.blood_access == 2 ? true : false"-->
  2051. <!-- ></check-box>-->
  2052. <!-- <check-box-->
  2053. <!-- text="导管"-->
  2054. <!-- :checked="prescription.blood_access == 3 ? true : false"-->
  2055. <!-- ></check-box>-->
  2056. <check-box
  2057. v-for="(item, index) in bloodAccessParOpera"
  2058. :key="index"
  2059. :text="item.name"
  2060. :checked="
  2061. prescription.blood_access == item.id ? true : false
  2062. "
  2063. ></check-box>
  2064. </div>
  2065. <div class="inline_block">
  2066. &emsp;血流量:
  2067. <div
  2068. class="under_line"
  2069. style="width: 70px;text-align: left"
  2070. v-if="prescription.blood_flow_volume"
  2071. >
  2072. {{ prescription.blood_flow_volume }}
  2073. </div>
  2074. <div
  2075. class="under_line"
  2076. style="width: 70px;text-align: left"
  2077. v-else
  2078. >
  2079. {{ "/" }}
  2080. </div>
  2081. ml/min
  2082. </div>
  2083. <div class="inline_block">
  2084. &emsp;透析液流量:
  2085. <div
  2086. class="under_line"
  2087. style="width: 70px;text-align: left"
  2088. v-if="prescription.dialysate_flow"
  2089. >
  2090. {{ prescription.dialysate_flow }}
  2091. </div>
  2092. <div class="under_line" style="width: 70px;" v-else>
  2093. {{ "/" }}
  2094. </div>
  2095. ml/min
  2096. </div>
  2097. </div>
  2098. <div class="row" style="padding: 2px 0;line-height:24px;">
  2099. <div class="inline_block">
  2100. 透前称重:
  2101. <div
  2102. class="under_line"
  2103. style="width: 70px;text-align: left"
  2104. v-if="predialysis.weight_before"
  2105. >
  2106. {{ predialysis.weight_before }}
  2107. </div>
  2108. <div class="under_line" style="width: 70px;" v-else>
  2109. {{ "/" }}
  2110. </div>
  2111. kg
  2112. </div>
  2113. <div class="inline_block">
  2114. &emsp;设定超滤量:
  2115. <div
  2116. class="under_line"
  2117. style="width: 70px;text-align: left"
  2118. v-if="getFloat(prescription.target_ultrafiltration)"
  2119. >
  2120. {{ getFloat(prescription.target_ultrafiltration) }}
  2121. </div>
  2122. <div class="under_line" style="width: 70px;" v-else>
  2123. {{ "/" }}
  2124. </div>
  2125. L
  2126. </div>
  2127. <div class="inline_block">
  2128. &emsp;实际超滤量:
  2129. <div
  2130. class="under_line"
  2131. style="width: 70px;text-align: left"
  2132. v-if="getFloat(afterdialysis.actual_ultrafiltration)"
  2133. >
  2134. {{ getFloat(afterdialysis.actual_ultrafiltration) }}
  2135. </div>
  2136. <div class="under_line" style="width: 70px;" v-else>
  2137. {{ "/" }}
  2138. </div>
  2139. L
  2140. </div>
  2141. <div class="inline_block">
  2142. 透后体重:
  2143. <div
  2144. class="under_line"
  2145. style="width: 70px;text-align: left"
  2146. v-if="afterdialysis.weight_after"
  2147. >
  2148. {{ afterdialysis.weight_after }}
  2149. </div>
  2150. <div class="under_line" style="width: 70px;" v-else>
  2151. {{ "/" }}
  2152. </div>
  2153. kg
  2154. </div>
  2155. </div>
  2156. </td>
  2157. </tr>
  2158. </tbody>
  2159. </table>
  2160. <table
  2161. class="print-table-no"
  2162. border="1"
  2163. count="0"
  2164. :style="
  2165. this.advice_groups_2.length > 0
  2166. ? 'margin-bottom:350px;margin-top: -1px;position: relative;'
  2167. : 'margin-top: -1px;position: relative;'
  2168. "
  2169. >
  2170. <tbody>
  2171. <tr style="line-height:35px;padding:8px 5px;">
  2172. <td colspan="7" style="font-size: 18px">医嘱</td>
  2173. </tr>
  2174. <tr style="line-height:35px;padding:8px 5px;">
  2175. <td colspan="4" style="font-size: 16px">开医嘱</td>
  2176. <td colspan="3" style="font-size: 16px">执行核对医嘱</td>
  2177. </tr>
  2178. <tr style="line-height:35px;padding:8px 5px;">
  2179. <td style="font-size: 16px" width="10%">时间</td>
  2180. <td style="font-size: 16px" colspan="2" width="45%">医嘱内容</td>
  2181. <td style="font-size: 16px" width="10%">医生签名</td>
  2182. <td style="font-size: 16px" width="10%">核对人签名</td>
  2183. <td style="font-size: 16px" width="10%">执行人签名</td>
  2184. <td style="font-size: 16px" width="10%">时间</td>
  2185. </tr>
  2186. <template v-for="(group, group_index) in advice_groups">
  2187. <tr
  2188. v-for="(advice, advice_index) in group.advices"
  2189. :key="advice_index"
  2190. >
  2191. <td
  2192. height="60px"
  2193. v-if="advice_index == 0"
  2194. :rowspan="group.advices.length"
  2195. >
  2196. <span v-if="advice.start_time">{{
  2197. getTime(advice.start_time, "{y}-{m}-{d} {h}:{i}")
  2198. }}</span>
  2199. <span v-else>
  2200. &nbsp;
  2201. <br />&nbsp;
  2202. </span>
  2203. </td>
  2204. <td
  2205. height="60px"
  2206. class="advice-name"
  2207. style="padding-left:7px;"
  2208. :colspan="
  2209. (advice.children && advice.children.length > 0) ||
  2210. advice.parent_id > 0
  2211. ? 1
  2212. : 2
  2213. "
  2214. v-if="advice.isShow == 2"
  2215. >
  2216. <span>{{ advice.advice_name }}</span>
  2217. <span>{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</span>
  2218. <span v-if="advice.prescribing_number">
  2219. * {{ advice.prescribing_number
  2220. }}{{ advice.prescribing_number_unit }}
  2221. </span>
  2222. <span v-if="advice.single_dose != 0">
  2223. 单次用量 {{ advice.single_dose }}{{ advice.single_dose_unit }}
  2224. </span>
  2225. <span
  2226. v-if="advice.parent_id == 0 && advice.children.length == 0"
  2227. >{{ advice.delivery_way }}</span
  2228. >
  2229. <span
  2230. v-if="advice.parent_id == 0 && advice.children.length == 0"
  2231. >{{ advice.execution_frequency }}</span
  2232. >
  2233. <span
  2234. v-if="
  2235. advice.parent_id == 0 &&
  2236. advice.children &&
  2237. advice.children.length == 0 &&
  2238. advice.remark.length > 0
  2239. "
  2240. >({{ advice.remark }})</span
  2241. >
  2242. </td>
  2243. <td colspan="2" height="60px" style="text-align: center" v-else>
  2244. <span>{{ advice.delivery_way }}</span>
  2245. <span>{{ advice.execution_frequency }}</span>
  2246. <span v-if="advice.remark.length > 0"
  2247. >({{ advice.remark }})</span
  2248. >
  2249. </td>
  2250. <td
  2251. width="10%"
  2252. v-if="
  2253. ((advice.children && advice.children.length > 0) ||
  2254. advice.parent_id > 0) &&
  2255. advice.isShow == 2
  2256. "
  2257. ></td>
  2258. <td height="60px">
  2259. <span v-if="setAdminUserES(advice.advice_doctor) == ''">
  2260. {{ getAdminUser(advice.advice_doctor) }}
  2261. </span>
  2262. <img
  2263. class="es-img"
  2264. :src="setAdminUserES(advice.advice_doctor)"
  2265. alt
  2266. srcset
  2267. v-else
  2268. />
  2269. </td>
  2270. <td height="60px">
  2271. <span v-if="setAdminUserES(advice.checker) == ''">
  2272. {{ getAdminUser(advice.checker) }}
  2273. </span>
  2274. <img
  2275. class="es-img"
  2276. :src="setAdminUserES(advice.checker)"
  2277. alt
  2278. srcset
  2279. v-else
  2280. />
  2281. </td>
  2282. <td height="60px">
  2283. <span v-if="setAdminUserES(advice.execution_staff) == ''">
  2284. {{ getAdminUser(advice.execution_staff) }}
  2285. </span>
  2286. <img
  2287. class="es-img"
  2288. :src="setAdminUserES(advice.execution_staff)"
  2289. alt
  2290. srcset
  2291. v-else
  2292. />
  2293. </td>
  2294. <td height="60px">
  2295. <span v-if="advice.execution_time">
  2296. {{ getTime(advice.execution_time, "{y}-{m}-{d} {h}:{i}") }}
  2297. </span>
  2298. </td>
  2299. </tr>
  2300. </template>
  2301. </tbody>
  2302. <div class="print-yema4">1</div>
  2303. </table>
  2304. <template v-if="this.advice_groups_2.length > 0">
  2305. <div style="position: relative;">
  2306. <div class="order-yy-name">{{ orgname }}</div>
  2307. <div class="order_title">血液净化科医嘱及执行单</div>
  2308. <div class="row" style="margin-top: 15px">
  2309. <div class="inline_block">
  2310. 科室:
  2311. <check-box
  2312. text="门诊透析"
  2313. :checked="patientInfo_source_1"
  2314. ></check-box
  2315. >&nbsp;
  2316. <check-box
  2317. text="住院"
  2318. :checked="patientInfo_source_2"
  2319. ></check-box>
  2320. </div>
  2321. <div class="inline_block" style="margin-left: 5px;">
  2322. 住院号:
  2323. <div
  2324. class="under_line"
  2325. style="width: 70px;text-align: left"
  2326. v-if="receiverTreatmentAccess.admission_number"
  2327. >
  2328. {{
  2329. patientInfo_source_2
  2330. ? receiverTreatmentAccess.admission_number
  2331. : "/"
  2332. }}
  2333. </div>
  2334. <div
  2335. class="under_line"
  2336. style="width: 70px;text-align: left"
  2337. v-else
  2338. >
  2339. {{ "/" }}
  2340. </div>
  2341. </div>
  2342. <div class="inline_block" style="margin-left:10px;">
  2343. 姓名:
  2344. <div class="under_line" style="width: 50px;text-align: left">
  2345. {{ patientInfo.name }}
  2346. </div>
  2347. </div>
  2348. <div class="inline_block" style="margin-left: 10px;">
  2349. 性别:
  2350. <check-box text="男" :checked="patientInfo_gender_1"></check-box
  2351. >&nbsp;
  2352. <check-box text="女" :checked="patientInfo_gender_2"></check-box>
  2353. </div>
  2354. <div class="inline_block" style="margin-left: 10px;">
  2355. 年龄:
  2356. <div class="under_line" style="width: 30px;text-align: left">
  2357. {{ getAge(patientInfo) }}
  2358. </div>
  2359. </div>
  2360. <div class="inline_block" style="margin-left: 10px;">
  2361. 诊断:
  2362. <div class="under_line" style="width: 180px;text-align: left">
  2363. {{ patientInfo.diagnose }}
  2364. </div>
  2365. </div>
  2366. </div>
  2367. <table class="print-table-no" border="1" count="0">
  2368. <tbody>
  2369. <tr style="line-height:35px;padding:8px 5px;">
  2370. <td colspan="7" style="font-size: 18px">医嘱</td>
  2371. </tr>
  2372. <tr style="line-height:35px;padding:8px 5px;">
  2373. <td colspan="4" style="font-size: 16px">开医嘱</td>
  2374. <td colspan="3" style="font-size: 16px">执行核对医嘱</td>
  2375. </tr>
  2376. <tr style="line-height:35px;padding:8px 5px;">
  2377. <td style="font-size: 16px" width="10%">时间</td>
  2378. <td style="font-size: 16px" colspan="2" width="45%">
  2379. 医嘱内容
  2380. </td>
  2381. <td style="font-size: 16px" width="10%">医生签名</td>
  2382. <td style="font-size: 16px" width="10%">核对人签名</td>
  2383. <td style="font-size: 16px" width="10%">执行人签名</td>
  2384. <td style="font-size: 16px" width="10%">时间</td>
  2385. </tr>
  2386. <template v-for="(group, group_index) in advice_groups_2">
  2387. <tr
  2388. v-for="(advice, advice_index) in group.advices"
  2389. :key="advice_index"
  2390. >
  2391. <td
  2392. height="60px"
  2393. v-if="advice_index == 0"
  2394. :rowspan="group.advices.length"
  2395. >
  2396. <span v-if="advice.start_time">{{
  2397. getTime(advice.start_time, "{y}-{m}-{d} {h}:{i}")
  2398. }}</span>
  2399. <span v-else>
  2400. &nbsp;
  2401. <br />&nbsp;
  2402. </span>
  2403. </td>
  2404. <td
  2405. height="60px"
  2406. class="advice-name"
  2407. style="padding-left:7px;"
  2408. :colspan="
  2409. (advice.children && advice.children.length > 0) ||
  2410. advice.parent_id > 0
  2411. ? 1
  2412. : 2
  2413. "
  2414. v-if="advice.isShow == 2"
  2415. >
  2416. <span>{{ advice.advice_name }}</span>
  2417. <span>{{ advice.advice_desc }}</span>
  2418. <span v-if="advice.prescribing_number">
  2419. * {{ advice.prescribing_number
  2420. }}{{ advice.prescribing_number_unit }}
  2421. </span>
  2422. <span v-if="advice.single_dose != 0">
  2423. 单次用量 {{ advice.single_dose
  2424. }}{{ advice.single_dose_unit }}
  2425. </span>
  2426. <span
  2427. v-if="
  2428. advice.parent_id == 0 && advice.children.length == 0
  2429. "
  2430. >{{ advice.delivery_way }}</span
  2431. >
  2432. <span
  2433. v-if="
  2434. advice.parent_id == 0 && advice.children.length == 0
  2435. "
  2436. >{{ advice.execution_frequency }}</span
  2437. >
  2438. <span
  2439. v-if="
  2440. advice.parent_id == 0 &&
  2441. advice.children &&
  2442. advice.children.length == 0 &&
  2443. advice.remark.length > 0
  2444. "
  2445. >({{ advice.remark }})</span
  2446. >
  2447. </td>
  2448. <td
  2449. colspan="2"
  2450. height="60px"
  2451. style="text-align: center"
  2452. v-else
  2453. >
  2454. <span>{{ advice.delivery_way }}</span>
  2455. <span>{{ advice.execution_frequency }}</span>
  2456. <span v-if="advice.remark.length > 0"
  2457. >({{ advice.remark }})</span
  2458. >
  2459. </td>
  2460. <td
  2461. width="10%"
  2462. v-if="
  2463. ((advice.children && advice.children.length > 0) ||
  2464. advice.parent_id > 0) &&
  2465. advice.isShow == 2
  2466. "
  2467. ></td>
  2468. <td height="60px">
  2469. <span v-if="setAdminUserES(advice.advice_doctor) == ''">
  2470. {{ getAdminUser(advice.advice_doctor) }}
  2471. </span>
  2472. <img
  2473. class="es-img"
  2474. :src="setAdminUserES(advice.advice_doctor)"
  2475. alt
  2476. srcset
  2477. v-else
  2478. />
  2479. </td>
  2480. <td height="60px">
  2481. <span v-if="setAdminUserES(advice.checker) == ''">
  2482. {{ getAdminUser(advice.checker) }}
  2483. </span>
  2484. <img
  2485. class="es-img"
  2486. :src="setAdminUserES(advice.checker)"
  2487. alt
  2488. srcset
  2489. v-else
  2490. />
  2491. </td>
  2492. <td height="60px">
  2493. <span v-if="setAdminUserES(advice.execution_staff) == ''">
  2494. {{ getAdminUser(advice.execution_staff) }}
  2495. </span>
  2496. <img
  2497. class="es-img"
  2498. :src="setAdminUserES(advice.execution_staff)"
  2499. alt
  2500. srcset
  2501. v-else
  2502. />
  2503. </td>
  2504. <td height="60px">
  2505. <span v-if="advice.execution_time">
  2506. {{
  2507. getTime(advice.execution_time, "{y}-{m}-{d} {h}:{i}")
  2508. }}
  2509. </span>
  2510. </td>
  2511. </tr>
  2512. </template>
  2513. </tbody>
  2514. </table>
  2515. <div class="print-yema4">2</div>
  2516. </div>
  2517. </template>
  2518. </div>
  2519. </div>
  2520. </template>
  2521. <script>
  2522. import CheckBox from "../batch_print/option_check_box";
  2523. import { getDialysisRecord } from "@/api/dialysis";
  2524. import { getDataConfig } from "@/utils/data";
  2525. import { jsGetAge, uParseTime } from "@/utils/tools";
  2526. import LabelBox from "../printItem/LabelBox";
  2527. import BreadCrumb from "@/xt_pages/components/bread-crumb";
  2528. // import DialysisPrintOrderOne from './template/dialysisPrintOrderOne'
  2529. // import DialysisPrintOrderTwo from './template/dialysisPrintOrderTwo'
  2530. import print from "print-js";
  2531. export default {
  2532. name: "dialysisPrintOrderTwo",
  2533. props: ["childResponse"],
  2534. components: {
  2535. // DialysisPrintOrderOne,
  2536. // DialysisPrintOrderTwo,
  2537. CheckBox,
  2538. LabelBox,
  2539. BreadCrumb
  2540. },
  2541. data() {
  2542. return {
  2543. way_arr: [],
  2544. consciousness_arr: [],
  2545. appetite_arr: [],
  2546. posture_arr: [],
  2547. sick_condition_arr: [],
  2548. precaution_arr: [],
  2549. intake_arr: [],
  2550. nutrition_arr: [],
  2551. crumbs: [
  2552. { path: false, name: "透析管理" },
  2553. { path: false, name: "打印单" }
  2554. ],
  2555. operators: [],
  2556. adminUser: [],
  2557. check: {},
  2558. dialysisOrder: {
  2559. DeviceNumber: []
  2560. },
  2561. operatorMaps: {},
  2562. complications: [
  2563. "低血压",
  2564. "高血压",
  2565. "心律失常",
  2566. "头晕",
  2567. "头痛",
  2568. "呕吐",
  2569. "抽搐",
  2570. "出血",
  2571. "心衰",
  2572. "腹痛"
  2573. ],
  2574. jilurow: 0,
  2575. advice_jilurow: 0,
  2576. loading: false,
  2577. orgname: "",
  2578. patientInfo_gender_1: false,
  2579. patientInfo_gender_2: false,
  2580. patientInfo_source_2: false,
  2581. patientInfo_source_1: false,
  2582. modeOptions: {},
  2583. replacementWays: [],
  2584. perfusionApparatus: [],
  2585. anticoagulantsConfit: {},
  2586. bloodAccessParOpera: {},
  2587. dialysateFormulationOptions: {},
  2588. blood_access_part: [],
  2589. queryParams: {
  2590. xtdate: "",
  2591. xtno: ""
  2592. },
  2593. patientInfo: {
  2594. birth: "",
  2595. age: "",
  2596. DialysisSchedule: {
  2597. device_number: { number: "" },
  2598. device_zone: { name: "" }
  2599. },
  2600. gender: 0
  2601. },
  2602. predialysis: {
  2603. score: "",
  2604. internal_fistula: "",
  2605. internal_fistula_skin: "",
  2606. catheter: "",
  2607. blood_access_part_opera_name: ""
  2608. },
  2609. afterdialysis: {
  2610. complications_index: ""
  2611. },
  2612. prescription: {
  2613. dialysate_formulation_name: "",
  2614. device: {}
  2615. },
  2616. advices: [],
  2617. users: [],
  2618. monitors: [],
  2619. monitors2: [],
  2620. summary: {},
  2621. receiverTreatmentAccess: {},
  2622. org_template_info: {},
  2623. doctor_advices: [],
  2624. advice_groups: [],
  2625. advice_groups_2: [],
  2626. print_length: 0,
  2627. AlPanel: {
  2628. id: 0,
  2629. name: "",
  2630. type: 1,
  2631. shouji: 2,
  2632. weichi: 2,
  2633. zongliang: 2,
  2634. gaimingcheng: -1,
  2635. gaijiliang: -1,
  2636. shouji_unit: "mg",
  2637. weichi_unit: "mg/h",
  2638. zongliang_unit: "mg",
  2639. gaimingcheng_unit: "",
  2640. gaijiliang_unit: ""
  2641. }
  2642. };
  2643. },
  2644. methods: {
  2645. getIsCheckDataConfig(pName, cName, targetName) {
  2646. var arr = getDataConfig(pName, cName);
  2647. for (let i = 0; i < arr.length; i++) {
  2648. if (arr[i].name == targetName) {
  2649. return arr[i].id;
  2650. }
  2651. }
  2652. },
  2653. getAdminUser(id) {
  2654. if (id == 0) {
  2655. return "";
  2656. }
  2657. if (id == undefined) {
  2658. return "";
  2659. }
  2660. for (let i = 0; i < this.adminUser.length; i++) {
  2661. if (this.adminUser[i].id == id) {
  2662. return this.adminUser[i].name;
  2663. }
  2664. }
  2665. },
  2666. getTime(value, temp) {
  2667. if (value == 0) {
  2668. return "";
  2669. }
  2670. if (value != undefined) {
  2671. return uParseTime(value, temp);
  2672. }
  2673. return "";
  2674. },
  2675. printThisPage() {
  2676. var ptime = Math.round(new Date().getTime() / 1000);
  2677. this.print_time = uParseTime(ptime, "{y}-{m}-{d} {h}:{i}");
  2678. const style =
  2679. '@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;}';
  2680. if (this.org_template_info.template_id == 1) {
  2681. printJS({
  2682. printable: "dialysis-print-box",
  2683. type: "html",
  2684. style: style,
  2685. scanStyles: false
  2686. });
  2687. } else if (
  2688. this.org_template_info.template_id == 2 ||
  2689. this.org_template_info.template_id == 0
  2690. ) {
  2691. printJS({
  2692. printable: "dialysis-print-box-1",
  2693. type: "html",
  2694. style: style,
  2695. scanStyles: false
  2696. });
  2697. }
  2698. },
  2699. getNumber() {
  2700. if (this.dialysisOrder != null) {
  2701. return (
  2702. this.patientInfo.DialysisSchedule.device_zone.name +
  2703. this.dialysisOrder.DeviceNumber.number
  2704. );
  2705. } else {
  2706. return (
  2707. this.patientInfo.DialysisSchedule.device_zone.name +
  2708. this.patientInfo.DialysisSchedule.device_number.number
  2709. );
  2710. }
  2711. },
  2712. getXuserName(id) {
  2713. if (id <= 0) {
  2714. return "";
  2715. }
  2716. var name = "";
  2717. if (this.users == null || typeof this.users.length === "undefined") {
  2718. return name;
  2719. }
  2720. var leng = this.users.length;
  2721. if (leng == 0) {
  2722. return name;
  2723. }
  2724. for (let index = 0; index < leng; index++) {
  2725. if (this.users[index].id == id) {
  2726. name = this.users[index].name;
  2727. break;
  2728. }
  2729. }
  2730. return name;
  2731. },
  2732. setAdminUserES(id) {
  2733. if (id == 0) {
  2734. return "";
  2735. }
  2736. if (id in this.operatorMaps) {
  2737. return this.operatorMaps[id].url;
  2738. } else {
  2739. return "";
  2740. }
  2741. },
  2742. modeName(mode_id) {
  2743. return typeof this.modeOptions[mode_id] !== "undefined" &&
  2744. typeof this.modeOptions[mode_id].name !== "undefined"
  2745. ? this.modeOptions[mode_id].name
  2746. : "";
  2747. },
  2748. getDialysisRecord() {
  2749. this.loading = true;
  2750. // getDialysisRecord(this.queryParams).then(response => {
  2751. var response = this.childResponse;
  2752. if (response.data.state == 1) {
  2753. this.adminUser = response.data.data.users;
  2754. this.users = response.data.data.users;
  2755. this.patientInfo = response.data.data.patientInfo;
  2756. this.patientInfo.birth = uParseTime(
  2757. this.patientInfo.birthday,
  2758. "{y}-{m}-{d}"
  2759. );
  2760. // this.patientInfo.age = jsGetAge(this.patientInfo.birth, '-')
  2761. if (response.data.data.patientInfo.first_dialysis_date != 0) {
  2762. this.patientInfo.first_dialysis_date = uParseTime(
  2763. response.data.data.patientInfo.first_dialysis_date,
  2764. "{y}-{m}-{d}"
  2765. );
  2766. } else {
  2767. this.patientInfo.first_dialysis_date = "";
  2768. }
  2769. this.check = response.data.data.check;
  2770. this.predialysis = response.data.data.PredialysisEvaluation;
  2771. // console.log("透前数据", this.predialysis);
  2772. this.predialysis.blood_access_part_opera_name = this.bloodAccessParOperaName(
  2773. this.predialysis.blood_access_part_opera_id
  2774. );
  2775. var afterdialysis = response.data.data.AssessmentAfterDislysis;
  2776. console.log("长度", afterdialysis.complications_index);
  2777. if (afterdialysis.complications_index === undefined) {
  2778. afterdialysis.disequilibrium_syndrome = 1;
  2779. }
  2780. if (afterdialysis.complications_index != undefined) {
  2781. afterdialysis.disequilibrium_syndrome = 2;
  2782. }
  2783. this.afterdialysis = afterdialysis;
  2784. console.log("透后数据", this.afterdialysis);
  2785. this.operators = response.data.data.operators;
  2786. this.dialysisOrder =
  2787. response.data.data.dialysisOrder === null
  2788. ? null
  2789. : response.data.data.dialysisOrder;
  2790. if (this.operators.length > 0) {
  2791. var operatorsLen = this.operators.length;
  2792. for (var index = 0; index < operatorsLen; index++) {
  2793. this.$set(
  2794. this.operatorMaps,
  2795. this.operators[index].creator,
  2796. this.operators[index]
  2797. );
  2798. }
  2799. }
  2800. this.afterdialysis.txqnx = -1;
  2801. if (this.afterdialysis.cruor.indexOf("0度") > -1) {
  2802. this.afterdialysis.txqnx = 0;
  2803. }
  2804. if (this.afterdialysis.cruor.indexOf("Ⅰ度") > -1) {
  2805. this.afterdialysis.txqnx = 1;
  2806. }
  2807. if (this.afterdialysis.cruor.indexOf("Ⅱ度") > -1) {
  2808. this.afterdialysis.txqnx = 2;
  2809. }
  2810. if (this.afterdialysis.cruor.indexOf("Ⅲ度") > -1) {
  2811. this.afterdialysis.txqnx = 3;
  2812. }
  2813. this.afterdialysis.complications = this.afterdialysis.complication.split(
  2814. ","
  2815. );
  2816. this.afterdialysis.complications_other = [];
  2817. this.afterdialysis.complications_index = [];
  2818. var acllen = this.afterdialysis.complications.length;
  2819. for (let index = 0; index < acllen; index++) {
  2820. if (
  2821. this.complications.indexOf(
  2822. this.afterdialysis.complications[index]
  2823. ) >= 0
  2824. ) {
  2825. this.afterdialysis.complications_index.push(
  2826. this.afterdialysis.complications[index]
  2827. );
  2828. } else if (
  2829. this.complications.indexOf(
  2830. this.afterdialysis.complications[index]
  2831. ) < 0 &&
  2832. this.afterdialysis.complications_other.indexOf(
  2833. this.afterdialysis.complications[index]
  2834. ) < 0
  2835. ) {
  2836. this.afterdialysis.complications_other.push(
  2837. this.afterdialysis.complications[index]
  2838. );
  2839. }
  2840. }
  2841. this.afterdialysis.complications_other = this.afterdialysis.complications_other.join(
  2842. ","
  2843. );
  2844. this.prescription = response.data.data.dialysisPrescription;
  2845. console.log("透析处方", this.prescription);
  2846. this.receiverTreatmentAccess =
  2847. response.data.data.receiverTreatmentAccess;
  2848. this.prescription.mode = this.modeName(this.prescription.mode_id);
  2849. var rwLen = this.replacementWays.length;
  2850. this.prescription.replacement = "";
  2851. for (let index = 0; index < rwLen; index++) {
  2852. if (
  2853. this.replacementWays[index].id == this.prescription.replacement_way
  2854. ) {
  2855. this.prescription.replacement = this.replacementWays[index].name;
  2856. break;
  2857. }
  2858. }
  2859. this.prescription.dialysate_formulation_name = this.dialysateFormulationName(
  2860. this.prescription.dialysate_formulation
  2861. );
  2862. var paLen = this.perfusionApparatus.length;
  2863. this.prescription.perfusion_apparatus_name = "";
  2864. for (let index = 0; index < paLen; index++) {
  2865. if (
  2866. this.perfusionApparatus[index].id ==
  2867. this.prescription.perfusion_apparatus
  2868. ) {
  2869. this.prescription.perfusion_apparatus_name = this.perfusionApparatus[
  2870. index
  2871. ].name;
  2872. break;
  2873. }
  2874. }
  2875. var acLen = this.anticoagulantsConfit.length;
  2876. var thisALID = this.prescription.anticoagulant;
  2877. this.prescription.anticoagulant_name = "";
  2878. if (
  2879. typeof this.anticoagulantsConfit[thisALID] !== "undefined" &&
  2880. this.anticoagulantsConfit[thisALID] != null
  2881. ) {
  2882. this.prescription.anticoagulant_name = this.anticoagulantsConfit[
  2883. thisALID
  2884. ].name;
  2885. this.AlPanel = this.anticoagulantsConfit[thisALID];
  2886. }
  2887. this.advices = response.data.data.advices;
  2888. this.monitors = response.data.data.monitors;
  2889. this.summary = response.data.data.summary;
  2890. this.org_template_info = response.data.data.org_template_info;
  2891. if (this.monitors.length <= 9) {
  2892. if (
  2893. (this.predialysis.systolic_blood_pressure != 0 &&
  2894. this.predialysis.diastolic_blood_pressure != 0) ||
  2895. this.predialysis.remark.length > 0 ||
  2896. this.predialysis.pulse_frequency != 0 ||
  2897. this.predialysis.breathing_rate != 0 ||
  2898. this.predialysis.temperature != 0
  2899. ) {
  2900. var nl = 8;
  2901. this.print_length = 8;
  2902. } else {
  2903. var nl = 9;
  2904. this.print_length = 9;
  2905. }
  2906. for (let index = 0; index < nl; index++) {
  2907. if (
  2908. this.monitors[index] == undefined ||
  2909. this.monitors[index].length <= 0
  2910. ) {
  2911. this.monitors.push([]);
  2912. } else {
  2913. continue;
  2914. }
  2915. }
  2916. }
  2917. if (this.monitors.length > 13) {
  2918. const tempMonitors = [];
  2919. const tempMonitors2 = [];
  2920. for (let index = 0; index < this.monitors.length; index++) {
  2921. if (index < 13) {
  2922. tempMonitors.push(this.monitors[index]);
  2923. } else {
  2924. tempMonitors2.push(this.monitors[index]);
  2925. }
  2926. }
  2927. this.monitors = tempMonitors;
  2928. this.monitors2 = tempMonitors2;
  2929. }
  2930. this.jilurow = this.monitors.length + 1;
  2931. this.advice_jilurow = this.advices.length + 1;
  2932. var childMap = {};
  2933. for (const index in this.advices) {
  2934. if (this.advices[index].parent_id == 0) {
  2935. continue;
  2936. }
  2937. if (!(this.advices[index].parent_id in childMap)) {
  2938. childMap[this.advices[index].parent_id] = [];
  2939. }
  2940. childMap[this.advices[index].parent_id].push(this.advices[index]);
  2941. }
  2942. var advices = [];
  2943. for (const index in this.advices) {
  2944. if (this.advices[index].parent_id > 0) {
  2945. continue;
  2946. }
  2947. var item = this.advices[index];
  2948. if (item.id in childMap) {
  2949. item.children = childMap[item.id];
  2950. } else {
  2951. item.children = [];
  2952. }
  2953. advices.push(item);
  2954. }
  2955. var leftAdvice = [];
  2956. var rightAdvice = [];
  2957. var adlen = advices.length;
  2958. var halfLen = adlen % 2 == 0 ? adlen / 2 : (adlen + 1) / 2;
  2959. for (var i = 0; i < halfLen; i++) {
  2960. leftAdvice.push(advices[i]);
  2961. rightAdvice.push(advices[i + halfLen]);
  2962. }
  2963. if (halfLen < 5) {
  2964. var nl = 5 - leftAdvice.length;
  2965. for (let index = 0; index < nl; index++) {
  2966. leftAdvice.push([]);
  2967. }
  2968. var nl = 5 - rightAdvice.length;
  2969. for (let index = 0; index < nl; index++) {
  2970. rightAdvice.push([]);
  2971. }
  2972. }
  2973. this.advices = [];
  2974. for (var i = 0; i < halfLen; i++) {
  2975. var item = [];
  2976. item.push(leftAdvice[i]);
  2977. item.push(rightAdvice[i]);
  2978. this.advices.push(item);
  2979. }
  2980. this.loading = false;
  2981. this.doctor_advices =
  2982. response.data.data.advices == null ? [] : response.data.data.advices;
  2983. for (let index = 0; index < this.doctor_advices.length; index++) {
  2984. this.doctor_advices[index]["isShow"] = 2;
  2985. }
  2986. if (this.doctor_advices.length > 0) {
  2987. var group = this.newAdviceGroupObject();
  2988. var initGroupBlock = function(group, advice) {
  2989. group.group_no = advice.groupno;
  2990. };
  2991. for (
  2992. let index = this.doctor_advices.length - 1;
  2993. index >= 0;
  2994. index--
  2995. ) {
  2996. var new_advice_index = 0;
  2997. if (
  2998. "children" in this.doctor_advices[index] &&
  2999. this.doctor_advices[index].children.length > 0
  3000. ) {
  3001. new_advice_index =
  3002. index + this.doctor_advices[index].children.length + 1;
  3003. var doctor_advice = {
  3004. delivery_way: this.doctor_advices[index].delivery_way,
  3005. execution_frequency: this.doctor_advices[index]
  3006. .execution_frequency,
  3007. groupno: this.doctor_advices[index].groupno,
  3008. id: this.doctor_advices[index].id,
  3009. parent_id: this.doctor_advices[index].parent_id,
  3010. children: this.doctor_advices[index].children,
  3011. remark: this.doctor_advices[index].remark,
  3012. execution_staff: this.doctor_advices[index].execution_staff,
  3013. checker: this.doctor_advices[index].checker,
  3014. execution_time: this.doctor_advices[index].execution_time,
  3015. advice_doctor: this.doctor_advices[index].advice_doctor
  3016. };
  3017. doctor_advice["isShow"] = 1;
  3018. this.doctor_advices.splice(new_advice_index, 0, doctor_advice);
  3019. // this.doctor_advices.push(doctor_advice)
  3020. }
  3021. }
  3022. var templength = 0;
  3023. if (this.doctor_advices.length > 12) {
  3024. templength = 12;
  3025. } else {
  3026. templength = this.doctor_advices.length;
  3027. }
  3028. for (let index = 0; index < templength; index++) {
  3029. const advice = this.doctor_advices[index];
  3030. if (advice.groupno == 0) {
  3031. // 老版本的医嘱没有分组的概念,所以这一个 if 是解决这个问题的,将每个无分组的医嘱各自归为一组
  3032. if (advice.parent_id > 0) {
  3033. if (this.advice_groups.length > 0) {
  3034. var parent_group = this.advice_groups[
  3035. this.advice_groups.length - 1
  3036. ];
  3037. if (parent_group.advices.length > 0) {
  3038. if (parent_group.advices[0].id == advice.parent_id) {
  3039. parent_group.advices.push(advice);
  3040. }
  3041. }
  3042. }
  3043. continue;
  3044. } else {
  3045. if (group.group_no > 0) {
  3046. this.advice_groups.push(group);
  3047. group = this.newAdviceGroupObject();
  3048. }
  3049. initGroupBlock(group, advice);
  3050. group.advices.push(advice);
  3051. this.advice_groups.push(group);
  3052. group = this.newAdviceGroupObject();
  3053. continue;
  3054. }
  3055. }
  3056. if (group.group_no > 0 && group.group_no != advice.groupno) {
  3057. this.advice_groups.push(group);
  3058. group = this.newAdviceGroupObject();
  3059. }
  3060. if (group.group_no == 0) {
  3061. initGroupBlock(group, advice);
  3062. }
  3063. if (group.group_no == advice.groupno) {
  3064. group.advices.push(advice);
  3065. }
  3066. if (index == 11) {
  3067. this.advice_groups.push(group);
  3068. group = this.newAdviceGroupObject();
  3069. }
  3070. }
  3071. if (this.doctor_advices.length > 12) {
  3072. for (let index = 12; index < this.doctor_advices.length; index++) {
  3073. const advice = this.doctor_advices[index];
  3074. if (advice.groupno == 0) {
  3075. // 老版本的医嘱没有分组的概念,所以这一个 if 是解决这个问题的,将每个无分组的医嘱各自归为一组
  3076. if (advice.parent_id > 0) {
  3077. if (this.advice_groups_2.length > 0) {
  3078. var parent_group = this.advice_groups_2[
  3079. this.advice_groups_2.length - 1
  3080. ];
  3081. if (parent_group.advices.length > 0) {
  3082. if (parent_group.advices[0].id == advice.parent_id) {
  3083. parent_group.advices.push(advice);
  3084. }
  3085. }
  3086. }
  3087. continue;
  3088. } else {
  3089. if (group.group_no > 0) {
  3090. this.advice_groups_2.push(group);
  3091. group = this.newAdviceGroupObject();
  3092. }
  3093. initGroupBlock(group, advice);
  3094. group.advices.push(advice);
  3095. this.advice_groups_2.push(group);
  3096. group = this.newAdviceGroupObject();
  3097. continue;
  3098. }
  3099. }
  3100. if (group.group_no > 0 && group.group_no != advice.groupno) {
  3101. this.advice_groups_2.push(group);
  3102. group = this.newAdviceGroupObject();
  3103. }
  3104. if (group.group_no == 0) {
  3105. initGroupBlock(group, advice);
  3106. }
  3107. if (group.group_no == advice.groupno) {
  3108. group.advices.push(advice);
  3109. }
  3110. }
  3111. }
  3112. if (group.group_no > 0) {
  3113. // 上述的算法会导致最后一组没有加到advice_groups,这里要手动加上
  3114. if (this.doctor_advices.length > 12) {
  3115. this.advice_groups_2.push(group);
  3116. } else {
  3117. this.advice_groups.push(group);
  3118. }
  3119. }
  3120. }
  3121. } else {
  3122. this.loading = false;
  3123. this.$message.error("请求数据失败");
  3124. return false;
  3125. }
  3126. // })
  3127. },
  3128. bloodAccessParOperaName(id) {
  3129. if (id in this.bloodAccessParOpera) {
  3130. return this.bloodAccessParOpera[id].name;
  3131. }
  3132. return "";
  3133. },
  3134. dialysateFormulationName(id) {
  3135. if (id in this.dialysateFormulationOptions) {
  3136. return this.dialysateFormulationOptions[id].name;
  3137. }
  3138. return "";
  3139. },
  3140. getAge: function(val) {
  3141. if (
  3142. this.org_template_info.template_id == 2 ||
  3143. this.org_template_info.template_id == 0
  3144. ) {
  3145. if (val.birthday != 0) {
  3146. return jsGetAge(val.birth, "-");
  3147. } else {
  3148. return "";
  3149. }
  3150. } else {
  3151. if (val.birthday != 0) {
  3152. return jsGetAge(val.birth, "-");
  3153. } else {
  3154. return "";
  3155. }
  3156. }
  3157. },
  3158. newAdviceGroupObject: function() {
  3159. return Object.assign(
  3160. {},
  3161. {
  3162. group_no: 0,
  3163. // advice_doctor: 0,
  3164. // start_time: 0,
  3165. advices: []
  3166. // exec_staff: 0,
  3167. // exec_time: 0,
  3168. // checker: 0,
  3169. }
  3170. );
  3171. },
  3172. getFloat: function(x) {
  3173. if (x == 0) {
  3174. return "/";
  3175. }
  3176. if (x != ".") {
  3177. var f = Math.round(x * 100) / 100;
  3178. var s = f.toString();
  3179. var rs = s.indexOf(".");
  3180. if (rs <= 0) {
  3181. rs = s.length;
  3182. s += ".";
  3183. }
  3184. while (s.length <= rs + 1) {
  3185. s += "0";
  3186. }
  3187. return s;
  3188. } else {
  3189. return "0.0";
  3190. }
  3191. }
  3192. },
  3193. watch: {
  3194. "patientInfo.gender": function() {
  3195. if (this.patientInfo.gender == 1) {
  3196. this.patientInfo_gender_1 = true;
  3197. this.patientInfo_gender_2 = false;
  3198. } else if (this.patientInfo.gender == 2) {
  3199. this.patientInfo_gender_2 = true;
  3200. this.patientInfo_gender_1 = false;
  3201. } else {
  3202. this.patientInfo_gender_2 = false;
  3203. this.patientInfo_gender_1 = false;
  3204. }
  3205. },
  3206. "receiverTreatmentAccess.condition": function() {
  3207. if (this.receiverTreatmentAccess.condition == 1) {
  3208. this.patientInfo_source_1 = false;
  3209. this.patientInfo_source_2 = true;
  3210. } else if (this.receiverTreatmentAccess.condition == 2) {
  3211. this.patientInfo_source_2 = false;
  3212. this.patientInfo_source_1 = true;
  3213. } else {
  3214. this.patientInfo_source_2 = false;
  3215. this.patientInfo_source_1 = false;
  3216. }
  3217. }
  3218. },
  3219. created() {
  3220. var xtuser = this.$store.getters.xt_user;
  3221. this.orgname = xtuser.org.org_name;
  3222. // this.orgname = "遂溪方济医院";
  3223. this.modeOptions = this.$store.getters.treatment_mode;
  3224. this.replacementWays = this.$store.getters.replacement_ways;
  3225. this.perfusionApparatus = this.$store.getters.perfusion_apparatus;
  3226. this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
  3227. this.way_arr = getDataConfig("hemodialysis", "way");
  3228. this.consciousness_arr = getDataConfig("hemodialysis", "consciousness");
  3229. this.appetite_arr = getDataConfig("hemodialysis", "appetite");
  3230. this.posture_arr = getDataConfig("hemodialysis", "posture");
  3231. this.sick_condition_arr = getDataConfig("hemodialysis", "sick_condition");
  3232. this.precaution_arr = getDataConfig("hemodialysis", "precaution");
  3233. this.intake_arr = getDataConfig("hemodialysis", "intake");
  3234. this.nutrition_arr = getDataConfig("hemodialysis", "nutrition");
  3235. this.blood_access_part = getDataConfig("hemodialysis", "vascular_access");
  3236. this.bloodAccessParOpera = getDataConfig(
  3237. "hemodialysis",
  3238. "vascular_access_desc"
  3239. );
  3240. // console.log("血管通路", this.bloodAccessParOpera);
  3241. // var bloodAccessParOpera = getDataConfig(
  3242. // 'hemodialysis',
  3243. // 'vascular_access_desc'
  3244. // )
  3245. // for (var key in bloodAccessParOpera) {
  3246. // this.bloodAccessParOpera[bloodAccessParOpera[key].id] =
  3247. // bloodAccessParOpera[key];
  3248. // }
  3249. var dialysateFormulationOptions = getDataConfig(
  3250. "hemodialysis",
  3251. "dialysate_formulation"
  3252. );
  3253. for (var key in dialysateFormulationOptions) {
  3254. this.dialysateFormulationOptions[dialysateFormulationOptions[key].id] =
  3255. dialysateFormulationOptions[key];
  3256. }
  3257. const xtdate = this.$route.query && this.$route.query.xtdate;
  3258. const xtno = this.$route.query && this.$route.query.xtno;
  3259. if (
  3260. typeof xtdate === "string" &&
  3261. xtdate.length > 0 &&
  3262. typeof xtno === "string" &&
  3263. xtno.length > 0
  3264. ) {
  3265. this.queryParams.xtdate = xtdate;
  3266. this.queryParams.xtno = xtno;
  3267. this.getDialysisRecord();
  3268. } else {
  3269. this.$message.error("参数不齐");
  3270. return false;
  3271. }
  3272. }
  3273. };
  3274. </script>
  3275. <style>
  3276. .row {
  3277. font-size: 16px !important;
  3278. }
  3279. .print_page_main_content {
  3280. background-color: white;
  3281. width: 960px;
  3282. margin: 0 auto 50px;
  3283. padding: 0 0 0 0;
  3284. page-break-after: always;
  3285. }
  3286. .print_page_main_content .order-yy-name {
  3287. margin: auto;
  3288. text-align: center;
  3289. font-size: 20px;
  3290. letter-spacing: 5px;
  3291. }
  3292. .dialysis-print-order .order-title {
  3293. margin: auto;
  3294. font-weight: 600;
  3295. text-align: center;
  3296. font-size: 22px;
  3297. padding: 10px;
  3298. }
  3299. .print_page_main_content .order_title {
  3300. text-align: center;
  3301. font-size: 23px;
  3302. line-height: 50px;
  3303. font-weight: 500;
  3304. }
  3305. .row {
  3306. font-size: 14px;
  3307. line-height: 20px;
  3308. padding: 5px 0;
  3309. }
  3310. .inline_block {
  3311. display: inline-block;
  3312. }
  3313. .under_line_two {
  3314. display: inline-block;
  3315. border-bottom: 1px solid #999;
  3316. text-align: left;
  3317. white-space: nowrap;
  3318. width: 50%;
  3319. }
  3320. .under_line_two::before {
  3321. content: "\00A0";
  3322. }
  3323. .under_line_two::after {
  3324. content: "\00A0";
  3325. }
  3326. .under_line {
  3327. display: inline-block;
  3328. border-bottom: 1px solid #999;
  3329. text-align: center;
  3330. white-space: nowrap;
  3331. width: 50%;
  3332. }
  3333. .under_line::before {
  3334. /* content: "\00A0"; */
  3335. }
  3336. .under_line::after {
  3337. content: "\00A0";
  3338. }
  3339. .flex {
  3340. display: -webkit-box;
  3341. display: -moz-box;
  3342. display: -ms-flexbox;
  3343. display: -webkit-flex;
  3344. display: flex;
  3345. align-items: center;
  3346. -webkit-align-items: center;
  3347. box-align: center;
  3348. -moz-box-align: center;
  3349. -webkit-box-align: center;
  3350. text-align: center;
  3351. -webkit-justify-content: space-between;
  3352. justify-content: space-between;
  3353. -moz-box-pack: space-between;
  3354. -webkit--moz-box-pack: space-between;
  3355. box-pack: space-between;
  3356. }
  3357. .print_page_main_content .proj_table {
  3358. width: 100%;
  3359. border: 1px solid;
  3360. border-collapse: collapse;
  3361. padding: 2px;
  3362. }
  3363. .print_page_main_content .proj_table tbody tr td {
  3364. border: 1px solid;
  3365. /* text-align: center; */
  3366. font-size: 16px;
  3367. padding: 5px 8px;
  3368. line-height: 30px;
  3369. }
  3370. .print_page_main_content .proj_table .inside_table {
  3371. width: 100%;
  3372. border: hidden; /* 解决边框冲突 */
  3373. border-collapse: collapse;
  3374. }
  3375. .print_page_main_content .proj_table .inside_table tr td {
  3376. border: 1px solid;
  3377. text-align: center;
  3378. font-size: 16px;
  3379. padding: 6px 5px;
  3380. line-height: 18px;
  3381. }
  3382. .print-table-no {
  3383. width: 100%;
  3384. text-align: center;
  3385. border-collapse: collapse;
  3386. font-size: 14px;
  3387. }
  3388. .es-img {
  3389. height: 30px;
  3390. }
  3391. .advice-name {
  3392. text-align: left !important;
  3393. line-height: 16px !important;
  3394. }
  3395. .advice-children {
  3396. display: flex;
  3397. }
  3398. .margin-bottom-50 {
  3399. }
  3400. .margin-bottom-300 {
  3401. margin-bottom: 450px;
  3402. }
  3403. .margin-bottom-600 {
  3404. margin-bottom: 600px;
  3405. }
  3406. .margin-bottom-900 {
  3407. margin-bottom: 900px;
  3408. }
  3409. .print-yema {
  3410. position: absolute;
  3411. left: 50%;
  3412. }
  3413. .print-yema2 {
  3414. position: absolute;
  3415. left: 50%;
  3416. }
  3417. .print-yema3 {
  3418. position: absolute;
  3419. left: 50%;
  3420. }
  3421. .print-yema4 {
  3422. position: absolute;
  3423. left: 50%;
  3424. }
  3425. .check_box_panel .did_checke::after {
  3426. font-size: 8px;
  3427. margin-left: 2px;
  3428. margin-top: 2px;
  3429. position: absolute;
  3430. }
  3431. </style>