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

DialysisPrintOrderFortySeven.vue 137KB

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