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

DialysisPrintOrderFiftyfive.vue 132KB

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