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

DialysisPrintOrderFiftyOne.vue 159KB

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