DialysisPrintOrderFortySeven.vue 136KB

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