123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884 |
- <template>
- <div>
- <el-button type="primary" @click="checkData">一键核对</el-button>
- <el-button type="primary" @click="toUpload">一键上传</el-button>
-
- <div id="dialysis-print-box-1" ref="pdfContent">
- <div
- id="dialysis-print-box-1-1"
- class="dialysis-print-order print-template-two print_page_main_content"
- >
- <div style="display: inline-block; width: 100%; text-align: center">
- <div
- class="order-yy-name"
- style="
- letter-spacing: 0;
- font-weight: 600;
- font-size: 22px;
- display: inline-block;
- "
- >
- {{ orgname }}
- </div>
- <div
- v-if="org_id!=0 && org_id!=10449 && org_id!=3877 && org_id!=9671"
- class="order-title"
- style="
- letter-spacing: 0;
- font-weight: 600;
- font-size: 22px;
- display: inline-block;
- "
- >
- 血液净化治疗记录单
- </div>
-
- <div
- v-if="org_id ==0 || org_id ==10449 || org_id ==3877 || org_id ==9671"
- class="order-title"
- style="
- letter-spacing: 0;
- font-weight: 600;
- font-size: 22px;
- display: inline-block;
- "
- >
- <span v-if="prescription.mode_id!=13">血液净化治疗记录单</span>
- <span v-if="prescription.mode_id==13">连续性肾脏替代治疗(CRRT)记录单</span>
- </div>
- </div>
- <div class="row">
- <div class="inline_block">
- 姓名:
- <div class="under_line" style="width: 50px; text-align: center">
- {{ patientInfo.name }}
- </div>
- </div>
- <div class="inline_block" style="margin-left: 10px">
- 性别:
- <div class="under_line" style="width: 30px; text-align: center">
- {{ patientInfo_gender_1 ? "男" : "女" }}
- </div>
- </div>
- <div class="inline_block" style="margin-left: 10px">
- 年龄:
- <div class="under_line" style="width: 30px; text-align: center">
- {{ getAge(patientInfo) }}
- </div>
- 岁
- </div>
- <div class="inline_block" v-if="receiverTreatmentAccess.condition!=1">
- 门诊:
- <div class="under_line" style="width: 30px; text-align: center">
- <check-box :checked="patientInfo_source_1"></check-box>
- </div>
- </div>
- <div class="inline_block" v-if="receiverTreatmentAccess.condition==1">
- 住院:
- <div class="under_line" style="width: 30px; text-align: center">
- <check-box :checked="receiverTreatmentAccess.condition == 1"></check-box>
- </div>
- </div>
- <div class="inline_block">
- 病区:
- <div class="under_line" style="width: 50px; text-align: center">
- <span v-if="org_id == 10121||org_id == 10138||org_id == 10414 ||org_id == 10447 || org_id == 0 || org_id ==10460 || org_id ==10567">{{
- patientInfo.DialysisSchedule.device_zone.name
- ? patientInfo.DialysisSchedule.device_zone.name
- : ""
- }}</span>
- <span v-else>{{ "/" }}</span>
- </div>
- </div>
- <div class="inline_block" v-if="org_id!=10460">
- 床号:
- <div class="under_line" style="width: 50px; text-align: center">
- <span v-if="org_id == 10121||org_id == 10414 || org_id == 10447 || org_id == 9675 || org_id == 0 || org_id ==10460 || org_id ==10515 || org_id == 10567">{{
- dialysisOrder &&
- dialysisOrder.DeviceNumber &&
- dialysisOrder.DeviceNumber.number.length > 0
- ? dialysisOrder.DeviceNumber.number
- : patientInfo.DialysisSchedule.device_number.number
- }}</span>
- <span v-else>{{ "/" }}</span>
- </div>
- </div>
- <div class="inline_block">
- 透析号:
- <div class="under_line" style="width: 70px; text-align: center">
- {{ patientInfo.dialysis_no }}
- </div>
- </div>
- <div class="inline_block" style="margin-left: 5px;" v-if="org_id!=9675 && org_id!=10447&&org_id!=10460">
- 住院号/门诊号:
- <div class="under_line" style="width: 70px;text-align: left" v-if="receiverTreatmentAccess.admission_number">
- {{ receiverTreatmentAccess.admission_number }}
- </div>
- <div class="under_line" style="width: 70px;text-align: left" v-else-if="patientInfo.admission_number">
- {{ patientInfo.admission_number }}
- </div>
- <div class="under_line" style="width: 70px;text-align: left" v-else>
- {{ "/" }}
- </div>
- </div>
- </div>
- <div class="row">
- <div class="inline_block">
- 入科方式:
- <div
- v-for="(item, index) in way_arr"
- class="under_line"
- v-if="receiverTreatmentAccess.way == item.id"
- style="width: 180px; text-align: left"
- >
- {{ item.name }}
- </div>
- <!--<div-->
- <!--class="under_line"-->
- <!--v-if="receiverTreatmentAccess.way == 1"-->
- <!--style="width: 180px;text-align: left"-->
- <!-->-->
- <!--步行-->
- <!--</div>-->
- <!--<div-->
- <!--class="under_line"-->
- <!--v-if="receiverTreatmentAccess.way == 2"-->
- <!--style="width: 180px;text-align: left"-->
- <!-->-->
- <!--扶行-->
- <!--</div>-->
- <!--<div-->
- <!--class="under_line"-->
- <!--v-if="receiverTreatmentAccess.way == 3"-->
- <!--style="width: 180px;text-align: left"-->
- <!-->-->
- <!--轮椅-->
- <!--</div>-->
- <!--<div-->
- <!--class="under_line"-->
- <!--v-if="receiverTreatmentAccess.way == 4"-->
- <!--style="width: 180px;text-align: left"-->
- <!-->-->
- <!--平车-->
- <!--</div>-->
- </div>
-
- <div class="inline_block" style="margin-left: 10px" v-if="org_id!=10460">
- 诊断:
- <div
- class="under_line"
- style="
- width: 640px;
- text-align: left;
- word-wrap: break-word;
- white-space: inherit;
- "
- >
- {{ patientInfo.diagnose }}
- </div>
- </div>
- </div>
-
- <div
- class="row"
- :style="this.totollength > 13 ? 'margin-bottom:400px;' : ''"
- >
- <table class="proj_table">
- <tbody>
- <tr>
- <td
- colspan="2"
- style="
- letter-spacing: 5px;
- text-align: center;
- font-weight: 520;
- font-size: 16px;
- padding: 6px 8px;
- line-height: 30px;
- "
- >
- 透析前情况
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div class="inline_block" style="flex: 1">
- 本次透析日期:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- {{ xtdate }}
- </div>
- </div>
- <div class="inline_block" style="flex: 1">
- 透析次数:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- {{
- patientInfo.total_dialysis +
- patientInfo.user_sys_before_count
- ? patientInfo.total_dialysis +
- patientInfo.user_sys_before_count
- : "/"
- }}
- </div>
- </div>
- <div class="inline_block" style="flex: 1">
- 透前症状:
- <div
- class="under_line"
- style="width: 150px; text-align: center"
- >
- {{
- predialysis.symptom_before_dialysis
- ? predialysis.symptom_before_dialysis
- : "/"
- }}
- </div>
- </div>
- </div>
-
- <div class="row" style="padding: 2px 0; line-height: 23px">
- <div class="inline_block">
- T:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- predialysis.temperature
- ? predialysis.temperature
- : "/"
- }}
- </div>
- °C
- </div>
- <div class="inline_block" style="margin-left: 10px">
- P:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- predialysis.pulse_frequency
- ? predialysis.pulse_frequency
- : "/"
- }}
- </div>
- 次/分
- </div>
- <div class="inline_block" style="margin-left: 10px">
- R:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- predialysis.breathing_rate
- ? predialysis.breathing_rate
- : "/"
- }}
- </div>
- 次/分
- </div>
- <div class="inline_block" style="margin-left: 10px">
- BP:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- predialysis.systolic_blood_pressure
- ? predialysis.systolic_blood_pressure
- : "/"
- }}
- </div>
- /
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- predialysis.diastolic_blood_pressure
- ? predialysis.diastolic_blood_pressure
- : "/"
- }}
- </div>
- mmHg
- </div>
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1"
- v-if="org_id!=10580 && org_id !=0"
- >
- 穿刺方式:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- v-if="predialysis.puncture_way == ''"
- >
- /
- </div>
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- v-if="predialysis.puncture_way.indexOf('绳梯') > -1"
- >
- 绳梯
- </div>
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- v-if="predialysis.puncture_way.indexOf('扣眼') > -1"
- >
- 扣眼
- </div>
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- v-if="predialysis.puncture_way.indexOf('区域') > -1"
- >
- 区域
- </div>
- </div>
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1"
- v-if="org_id==10580 || org_id ==0"
- >
- 穿刺方式:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- {{ dialysisOrder.puncture_way }}
- </div>
-
- </div>
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1"
- >
- 穿刺针:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- <span v-if="org_id==10580 || org_id==0">
- {{ dialysisOrder.puncture_needle}}
- </span>
- <span v-if="org_id != 10580 && org_id!=0">
- {{
- predialysis.puncture_needle
- ? predialysis.puncture_needle
- : "/"
- }}
- </span>
-
- </div>
- </div>
- </div>
-
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div class="inline_block">
- 血管通路:
- <div
- class="under_line"
- style="width: 220px; text-align: center"
- >
- <!-- {{ QueryPartById(predialysis.blood_access_part_id) }} -->
- {{ predialysis.blood_access_part_id }}
- {{ predialysis.blood_access_part_opera_name }}
- </div>
- </div>
- <div class="inline_block" style="margin-left: 10px" v-if="org_id!=9675 && org_id!=10447">
- 内瘘:
- <div
- class="under_line"
- style="
- width: 180px;
- text-align: center;
- white-space: normal;
- "
- >
- {{
- predialysis.internal_fistula
- ? predialysis.internal_fistula
- : "/"
- }}
- </div>
- </div>
-
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1.4"
- v-if="org_id!=9675 && org_id!=10447"
- >
- 导管:
- <div
- class="under_line"
- style="width: 150px; text-align: center"
- >
- {{ predialysis.catheter ? predialysis.catheter : "/" }}
- </div>
- </div>
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1"
- v-if="org_id == 10223"
- >
- 导管打折:
- <div
- class="under_line"
- style="
- width: 50px;
- text-align: center;
- white-space: normal;
- "
- >
- <span v-if="predialysis.catheter_bend == 0">/</span>
- <span v-if="predialysis.catheter_bend == 1">有</span>
- <span v-if="predialysis.catheter_bend == 2">无</span>
- </div>
- </div>
- </div>
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div class="inline_block" style="flex: 1">
- <span v-if="org_id==10138">治疗模式:</span>
- <span v-else>透析方式:</span>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="!prescription.mode_id"
- >
- /
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 1"
- >
- HD
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 2"
- >
- HDF
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 3"
- >
- HD+HP
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 4"
- >
- HP
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 5"
- >
- HF
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 6"
- >
- SCUF
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 7"
- >
- IUF
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 8"
- >
- HFHD
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 9"
- >
- HFHD+HP
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 10"
- >
- PHF
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 11"
- >
- HFR
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 12"
- >
- HDF+HP
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 13"
- >
- CRRT
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 14"
- >
- 腹水回输
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 15"
- >
- HD前置换
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 16"
- >
- HD后置换
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 17"
- >
- HDF前置换
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 18"
- >
- HDF后置换
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 19"
- >
- IUF+HD
- </div>
- <div
- class="under_line"
- style="
- width: 150px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 22"
- >
- 血浆胆红素吸附+HDF
- </div>
- <div
- class="under_line"
- style="
- bwidth: 150px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 23"
- >
- 血浆胆红素吸附
- </div>
- <div
- class="under_line"
- style="
- bwidth: 150px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 24"
- >
- I-HDF
- </div>
- <div
- class="under_line"
- style="
- bwidth: 150px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 25"
- >
- HD高通
- </div>
- <div
- class="under_line"
- style="
- width: 100px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 29"
- >
- PE
- </div>
- <div
- class="under_line"
- style="
- width: 150px;
- text-align: center;
- font-weight: 600;
- "
- v-if="prescription.mode_id == 30"
- >
- 血浆胆红素吸附+HP
- </div>
- </div>
-
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1"
- >
- 置换方式:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- {{
- getDisplaceLiquiPart(prescription.displace_liqui_part)
- }}
- </div>
- </div>
- <div
-
- class="inline_block"
- style="margin-left: 10px; flex: 1"
- >
- 置换量:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- <span v-if="org_id ==10206"> {{
- prescription.replacement_total
- ? prescription.replacement_total
- : "/"
- }}
- </span>
- <span v-if="org_id!=10206"> {{
- prescription.displace_liqui_value
- ? prescription.displace_liqui_value
- : "/"
- }}
- </span>
- </div>
- L
- </div>
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1"
- >
- 血流量:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.blood_flow_volume
- ? prescription.blood_flow_volume
- : "/"
- }}
- </div>
- ml/min
- </div>
- <div class="inline_block" style="margin-left: 1px; flex: 1">
- 透析时间:
- <div
- class="under_line"
- style="width: 30px; text-align: center"
- >
- {{
- prescription.dialysis_duration_hour
- ? prescription.dialysis_duration_hour
- : "/"
- }}
- </div>
- h
- <div
- class="under_line"
- style="width: 30px; text-align: center"
- >
- {{
- prescription.dialysis_duration_minute
- ? prescription.dialysis_duration_minute
- : "/"
- }}
- </div>
- min
- </div>
- </div>
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div class="inline_block" style="flex: 1" v-if="org_id!=10290">
- 透析(滤)器:
- <!-- 透析(滤)器分开取值 -->
- <div v-if="org_id!=10414"
- class="under_line"
- style="width: 100px; text-align: center"
- >
- {{
- prescription.dialyzer_perfusion_apparatus
- ? prescription.dialyzer_perfusion_apparatus
- : ""
- }}
- <span v-if="prescription.dialyzer_perfusion_apparatus&&prescription.dialyzer_perfusion_apparatus!=''">/</span>
- {{
- prescription.dialysis_dialyszers
- ? prescription.dialysis_dialyszers
- : ""
- }}
- </div>
- <!-- 透析(滤)器合并取值 -->
- <div v-if="org_id==10414"
- class="under_line"
- style="width: 100px; text-align: center"
- >
- {{
- prescription.dialyzer_perfusion_apparatus
- ? prescription.dialyzer_perfusion_apparatus
- : ""
- }}
- </div>
- </div>
-
- <div class="inline_block" style="flex: 1" v-if="org_id!=10290">
- 灌流器:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- {{
- prescription.dialysis_irrigation
- ? prescription.dialysis_irrigation
- : "/"
- }}
- </div>
- </div>
-
- <div class="inline_block" style="flex: 1" v-if="org_id ==0 || org_id ==10440">
- 衣物重:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- {{
- predialysis.additional_weight
- ? predialysis.additional_weight
- : "/"
- }}
- </div>
- </div>
- <div class="inline_block" style="flex: 1" v-if="org_id==10290">
- 透析器/灌流器:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- {{
- prescription.dialyzer_perfusion_apparatus
- ? prescription.dialyzer_perfusion_apparatus
- : ""
- }}
- <span v-if="prescription.dialysis_dialyszers&&prescription.dialysis_dialyszers!=''">/</span>
- {{
- prescription.dialysis_dialyszers
- ? prescription.dialysis_dialyszers
- : ""
- }}
- </div>
- </div>
- <div
- class="inline_block"
- style="flex: 1"
- v-if="org_id == 9538"
- >
- 血浆分离器:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- <span
- v-if="
- prescription.plasma_separator
- ? prescription.plasma_separator != 0 &&
- prescription.plasma_separator != '0'
- : false
- "
- >{{ prescription.plasma_separator }}</span
- >
- <span v-else>/</span>
- </div>
- </div>
- <div
- class="inline_block"
- style="flex: 1"
- v-if="org_id == 9538"
- >
- 胆红素吸附柱:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- <span
- v-if="
- prescription.bilirubin_adsorption_column
- ? prescription.bilirubin_adsorption_column != 0 &&
- prescription.bilirubin_adsorption_column != '0'
- : false
- "
- >{{ prescription.bilirubin_adsorption_column }}</span
- >
- <span v-else>/</span>
- </div>
- </div>
- </div>
-
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div class="inline_block" style="flex: 1" v-if="org_id!=10440 && org_id!=10510">
- 上次透后体重:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- <span v-if="org_id == 10290 || org_id == 10318 || org_id== 10217 || org_id== 10188 || org_id== 9956 || org_id == 10440 || org_id == 0 || org_id == 10469 || org_id == 10478 || org_id == 10490 || org_id ==10495 || org_id == 10460 || org_id==10585 || org_id ==10567 || org_id ==10598">{{
- lastafterdialysis.weight_after
- }}</span>
- <span v-if="org_id != 10290 && org_id != 10318 && org_id!= 10217 && org_id!=10188 && org_id!=9956 && org_id != 10440 && org_id!=0 && org_id!=10469 && org_id!=10478 && org_id!=10490 && org_id!=10495 && org_id!=10460 && org_id!=10585 && org_id!=10567 && org_id!=10598">{{
- predialysis.weight_after_last_transparency
- ? predialysis.weight_after_last_transparency
- : "未称重"
- }}</span>
- <!-- {{ predialysis.weight_after_last_transparency ? parseFloat(lastafterdialysis.weight_after - lastafterdialysis.additional_weight).toFixed(1) : "未称重" }} -->
- </div>
- kg
- </div>
- <div class="inline_block" style="flex: 1">
- 透前体重:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- <span v-if="org_id !=10447 && org_id != 9675">{{
- predialysis.weight_before
- ? parseFloat(
- predialysis.weight_before -
- predialysis.additional_weight
- ).toFixed(1)
- : "/"
- }}
- </span>
- <span v-if="org_id==10447 || org_id == 9675">
- {{
- predialysis.weight_before
- ? parseFloat(
- predialysis.weight_before -
- predialysis.additional_weight
- ).toFixed(1)
- : "未称重"
- }}
- </span>
- </div>
- kg
- </div>
- <div class="inline_block" style="flex: 1" v-if="org_id!=10469 && org_id!=0">
- 计划超滤量:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- {{
- prescription.target_ultrafiltration
- ? prescription.target_ultrafiltration
- : "/"
- }}
- </div>
- <span v-if="org_id == 10395 || org_id == 9829 || org_id == 10440 || org_id == 10469 || org_id == 10471 || org_id == 10460">ml</span>
- <span v-if="org_id!=10395&&org_id!=9829 && org_id!=10440 && org_id!=10469 && org_id!=10471 && org_id!=10460">L</span>
- </div>
-
-
- <div class="inline_block" style="flex: 1" v-if="org_id == 10469 || org_id == 0">
- 处方脱水量:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- {{
- prescription.prescription_water
- ? prescription.prescription_water
- : "/"
- }}
- </div>
- ml
- </div>
- <div class="inline_block" style="flex: 1">
- 干体重:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- {{
- predialysis.dry_weight ? predialysis.dry_weight : "/"
- }}
- </div>
- kg
- </div>
- </div>
-
- <div class="row" style="padding: 2px 0; line-height: 23px" v-if="org_id !=10449">
- <div class="inline_block">
- 透析液成分钾:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{ prescription.kalium ? prescription.kalium : "/" }}
- </div>
- mmol/L
- </div>
- <div class="inline_block" style="margin-left: 10px">
- 钠:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{ prescription.sodium ? prescription.sodium : "/" }}
- </div>
- mmol/L
- </div>
- <div class="inline_block" style="margin-left: 10px">
- 钙:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{ prescription.calcium ? prescription.calcium : "/" }}
- </div>
- mmol/L
- </div>
- <div class="inline_block" style="margin-left: 10px" v-if="org_id!=10478 && org_id !=10598">
- 碳酸氢根:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.bicarbonate
- ? prescription.bicarbonate
- : "/"
- }}
- </div>
- mmol/L
- </div>
- <div class="inline_block" style="margin-left: 10px" v-if="org_id!=10478 && org_id !=10598">
- 流量:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.dialysate_flow
- ? prescription.dialysate_flow
- : "/"
- }}
- </div>
- ml/min
- </div>
- </div>
- <div class="row" style="padding: 2px 0; line-height: 23px">
- <div class="inline_block">
- 抗凝剂:
- <div
- class="under_line"
- style="width: 150px; text-align: center"
- >
- <span v-if="org_id != 0 && org_id !=10206"> {{
- prescription.anticoagulant_name
- ? prescription.anticoagulant_name
- : "/"
- }}
- </span>
- <span v-if="org_id == 0 || org_id == 10206">
- <span v-if="prescription.anticoagulant_name== '低分子肝素钙'">低分子量肝素钙</span>
- <span v-if="prescription.anticoagulant_name!= '低分子肝素钙'">{{prescription.anticoagulant_name}}</span>
- </span>
- </div>
- </div>
- <div
- class="inline_block"
- style="margin-left: 20px"
- v-if="prescription.anticoagulant != 5"
- >
- 首剂:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.anticoagulant_shouji
- ? prescription.anticoagulant_shouji
- : "/"
- }}
- </div>
-
- <span v-if="org_id!=9675 && org_id!=10447 && org_id!=9829 && org_id!=10440 && org_id!=10469 && org_id!=10471 && org_id!=10460">
- <span v-if="prescription.anticoagulant == 4">mg</span>
- <span v-if="prescription.anticoagulant == 3">iu</span>
- <span v-if="prescription.anticoagulant == 2">mg</span>
- <span v-if="prescription.anticoagulant == 1">mg</span>
- </span>
-
- <span v-if="org_id==9675 || org_id==10447 || org_id==9829 || org_id==10440 || org_id==10469 || org_id == 10471 || org_id == 10460">
- <span v-if="prescription.anticoagulant == 4">iu</span>
- <span v-if="prescription.anticoagulant == 3">iu</span>
- <span v-if="prescription.anticoagulant == 2">mg</span>
- <span v-if="prescription.anticoagulant == 5">ml</span>
- <span v-if="prescription.anticoagulant == 6">iu</span>
- <span v-if="prescription.anticoagulant == 7">iu</span>
- <span v-if="prescription.anticoagulant == 8">iu</span>
- <span v-if="prescription.anticoagulant == 9">iu</span>
- <span v-if="prescription.anticoagulant == 10">iu</span>
- <span v-if="prescription.anticoagulant == 11">iu</span>
- <span v-if="prescription.anticoagulant == 13">iu</span>
-
- </span>
- </div>
- <div class="inline_block" style="margin-left: 20px">
- 维持:
- <div
- v-if="prescription.anticoagulant == 1"
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.anticoagulant_weichi
- ? prescription.anticoagulant_weichi
- : "/"
- }}
- </div>
- <div
- v-if="prescription.anticoagulant != 1"
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.anticoagulant_weichi
- ? prescription.anticoagulant_weichi
- : "0"
- }}
- </div>
- <span v-if="org_id!=9675 && org_id!=10447 && org_id!=9829 && org_id!=10440 && org_id!=10469 && org_id!=10471 && org_id!=10460">
-
- <span v-if="prescription.anticoagulant == 5">ml/h</span>
- <span v-if="prescription.anticoagulant == 4">mg/h</span>
- <span v-if="prescription.anticoagulant == 3">iu/h</span>
- <span v-if="prescription.anticoagulant == 2">mg/h</span>
- <span v-if="prescription.anticoagulant == 1">mg/h</span>
- </span>
- <span v-if="org_id==9675 || org_id==10447 || org_id== 9829 || org_id == 10440 || org_id == 10469 || org_id == 10471 || org_id == 10460">
- <span v-if="prescription.anticoagulant == 2">mg/h</span>
- <span v-if="prescription.anticoagulant == 3">iu/h</span>
- <span v-if="prescription.anticoagulant == 4">ml</span>
- <span v-if="prescription.anticoagulant == 5">ml/h</span>
- <span v-if="prescription.anticoagulant == 6">iu/h</span>
- <span v-if="prescription.anticoagulant == 7">iu/h</span>
- <span v-if="prescription.anticoagulant == 8">iu/h</span>
- <span v-if="prescription.anticoagulant == 9">iu/h</span>
- <span v-if="prescription.anticoagulant == 10">iu/h</span>
- <span v-if="prescription.anticoagulant == 11">iu/h</span>
- <span v-if="prescription.anticoagulant == 13">iu/h</span>
- </span>
- </div>
- <div
- class="inline_block"
- style="margin-left: 20px"
- v-if="prescription.anticoagulant == 5"
- >
- 钙名称:
- <div
- class="under_line"
- style="width: 150px; text-align: center"
- >
- {{
- prescription.anticoagulant_gaimingcheng
- ? prescription.anticoagulant_gaimingcheng
- : "/"
- }}
- </div>
- </div>
- <div
- class="inline_block"
- style="margin-left: 20px"
- v-if="prescription.anticoagulant == 5"
- >
- 钙剂量:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.anticoagulant_gaijiliang
- ? prescription.anticoagulant_gaijiliang
- : "/"
- }}
- </div>
- ml
- </div>
- <div
- class="inline_block"
- style="margin-left: 20px"
- v-if="prescription.anticoagulant != 5"
- >
- 总量:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.anticoagulant_zongliang
- ? prescription.anticoagulant_zongliang
- : "/"
- }}
- </div>
- <span v-if="org_id!=9675 && org_id!=10447 && org_id!=9829 && org_id!=10440 && org_id!=10469 && org_id!=10471 && org_id!=10460">
- <span v-if="prescription.anticoagulant == 4">mg</span>
- <span v-if="prescription.anticoagulant == 3">iu</span>
- <span v-if="prescription.anticoagulant == 2">mg</span>
- <span v-if="prescription.anticoagulant == 1">mg</span>
- </span>
- <span v-if="org_id==9675 || org_id==10447 || org_id == 9829 || org_id == 10440 || org_id == 10469 || org_id == 10471|| org_id == 10460">
- <span v-if="prescription.anticoagulant == 2">mg</span>
- <span v-if="prescription.anticoagulant == 3">iu</span>
- <span v-if="prescription.anticoagulant == 4">ml</span>
- <span v-if="prescription.anticoagulant == 5">ml</span>
- <span v-if="prescription.anticoagulant == 6">iu</span>
- <span v-if="prescription.anticoagulant == 7">iu</span>
- <span v-if="prescription.anticoagulant == 8">iu</span>
- <span v-if="prescription.anticoagulant == 9">iu</span>
- <span v-if="prescription.anticoagulant == 10">iu</span>
- <span v-if="prescription.anticoagulant == 11">iu</span>
- <span v-if="prescription.anticoagulant == 13">iu</span>
- </span>
- </div>
- <div class="inline_block" style="margin-left: 20px" v-if="org_id!=9675 && org_id!=10447">
- 透析机号:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- dialysisOrder &&
- dialysisOrder.DeviceNumber &&
- dialysisOrder.DeviceNumber.number.length > 0
- ? dialysisOrder.DeviceNumber.number
- : patientInfo.DialysisSchedule.device_number.number
- }}
- </div>
- </div>
- </div>
-
- <div class="row" style="padding: 2px 0; line-height: 23px" v-if=" org_id == 3877 || org_id == 9671">
- <div
- class="inline_block"
- style="margin-left: 20px"
- v-if="prescription.anticoagulant != 5"
- >
- 置换速度:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.displace_speed
- ? prescription.displace_speed
- : ""
- }}
- </div>
- <span>ml/h</span>
-
-
- </div>
- <div
- class="inline_block"
- style="margin-left: 20px"
- v-if="prescription.anticoagulant != 5"
- >
- 透析液流速:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.dialysis_fluid_flow
- ? prescription.dialysis_fluid_flow
- : ""
- }}
- </div>
- <span>ml/h</span>
-
-
- </div>
- <div class="inline_block" style="margin-left: 20px">
- 碳酸氢钠流速:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- prescription.sodium_bicarbonate_flow
- ? prescription.sodium_bicarbonate_flow
- : ""
- }}
- </div>
-
-
- </div>
- <span>ml/h</span>
-
-
-
- </div>
-
- <div class="row" style="padding: 2px 0; line-height: 23px" v-if="org_id ==10469 || org_id == 9671">
- <div
- class="inline_block"
- style="margin-left: 20px"
- >
- 透析机型号:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{predialysis.machine_type ? predialysis.machine_type : ""}}
- </div>
-
- </div>
- <div
- class="inline_block"
- style="margin-left: 20px"
- >
- 跌倒风险评估评分:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{ receiverTreatmentAccess.score }}
- </div>
- </div>
- </div>
-
-
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- v-if="org_id != 10223"
- >
- <div
- class="inline_block"
- style="flex: 1; display: inline-block"
- v-if="org_id!=9675 && org_id!=10447"
- >
- 备注:
- <div
- class="under_line"
- style="
- width: 860px;
- line-height: 25px;
- text-align: left;
- margin-left: 2px;
- display: inline-block;
- white-space: normal;
- "
- >
- {{ predialysis.remark ? predialysis.remark : "/" }}
- </div>
- </div>
- </div>
- </td>
- </tr>
- <tr>
- <td style="padding: 0; position: relative" colspan="2">
- <table class="inside_table">
- <tbody>
- <tr>
- <td
- :colspan="
- prescription.mode_id == 2 ||
- prescription.mode_id == 5
- ? 14
- : 13
- "
- style="
- letter-spacing: 5px;
- text-align: center;
- font-weight: 520;
- font-size: 16px;
- padding: 0px 8px;
- line-height: 30px;
- "
- >
- 治疗记录
- </td>
- </tr>
- <tr>
- <td width="50">时间</td>
- <td width="65">血压<br />(mmHg)</td>
- <td width="50">脉搏<br />(次/分)</td>
- <td width="50" v-if="org_id!=10489">呼吸<br />(次/分)</td>
- <td width="50">血流量<br />(ml/min)</td>
- <td width="50" v-if="org_id==10478 || org_id == 0">
- 动脉压<br />({{
- monitors[0] &&
- monitors[0]["venous_pressure_type"] == 2
- ? "kpa"
- : "mmHg"
- }})
- </td>
- <td width="50">
- 静脉压<br />({{
- monitors[0] &&
- monitors[0]["venous_pressure_type"] == 2
- ? "kpa"
- : "mmHg"
- }})
- </td>
- <td width="50">
- 跨膜压<br />({{
- monitors[0] &&
- monitors[0]["transmembrane_pressure_type"] == 2
- ? "kpa"
- : "mmHg"
- }})
- </td>
-
- <td width="60" v-if="org_id == 9836">体温(°C)</td>
- <td width="60" v-if="org_id == 9919">血温(°C)</td>
- <td width="60" v-if="org_id == 9671">血温(°C)</td>
- <td width="60" v-if="org_id!=9836&&org_id!=9919&&org_id!=9671">透析液温度(°C)</td>
- <td width="50" v-if="org_id != 10121 && org_id!=10600">
- <span v-if="org_id != 0 && org_id !=10469 && org_id!=10490 "> 电导度<br />(ms/cm)</span>
- <span v-if="org_id ==10469"> 钠浓度<br />(mmol/L)</span>
- <span v-if="org_id == 0 || org_id == 10490"> 置换液的速度<br />(ml/h)</span>
- </td>
- <td width="50" v-if="org_id == 10121">SpO₂<br />(%)</td>
- <td width="50" v-if="org_id == 10375 || org_id == 0">置换率<br />(ml/h)</td>
- <td width="50" v-if="org_id != 3877 && org_id != 10449 && org_id != 10600">超滤量<br />(ml)</td>
- <td width="50" v-if="org_id == 10600">超滤率<br/>(ml/h)</td>
- <td width="50" v-if="org_id ==3877 || org_id == 10449 || org_id ==0">累计超滤量<br />(ml)</td>
- <td v-if="(prescription.mode_id == 2 ||prescription.mode_id == 5 ||prescription.mode_id == 12) &&org_id!=10478 && org_id!=0 && org_id!=10206" width="50">
- 置换量<br />(ml)
- </td>
- <td width="50" v-if="org_id == 3877 || org_id == 0 || org_id == 10449">滤前压(mmHg)</td>
- <td width="50" v-if="org_id == 9538 || org_id ==10600">KT/V</td>
- <td width="50" v-if="org_id == 9919">在线尿素监测</td>
- <td width="50" v-if="org_id == 9671">在线尿素监测</td>
- <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id== 9671">血容量<br />(L)</td>
- <td width="50" v-if="org_id == 10490 || org_id == 0">碳酸氢钠<br />(ml)</td>
- <td width="200">病情变化及处理</td>
- </tr>
-
- <tr v-for="(monitor, monindex) in monitors" :key="monindex">
- <td>{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
- <td>{{monitor.systolic_blood_pressure? monitor.systolic_blood_pressure + "/": ""}}
- {{monitor.diastolic_blood_pressure? monitor.diastolic_blood_pressure: ""}}</td>
- <td>{{ monitor.pulse_frequency? monitor.pulse_frequency: ""}}</td>
- <td v-if="org_id!=10489">{{monitor.breathing_rate ? monitor.breathing_rate : ""}}</td>
- <td>{{monitor.blood_flow_volume? monitor.blood_flow_volume: ""}}</td>
- <td v-if="org_id ==10478">
- {{
- monitor.arterial_pressure
- ? monitor.arterial_pressure
- : "/"
- }}
- </td>
- <td>
- <span v-if="org_id ==10551">
- {{
- monitor.venous_pressure
- ? monitor.venous_pressure
- : "/"
- }}
- </span>
- <span v-if="org_id!=10551">
- {{
- monitor.venous_pressure
- ? monitor.venous_pressure
- : ""
- }}
- </span>
-
- </td>
- <td>
- <span
- v-if="
- (dialysisOrder &&
- monitor.operate_time >
- dialysisOrder.end_time) ||
- (dialysisOrder &&
- monitor.operate_time < dialysisOrder.start_time)
- "
- >
- {{
- monitor.transmembrane_pressure
- ? monitor.transmembrane_pressure
- : "/"
- }}
- </span>
- <span
- v-if="
- dialysisOrder &&
- monitor.operate_time <= dialysisOrder.end_time &&
- dialysisOrder &&
- monitor.operate_time >= dialysisOrder.start_time
- "
- >
- {{
- monitor.transmembrane_pressure
- ? monitor.transmembrane_pressure
- : ""
- }}
- </span>
- </td>
- <td v-if="org_id == 9919">
- {{monitor.dialysate_temperature? monitor.dialysate_temperature: ""}}
- </td>
- <td v-if="org_id == 9671">
- {{monitor.dialysate_temperature? monitor.dialysate_temperature: ""}}
- </td>
-
- <td v-if="org_id == 9836">
- {{ monitor.temperature ? monitor.temperature : "" }}
- </td>
-
- <td v-if="org_id!=9919 && org_id!=9671 && org_id!=9836">
- {{monitor.dialysate_temperature? monitor.dialysate_temperature: ""}}
- </td>
-
-
- <td v-if="org_id == 10121">
- {{monitor.blood_oxygen_saturation? monitor.blood_oxygen_saturation: ""}}
- </td>
-
- <td v-if="org_id == 9538">
- {{monitor.sodium_concentration? monitor.sodium_concentration: ""}}
- </td>
-
-
- <td v-if="org_id != 9538 &&org_id != 10121 &&org_id!=10600">
- <span v-if="org_id!=0&&org_id!=10469 && org_id!=10490"> {{ monitor.conductivity ? monitor.conductivity : "" }}</span>
- <span v-if="org_id==10469"> {{ monitor.sodium_concentration ? monitor.sodium_concentration : "" }}</span>
- <span v-if="org_id==0||org_id==10490"> {{ monitor.replacement_speed ? monitor.replacement_speed : "" }}</span>
- </td>
-
-
- <td v-if="org_id == 10375 || org_id == 0"><br />
- {{ monitor.replacement_rate? monitor.replacement_rate: ""}}
- </td>
- <td v-if="org_id!=10600">
- <span v-if="org_id!=9671 && org_id!=10440"> {{ monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: ""}}</span>
- <span v-if="org_id==9671 || org_id==10440"> {{ monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: "0"}}</span>
- </td>
- <td width="50" v-if="org_id == 10600"><br/> {{ monitor.ultrafiltration_rate? monitor.ultrafiltration_rate: "0"}}</td>
- <td
- v-if="
- (prescription.mode_id == 2 ||
- prescription.mode_id == 5 ||
- prescription.mode_id == 12)
- && org_id!=0 && org_id!=10478 && org_id!=10206
- "
- style="width: 50px"
- >
- <span>
- {{
- monitor.displacement_quantity
- ? monitor.displacement_quantity
- : ""
- }}
- </span>
- </td>
- <td width="50" v-if="org_id == 3877 || org_id == 0 || org_id == 10449">{{ monitor.filter_pressure?monitor.filter_pressure:""}}</td>
- <td width="50" v-if="org_id == 9919 || org_id == 9538 || org_id == 9671 || org_id ==10600">
- {{ monitor.ktv?monitor.ktv:"" }}
- </td>
- <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id == 9671">
- {{ monitor.accumulated_blood_volume? monitor.accumulated_blood_volume:"" }}
- </td>
- <td width="50" v-if="org_id ==10490 || org_id == 0">
- {{ monitor.dicarbonate?monitor.dicarbonate:"" }}
- </td>
- <td style="line-height: 16px; padding: 0px">
- <div
- style="
- min-height: 35px;
- line-height: 35px;
- overflow: hidden;
- "
- >
- <span
- style="
- word-break: break-all;
- margin: 0;
- line-height: 16px;
- -webkit-line-clamp: 3;
- overflow: visible;
- display: inline-block;
- vertical-align: middle;
- height: auto;
- "
- >
- <template
- v-if="
- (dialysisOrder &&
- monitor.operate_time ==
- dialysisOrder.start_time)&&(org_id!=10414)
- "
- >【开始透析】
- </template>
-
- {{ monitor.end }} {{ monitor.symptom }} {{
- monitor.dispose
- }}
- {{ monitor.result }}
- </span>
- </div>
- </td>
- </tr>
- <tr
- v-for="(monitor, monindex) in monitors2"
- :key="monindex"
- >
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td v-if="org_id == 0 || org_id ==10478"></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td v-if="org_id == 10375 || org_id == 0"><br /></td>
- <td v-if="org_id == 9671 || org_id == 9919"></td>
- <td
- v-if="
- (prescription.mode_id == 2 ||
- prescription.mode_id == 5 ||
- prescription.mode_id == 12) && org_id!=10478
- "
- width="50"
- ></td>
- <td v-if="org_id == 9919||org_id == 9538 || org_id == 9671"></td>
- <td v-if="org_id == 9538"></td>
- <td v-if="org_id == 10490 || org_id == 0"></td>
- <td style="line-height: 16px; padding: 0px">
- <div
- style="
- height: 40px;
- line-height: 20px;
- overflow: hidden;
- "
- >
- <span
- style="
- word-break: break-all;
- margin: 0;
- line-height: 16px;
- -webkit-line-clamp: 3;
- overflow: visible;
- display: inline-block;
- vertical-align: middle;
- height: auto;
- "
- >
- </span>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- <tr>
- <td style="padding: 0; position: relative" colspan="2">
- <table class="inside_table">
- <tbody>
- <tr style="line-height: 35px; padding: 8px 5px">
- <td
- colspan="7"
- style="
- letter-spacing: 5px;
- text-align: center;
- font-weight: 520;
- font-size: 16px;
- padding: 0px 8px;
- line-height: 30px;
- "
- >
- 医嘱内容
- </td>
- </tr>
- <!-- <tr style="line-height:35px;padding:8px 5px;">
- <td colspan="4" style="font-size: 16px">开医嘱</td>
- <td colspan="3" style="font-size: 16px">执行核对医嘱</td>
- </tr> -->
- <tr style="line-height: 35px; padding: 8px 5px">
- <td style="font-size: 16px" width="10%">时间</td>
- <td style="font-size: 16px" colspan="2" width="45%">
- 医嘱内容
- </td>
- <td style="font-size: 16px" width="10%">医生签名</td>
- <!-- <td style="font-size: 16px" width="10%">核对人签名</td> -->
- <td style="font-size: 16px" width="10%">执行人签名</td>
- <td style="font-size: 16px" width="10%">时间</td>
- <td
- style="font-size: 16px"
- width="10%"
- v-if="org_id == 10223 || org_id == 9538 || org_id == 0 || org_id ==10375"
- >
- 核对护士
- </td>
- </tr>
- <!-- <template v-for="group in doctor_advices" > -->
-
- <tr
- v-for="(advice, advice_index) in doctor_advices"
- :key="advice_index"
- >
- <td height="32px">
- <span v-if="advice.start_time">
- {{ getTime(advice.start_time, "{h}:{i}") }}
- </span>
- <!-- <span v-else> <br/> </span> -->
- </td>
- <td
- height="32px"
- colspan="2"
- class="advice-name"
- style="padding-left: 7px"
- >
- <span v-if="advice.parent_id > 0">---></span>
- <span>{{ advice.advice_name }}</span>
- <span v-if="advice && advice.advice_desc"
- >({{ advice.advice_desc
- }}{{ advice.drug_spec_unit }})</span
- >
- <span v-if="advice.prescribing_number"
- > {{ advice.prescribing_number
- }}{{ advice.prescribing_number_unit }}</span
- >
- <span v-if="advice.single_dose != 0"
- >{{ advice.single_dose
- }}{{ advice.single_dose_unit }}</span
- >
- <span v-if="advice.parent_id == 0">{{
- advice.delivery_way
- }}</span>
- <span v-if="advice.parent_id == 0">{{
- advice.execution_frequency
- }}</span>
- <span
- v-if="
- advice.parent_id == 0 && advice.remark.length > 0
- "
- >({{ advice.remark }})</span
- >
- </td>
- <!-- <td colspan="2" height="60px" style="text-align: center" v-else >
- <span>{{advice.delivery_way}}</span>
- <span>{{advice.execution_frequency}}</span>
- <span v-if="advice.remark.length > 0">({{advice.remark}})</span>
- </td> -->
- <!-- <td width="10%" v-if="(advice.children && advice.children.length > 0 || advice.parent_id > 0) && advice.isShow == 2" ></td> -->
- <td height="32px">
- <span v-if="advice!=null && advice.advice_doctor>0">
- <span
- v-if="setAdminUserES(advice.advice_doctor) == ''"
- >{{ getAdminUser(advice.advice_doctor) }}
- </span>
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.advice_doctor)"
- alt=""
- srcset=""
- v-else
- />
- </span>
-
- </td>
- <!-- <td height="35px">
- <span v-if="setAdminUserES(advice.checker) == ''">{{getAdminUser(advice.checker)}}</span>
- <img style="height:20px;" :src="setAdminUserES(advice.checker)" alt="" srcset="" v-else>
- </td> -->
- <td height="32px">
- <span v-if="advice!=null && advice.execution_staff>0">
- <span
- v-if="setAdminUserES(advice.execution_staff) == ''"
- >{{ getAdminUser(advice.execution_staff) }}</span
- >
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.execution_staff)"
- alt=""
- srcset=""
- v-else
- />
- </span>
- </td>
- <td height="32px">
- <span v-if="advice.execution_time">{{
- getTime(advice.execution_time, "{h}:{i}")
- }}</span>
- </td>
- <td height="32px" v-if="org_id == 10223 || org_id == 9538 || org_id == 0 || org_id ==10375">
- <span v-if="advice!=null && advice.checker>0">
- <span v-if="setAdminUserES(advice.checker) == ''">{{ getAdminUser(advice.checker)}}</span>
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.checker)"
- alt=""
- srcset=""
- v-else
- />
- </span>
- </td>
- </tr>
- <!-- </template> -->
-
-
- <tr
- v-if="org_id == 0 || org_id ==10206"
- v-for="(advice, advice_index) in projectsOne"
- :key="advice_index"
- >
- <td height="32px;padding:1px 1px" width="10%">
- <span v-if="advice.start_time">
- {{ getTime(advice.start_time, "{h}:{i}") }}
- </span>
- </td>
- <td
- colspan="2"
- class="advice-name"
- style="
- letter-spacing: 5px;
- text-align: center;
- font-weight: 520;
- font-size: 14px;
- padding: 0px 8px;
- line-height: 30px;
- width: 200px;
-
- "
- >
- <span v-if="advice.type == 2"> {{advice && advice.project? advice.project.project_name: ""}} {{ advice.count }} {{ advice.unit }}</span>
- <span v-if="advice.type == 3"> {{advice && advice.good_info? advice.good_info.good_name: ""}} {{ advice.count }} {{ advice.unit }}</span>
- </td>
- <td height="32px">
- <span
- v-if="setAdminUserES(advice.doctor) == ''"
- >{{ getAdminUser(advice.doctor) }}</span
- >
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.doctor)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- <td height="32px">
- <span
- v-if="
- setAdminUserES(advice.execution_staff) == ''
- "
- >{{
- getAdminUser(advice.execution_staff)
- }}</span
- >
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.execution_staff)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- <td height="32px">
- <span v-if="advice.execution_time">{{
- getTime(advice.execution_time, "{h}:{i}")
- }}</span>
- </td>
-
- <td height="32px">
- <span v-if="setAdminUserES(advice.checker) == ''">{{
- getAdminUser(advice.checker)
- }}</span>
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.checker)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
-
-
- </tbody>
- </table>
- </div>
-
- <template v-if="this.totollength > 13">
- <div style="display: inline-block; width: 100%; text-align: center">
- <div
- class="order-yy-name"
- style="
- letter-spacing: 0;
- font-weight: 600;
- font-size: 22px;
- display: inline-block;
- "
- >
- {{ orgname }}
- </div>
- <div
- class="order-title"
- style="
- letter-spacing: 0;
- font-weight: 600;
- font-size: 22px;
- display: inline-block;
- "
- >
- <span v-if="org_id!=3877 && org_id!=0 && org_id!=10449">血液净化治疗记录单</span>
- <span v-if="org_id == 3877 || org_id == 0 || org_id == 10449">
- <span v-if="prescription.mode_id!=13">血液净化治疗记录单</span>
- <span v-if="prescription.mode_id==13">连续性肾脏替代治疗(CRRT)记录单</span>
- </span>
-
- </div>
- </div>
- <div class="row">
- <div class="inline_block">
- 姓名:
- <div class="under_line" style="width: 50px; text-align: center">
- {{ patientInfo.name }}
- </div>
- </div>
- <div class="inline_block" style="margin-left: 10px">
- 性别:
- <div class="under_line" style="width: 30px; text-align: center">
- {{ patientInfo_gender_1 ? "男" : "女" }}
- </div>
- </div>
- <div class="inline_block" style="margin-left: 10px">
- 年龄:
- <div class="under_line" style="width: 30px; text-align: center">
- {{ getAge(patientInfo) }}
- </div>
- 岁
- </div>
- <div class="inline_block" v-if="receiverTreatmentAccess.condition!=1">
- 门诊:
- <div class="under_line" style="width: 30px; text-align: center">
- <check-box :checked="patientInfo_source_1"></check-box>
- </div>
- </div>
- <div class="inline_block" v-if="receiverTreatmentAccess.condition==1">
- 住院:
- <div class="under_line" style="width: 30px; text-align: center">
- <check-box :checked="receiverTreatmentAccess.condition == 1"></check-box>
- </div>
- </div>
- <div class="inline_block" v-if="org_id!=10510">
- 病区:
- <div class="under_line" style="width: 50px; text-align: center">
- <span v-if="org_id == 10121||org_id == 10138 || org_id == 9675 || org_id == 10447 || org_id == 0 || org_id ==10460">{{
- patientInfo.DialysisSchedule.device_zone.name
- ? patientInfo.DialysisSchedule.device_zone.name
- : ""
- }}</span>
- <span v-else>{{ "/" }}</span>
- </div>
- </div>
- <div class="inline_block" v-if="org_id!=10510 && org_id!=10460" >
- 床号:
- <div class="under_line" style="width: 50px; text-align: center">
- <span v-if="org_id == 10121 || org_id == 9675 || org_id == 10447 || org_id == 0 ||org_id == 10460">{{
- dialysisOrder &&
- dialysisOrder.DeviceNumber &&
- dialysisOrder.DeviceNumber.number.length > 0
- ? dialysisOrder.DeviceNumber.number
- : patientInfo.DialysisSchedule.device_number.number
- }}</span>
- <span v-else>{{ "/" }}</span>
- </div>
- </div>
- <div class="inline_block">
- 透析号:
- <div class="under_line" style="width: 70px; text-align: center">
- {{ patientInfo.dialysis_no }}
- </div>
- </div>
- <div class="inline_block" style="margin-left: 5px"
- v-if="org_id!=9675 && org_id!=10447 && org_id!=10460">
- 住院号/门诊号:
- <div
- class="under_line"
- style="width: 70px; text-align: left"
- v-if="receiverTreatmentAccess.admission_number"
- >
- {{ receiverTreatmentAccess.admission_number }}
- </div>
- <div
- class="under_line"
- style="width: 70px; text-align: left"
- v-else
- >
- {{ "/" }}
- </div>
- </div>
- </div>
- <div class="row" style="margin-bottom: 10px">
- <div class="inline_block">
- 入科方式:
- <!--<check-box v-for="item, index in nutrition_arr" :key="index" :text="item.name" :checked="receiverTreatmentAccess.nutrition == item.id?true:false"></check-box>-->
- <div
- v-for="(item, index) in way_arr"
- class="under_line"
- v-if="receiverTreatmentAccess.way == item.id"
- style="width: 180px; text-align: left"
- >
- {{ item.name }}
- </div>
- <!--<div-->
- <!--class="under_line"-->
- <!--v-if="receiverTreatmentAccess.way == 0"-->
- <!--style="width: 180px;text-align: left"-->
- <!--></div>-->
- <!--<div-->
- <!--class="under_line"-->
- <!--v-if="receiverTreatmentAccess.way == 1"-->
- <!--style="width: 180px;text-align: left"-->
- <!-->-->
- <!--步行-->
- <!--</div>-->
- <!--<div-->
- <!--class="under_line"-->
- <!--v-if="receiverTreatmentAccess.way == 2"-->
- <!--style="width: 180px;text-align: left"-->
- <!-->-->
- <!--扶行-->
- <!--</div>-->
- <!--<div-->
- <!--class="under_line"-->
- <!--v-if="receiverTreatmentAccess.way == 3"-->
- <!--style="width: 180px;text-align: left"-->
- <!-->-->
- <!--轮椅-->
- <!--</div>-->
- <!--<div-->
- <!--class="under_line"-->
- <!--v-if="receiverTreatmentAccess.way == 4"-->
- <!--style="width: 180px;text-align: left"-->
- <!-->-->
- <!--平车-->
- <!--</div>-->
- </div>
- <div class="inline_block" style="margin-left: 10px" v-if="org_id!=10460">
- 诊断:
- <div
- class="under_line"
- style="
- width: 640px;
- text-align: left;
- word-break: break-all;
- word-wrap: break-word;
- display: inline-block;
- "
- >
- {{ patientInfo.diagnose }}
- </div>
- </div>
- </div>
- </template>
- <div class="row" style="margin-top: -11px; position: relative">
- <table class="proj_table">
- <tbody>
- <template v-if="doctor_advices_2.length > 0">
- <tr style="line-height: 35px; padding: 8px 5px">
- <td
- colspan="7"
- style="
- letter-spacing: 5px;
- text-align: center;
- font-weight: 520;
- font-size: 16px;
- padding: 6px 8px;
- line-height: 30px;
- "
- >
- 医嘱内容
- </td>
- </tr>
- <!-- <tr style="line-height:35px;padding:8px 5px;">
- <td colspan="4" style="font-size: 16px">开医嘱</td>
- <td colspan="3" style="font-size: 16px">执行核对医嘱</td>
- </tr> -->
- <tr style="line-height: 35px; padding: 8px 5px">
- <td style="font-size: 16px" width="10%">时间</td>
- <td style="font-size: 16px" colspan="2" width="45%">
- 医嘱内容
- </td>
- <td style="font-size: 16px" width="10%">医生签名</td>
- <!-- <td style="font-size: 16px" width="10%">核对人签名</td> -->
- <td style="font-size: 16px" width="10%">执行人签名</td>
- <td style="font-size: 16px" width="10%">时间</td>
- <td
- style="font-size: 16px"
- width="10%"
- v-if="org_id == 10223 || org_id == 9538"
- >
- 核对护士
- </td>
- </tr>
- <!-- <template v-for="group in doctor_advices" > -->
- <tr
- v-for="(advice, advice_index) in doctor_advices_2"
- :key="advice_index"
- >
- <td height="32px">
- <span v-if="advice.start_time">
- {{ getTime(advice.start_time, "{h}:{i}") }}
- </span>
- <!-- <span v-else> <br/> </span> -->
- </td>
- <td
- height="32px"
- colspan="2"
- class="advice-name"
- style="padding-left: 7px"
- >
- <span v-if="advice.parent_id > 0">---></span>
- <span>{{ advice.advice_name }}</span>
-
- <span v-if="advice && advice.advice_desc"
- >({{ advice.advice_desc
- }}{{ advice.drug_spec_unit }})</span
- >
-
- <span v-if="advice.prescribing_number"
- > {{ advice.prescribing_number
- }}{{ advice.prescribing_number_unit }}</span
- >
-
- <span v-if="advice.single_dose != 0"
- >{{ advice.single_dose
- }}{{ advice.single_dose_unit }}</span
- >
- <span v-if="advice.parent_id == 0">{{
- advice.delivery_way
- }}</span>
-
- <span v-if="advice.parent_id == 0">{{
- advice.execution_frequency
- }}</span>
-
- <span
- v-if="advice.parent_id == 0 && advice.remark.length > 0"
- >({{ advice.remark }})</span
- >
- </td>
- <!-- <td colspan="2" height="60px" style="text-align: center" v-else >
- <span>{{advice.delivery_way}}</span>
- <span>{{advice.execution_frequency}}</span>
- <span v-if="advice.remark.length > 0">({{advice.remark}})</span>
- </td> -->
- <!-- <td width="10%" v-if="(advice.children && advice.children.length > 0 || advice.parent_id > 0) && advice.isShow == 2" ></td> -->
- <td height="32px">
- <span v-if="advice!=null && advice.advice_doctor>0">
- <span v-if="setAdminUserES(advice.advice_doctor) == ''">{{
- getAdminUser(advice.advice_doctor)
- }}</span>
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.advice_doctor)"
- alt=""
- srcset=""
- v-else
- />
- </span>
- </td>
- <!-- <td height="35px">
- <span v-if="setAdminUserES(advice.checker) == ''">{{getAdminUser(advice.checker)}}</span>
- <img style="height:20px;" :src="setAdminUserES(advice.checker)" alt="" srcset="" v-else>
- </td> -->
- <td height="32px">
- <span v-if="setAdminUserES(advice.execution_staff) == ''">{{
- getAdminUser(advice.execution_staff)
- }}</span>
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.execution_staff)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- <td height="32px">
- <span v-if="advice.execution_time">{{
- getTime(advice.execution_time, "{h}:{i}")
- }}</span>
- </td>
- <td height="32px" v-if="org_id == 10223 || org_id ==9538">
- <span v-if="setAdminUserES(advice.checker) == ''">{{
- getAdminUser(advice.checker)
- }}</span>
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.checker)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- </tr>
- </template>
-
- <tr>
- <td
- colspan="7"
- style="
- letter-spacing: 5px;
- text-align: center;
- font-weight: 520;
- font-size: 16px;
- padding: 6px 8px;
- line-height: 30px;
- "
- >
- 透析后情况
- </td>
- </tr>
- <tr>
- <td colspan="7">
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div class="inline_block" style="flex: 1">
- T:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- afterdialysis.temperature
- ? afterdialysis.temperature
- : "/"
- }}
- </div>
- °C
- </div>
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1"
- >
- P:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- afterdialysis.pulse_frequency
- ? afterdialysis.pulse_frequency
- : "/"
- }}
- </div>
- 次/分
- </div>
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1"
- >
- R:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- afterdialysis.breathing_rate
- ? afterdialysis.breathing_rate
- : "/"
- }}
- </div>
- 次/分
- </div>
- <div
- class="inline_block"
- style="margin-left: 10px; flex: 1.5"
- >
- BP:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- afterdialysis.systolic_blood_pressure
- ? afterdialysis.systolic_blood_pressure
- : "/"
- }}
- </div>
- /
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- {{
- afterdialysis.diastolic_blood_pressure
- ? afterdialysis.diastolic_blood_pressure
- : "/"
- }}
- </div>
- mmHg
- </div>
- <div class="inline_block" style="flex: 1.5">
- 实际治疗时间:
- <div
- class="under_line"
- style="width: 30px; text-align: center"
- >
- {{
- afterdialysis.actual_treatment_hour
- ? afterdialysis.actual_treatment_hour
- : "/"
- }}
- </div>
- h
- <div
- class="under_line"
- style="width: 30px; text-align: center"
- >
- {{
- afterdialysis.actual_treatment_minute
- ? afterdialysis.actual_treatment_minute
- : 0
- }}
- </div>
- min
- </div>
- </div>
- <!-- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- v-if="org_id==9538 || org_id==9675"
- >
- <div class="inline_block" style="flex: 2.5">
- KT/V:
- <div
- class="under_line"
- style="
- width: 170px;
- text-align: center;
- white-space: normal;
- "
- >
- {{ afterdialysis.ktv ? afterdialysis.ktv : "/" }}
- </div>
- </div>
- <div class="inline_block" style="flex: 2.5">
- 累积血容量:
- <div
- class="under_line"
- style="
- width: 170px;
- text-align: center;
- white-space: normal;
- "
- >
- {{ afterdialysis.accumulated_blood_volume ? afterdialysis.accumulated_blood_volume : "/" }}
- </div>
- </div>
- </div> -->
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div class="inline_block" style="flex: 2.5">
- 透析器凝血:
- <div
- class="under_line"
- style="
- width: 170px;
- text-align: center;
- white-space: normal;
- "
- >
- {{ afterdialysis.cruor ? afterdialysis.cruor : "/" }}
- </div>
- </div>
- <div class="inline_block" style="flex: 2"
- v-if="org_id!=9675 && org_id!=10447 && org_id!=10598">
- 内瘘:
- <div
- class="under_line"
- style="
- width: 170px;
- text-align: center;
- white-space: normal;
- "
- >
- {{
- afterdialysis.internal_fistula
- ? afterdialysis.internal_fistula
- : "/"
- }}
- </div>
- </div>
- <div class="inline_block" style="flex: 4"
- v-if="org_id!=9675 && org_id!=10447&& org_id!=10598">
- 导管:
- <div
- class="under_line"
- style="min-width: 120px; text-align: center"
- >
- {{
- afterdialysis.catheter ? afterdialysis.catheter : "/"
- }}
- </div>
- </div>
- </div>
-
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div class="inline_block" style="flex: 1">
- 透后体重:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- <span v-if="org_id!=9675&&org_id!=10447">
- {{
- afterdialysis.weight_after
- ? parseFloat(
- afterdialysis.weight_after -
- afterdialysis.additional_weight
- ).toFixed(1)
- : "/"
- }}
- </span>
- <span v-if="org_id ==9675 || org_id==10447">
- {{
- afterdialysis.weight_after
- ? parseFloat(
- afterdialysis.weight_after -
- afterdialysis.additional_weight
- ).toFixed(1)
- : "未称重"
- }}
- </span>
-
- </div>
- kg
- </div>
-
- <div class="inline_block" style="flex: 1">
- 体重减少:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- {{
- afterdialysis.weight_loss
- ? afterdialysis.weight_loss
- : "/"
- }}
- </div>
- kg
- </div>
-
- <div
- class="inline_block"
- style="flex: 1"
- v-if="org_id != 10223 && org_id!=10375 && org_id!=10598"
- >
- <span v-if="org_id!=10460 ">
- 透析中入量(L):
- </span>
- <span v-if="org_id==10460">
- 透析中入量(ml):
- </span>
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- {{
- afterdialysis.dialysis_intakes
- ? afterdialysis.dialysis_intakes
- : "/"
- }}
- </div>
- {{ getUnit(afterdialysis.dialysis_intakes_unit) }}
- </div>
-
- <div class="inline_block" style="flex: 1">
- 实际超滤量:
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- {{
- afterdialysis.actual_ultrafiltration
- ? afterdialysis.actual_ultrafiltration
- : "/"
- }}
- </div>
- <span v-if="org_id!=9675&&org_id!=10447"> ml</span>
- <span v-if="org_id ==9675||org_id==10447">L</span>
- </div>
- </div>
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- v-if="org_id == 10223"
- >
- <div class="inline_block" style="flex: 1">
- 动脉管道:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- <span v-if="afterdialysis.arterial_tube == 0">/</span>
- <span v-if="afterdialysis.arterial_tube == 1"
- >动脉管道0</span
- >
- <span v-if="afterdialysis.arterial_tube == 2"
- >动脉管道+</span
- >
- <span v-if="afterdialysis.arterial_tube == 3"
- >动脉管道++</span
- >
- <span v-if="afterdialysis.arterial_tube == 4"
- >动脉管道+++</span
- >
- </div>
- </div>
- <div class="inline_block" style="flex: 1">
- 静脉管道:
- <div
- class="under_line"
- style="width: 100px; text-align: center"
- >
- <span v-if="afterdialysis.intravenous_tube == 0"
- >/</span
- >
- <span v-if="afterdialysis.intravenous_tube == 1"
- >静脉管道0</span
- >
- <span v-if="afterdialysis.intravenous_tube == 2"
- >静脉管道+</span
- >
- <span v-if="afterdialysis.intravenous_tube == 3"
- >静脉管道++</span
- >
- <span v-if="afterdialysis.intravenous_tube == 4"
- >静脉管道+++</span
- >
- </div>
- </div>
- <div class="inline_block" style="flex: 1">
- 并发症:
- <div
- class="under_line"
- style="width: 170px; text-align: center"
- >
- {{
- afterdialysis.complication
- ? afterdialysis.complication
- : "/"
- }}
- </div>
- </div>
- </div>
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- v-if="org_id == 10223"
- >
- <div class="inline_block" style="flex: 1">
- 穿刺处血肿:
- <div
- class="under_line"
- style="width: 50px; text-align: center"
- >
- <span v-if="afterdialysis.puncture_point_haematoma == 0"
- >/</span
- >
- <span v-if="afterdialysis.puncture_point_haematoma == 1"
- >有</span
- >
- <span v-if="afterdialysis.puncture_point_haematoma == 2"
- >无</span
- >
- </div>
- </div>
- <div class="inline_block" style="flex: 1">
- 中心静脉封管(肝素-A端):
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- {{ afterdialysis.cvc_a ? afterdialysis.cvc_a : "/" }}
- </div>
- </div>
- <div class="inline_block" style="flex: 1">
- 中心静脉封管(肝素-V端):
- <div
- class="under_line"
- style="width: 70px; text-align: center"
- >
- {{ afterdialysis.cvc_v ? afterdialysis.cvc_v : "/" }}
- </div>
- </div>
- </div>
-
-
- <div
- v-if="org_id == 10440 || org_id == 0"
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div
- class="inline_block"
- style="flex: 1; display: inline-block"
- >
- 衣物重:
- <div
- class="under_line"
- style="
- width: 100px;
- line-height: 25px;
- text-align: left;
- margin-left: 2px;
- display: inline-block;
- white-space: normal;
- "
- >
- {{
- afterdialysis.additional_weight
- ? afterdialysis.additional_weight
- : "/"
- }}
- </div>
- </div>
- </div>
-
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div
- class="inline_block"
- style="flex: 1; display: inline-block"
- >
- 治疗小结:
- <div
- class="under_line"
- style="
- width: 860px;
- line-height: 25px;
- text-align: left;
- margin-left: 2px;
- display: inline-block;
- white-space: normal;
- "
- >
- {{
- summary.dialysis_summary
- ? summary.dialysis_summary
- : "/"
- }}
- </div>
- </div>
- </div>
- <div
- v-if="org_id!=10460"
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div
- class="inline_block"
- style="flex: 1; display: inline-block"
- >
- 宣教知识:
- <div
- class="under_line"
- style="
- width: 860px;
- line-height: 25px;
- text-align: left;
- margin-left: 2px;
- display: inline-block;
- white-space: normal;
- "
- >
- {{
- summary.mission
- ? summary.mission
- : "/"
- }}
- </div>
- </div>
- </div>
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- v-if="org_id != 10223&&org_id!=9538&&org_id!=9675"
- >
- <div
- class="inline_block"
- style="flex: 1; display: inline-block"
- v-if="org_id!=9675 && org_id!=10447"
- >
- 备注:
- <div
- class="under_line"
- style="
- width: 860px;
- line-height: 25px;
- text-align: left;
- margin-left: 2px;
- display: inline-block;
- white-space: normal;
- "
- >
- {{ afterdialysis.remark ? afterdialysis.remark : "/" }}
- </div>
- </div>
- </div>
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- v-if="org_id == 9538||org_id == 9675 || org_id == 0"
- >
- <div
- class="inline_block"
- style="flex: 1; display: inline-block"
- >
- 中心静脉导管封管:A端<div
- class="under_line"
- style="
- width: 60px;
- line-height: 25px;
- text-align: center;
- margin-left: 2px;
- display: inline-block;
- white-space: normal;
- "
- >
- {{ afterdialysis.cvc_a ? afterdialysis.cvc_a : "/" }}
- </div>ml,V端<div
- class="under_line"
- style="
- width: 60px;
- line-height: 25px;
- text-align: center;
- margin-left: 2px;
- display: inline-block;
- white-space: normal;
- "
- >
- {{ afterdialysis.cvc_v ? afterdialysis.cvc_v : "/" }}
- </div>ml
-
- </div>
- </div>
- </td>
- </tr>
- <tr>
- <td colspan="7">
- <div
- class="row"
- style="padding: 2px 0; line-height: 23px; display: flex"
- >
- <div v-if="org_id == 0 || org_id == 10440">
-
-
-
- <div class="inline_block" style="flex: 1">
- 上机护士:
- <div
- class="under_line"
- style="width: 90px; text-align: center"
- >
- <span
- style="height: 30px; display: inline-block"
- v-if="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- ) == ''
- "
- >
- {{
- getAdminUser(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- )
- }}</span
- >
- <img
- style="height: 35px"
- :src="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- )
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- </div>
-
-
- </div>
- <div v-if="org_id!=0 && org_id!=10440">
- <div class="inline_block" style="flex: 1">
- 穿刺护士:
- <div
- class="under_line"
- style="width: 90px; text-align: center"
- >
- <span
- style="height: 30px; display: inline-block"
- v-if="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.puncture_nurse
- ) == ''
- "
- >
- {{
- getAdminUser(
- dialysisOrder == null
- ? 0
- : dialysisOrder.puncture_nurse
- )
- }}</span
- >
- <img
- style="height: 35px"
- :src="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.puncture_nurse
- )
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- </div>
- </div>
-
- <div v-if="org_id==0||org_id==10440">
-
- <div class="inline_block" style="flex: 1">
- <div>
- <span>责任护士:</span>
- <div
- class="under_line"
- style="width: 80px; text-align: center"
-
- >
-
- <span
- style="height: 35px; display: inline-block"
- v-if="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- ) == ''
- "
- >
- {{
- getAdminUser(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- )
- }}</span
- >
- <img
- style="height: 30px"
- :src="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- )
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- </div>
-
- </div>
-
- </div>
-
- <div v-if="org_id!=0&&org_id!=10440&&org_id!= 10206">
- <div class="inline_block" style="flex: 1">
- <span v-if="org_id==10414">责任护士:</span>
- <span v-else>治疗护士:</span>
-
- <div
- class="under_line"
- style="width: 80px; text-align: center"
- >
- <span
- style="height: 30px; display: inline-block"
- v-if="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- ) == ''
- "
- >
- {{
- getAdminUser(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- )
- }}</span
- >
- <img
- style="height: 30px"
- :src="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- )
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- </div>
- </div>
-
-
-
- <div class="inline_block" style="flex: 1">
- <span v-if="org_id==10387 || org_id ==10206 || org_id == 0" >核对护士:</span>
- <span v-else >核对人员:</span>
- <div
- class="under_line"
- style="width: 80px; text-align: center"
- v-if="dialysisOrder == null"
- >
- <span
- style="height: 30px; display: inline-block"
- v-if="
- setAdminUserES(check == null ? 0 : check.creater) ==
- ''
- "
- >
- {{ getAdminUser(check == null ? 0 : check.creater) }}
- </span>
- <img
- style="height: 30px"
- :src="
- setAdminUserES(check == null ? 0 : check.creater)
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- <div
- class="under_line"
- style="width: 80px; text-align: center"
- v-if="
- dialysisOrder != null &&
- dialysisOrder.start_nurse == check.modifier
- "
- >
- <span
- style="height: 30px; display: inline-block"
- v-if="
- setAdminUserES(check == null ? 0 : check.creater) ==
- ''
- "
- >
- {{ getAdminUser(check == null ? 0 : check.creater) }}
- </span>
- <img
- style="height: 30px"
- :src="
- setAdminUserES(check == null ? 0 : check.creater)
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- <div
- class="under_line"
- style="width: 80px; text-align: center"
- v-if="
- dialysisOrder != null &&
- dialysisOrder.start_nurse == check.creater
- "
- >
- <span
- style="height: 30px; display: inline-block"
- v-if="
- setAdminUserES(
- check == null ? 0 : check.modifier
- ) == ''
- "
- >
- {{ getAdminUser(check == null ? 0 : check.modifier) }}
- </span>
- <img
- style="height: 30px"
- :src="
- setAdminUserES(check == null ? 0 : check.modifier)
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- <div
- class="under_line"
- style="width: 80px; text-align: center"
- v-if="
- dialysisOrder != null &&
- dialysisOrder.start_nurse != check.creater &&
- dialysisOrder.start_nurse != check.modifier
- "
- >
- <span
- style="height: 30px; display: inline-block"
- v-if="
- setAdminUserES(check == null ? 0 : check.creater) ==
- ''
- "
- >
- {{ getAdminUser(check == null ? 0 : check.creater) }}
- </span>
- <img
- style="height: 30px"
- :src="
- setAdminUserES(check == null ? 0 : check.creater)
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- </div>
- <div class="inline_block" style="flex: 1">
- 下机护士:
- <div
- class="under_line"
- style="width: 80px; text-align: center"
- >
- <span
- style="height: 30px; display: inline-block"
- v-if="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.finish_nurse
- ) == ''
- "
- >
- {{
- getAdminUser(
- dialysisOrder == null
- ? 0
- : dialysisOrder.finish_nurse
- )
- }}
- </span>
- <img
- style="height: 30px"
- :src="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.finish_nurse
- )
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- </div>
- <div class="inline_block" style="flex: 1">
- 治疗医生:
- <div
- v-if="org_id ==10191"
- class="under_line"
- style="width: 80px; text-align: center"
- >
- <span
- style="height: 30px; display: inline-block"
- v-if="setAdminUserES(prescription.creater) == ''"
- >
- {{ getAdminUser(prescription.creater) }}
- </span>
- <img
- style="height: 40px"
- :src="setAdminUserES(prescription.creater)"
- alt=""
- srcset=""
- v-else
- />
- </div>
- <div
- v-if="org_id!=10191"
- class="under_line"
- style="width: 80px; text-align: center"
- >
- <span v-if="doctor_advices[0]!=null && doctor_advices[0].advice_doctor>0">
- <span
- style="height: 30px; display: inline-block"
- v-if="setAdminUserES(doctor_advices[0].advice_doctor) == ''"
- >
- {{ getAdminUser(doctor_advices[0].advice_doctor) }}
- </span>
- <img
- style="height: 40px"
- :src="setAdminUserES(doctor_advices[0].advice_doctor)"
- alt=""
- srcset=""
- v-else
- />
- </span>
-
- </div>
- </div>
- </div>
- </td>
- </tr>
-
-
- </tbody>
- </table>
- <!-- <div class="print-yema">1</div> -->
- </div>
- </div>
- </div>
-
- <div id="dialysis-print-box-1-2" class="dialysis-print-order print-template-two print_page_main_content" style="position: relative;">
- <div class="order-yy-name">{{ orgname }}</div>
- <div class="order_title">血液净化科医嘱及执行单</div>
- <div class="row" style="margin-top: 15px">
- <div class="inline_block">
- 科室:
- <check-box text="门诊透析" :checked="patientInfo_source_1"></check-box>
-
- <check-box text="住院" :checked="patientInfo_source_2"></check-box>
- </div>
- <div class="inline_block" style="margin-left: 5px;">
- 住院号:
- <div class="under_line" style="width: 70px;text-align: left" v-if="patientInfo.admission_number">
- {{ patientInfo.admission_number }}
- </div>
- <div class="under_line" style="width: 70px;text-align: left" v-else>
- {{ "/" }}
- </div>
- </div>
- <div class="inline_block" style="margin-left:10px;">
- 姓名:
- <div class="under_line" style="width: 50px;text-align: left">
- {{ patientInfo.name }}
- </div>
- </div>
- <div class="inline_block" style="margin-left: 10px;">
- 性别:
- <check-box text="男" :checked="patientInfo_gender_1"></check-box>
-
- <check-box text="女" :checked="patientInfo_gender_2"></check-box>
- </div>
- <div class="inline_block" style="margin-left: 10px;">
- 年龄:
- <div class="under_line" style="width: 30px;text-align: left">
- {{ getAge(patientInfo) }}
- </div>
- 岁
- </div>
- <div class="inline_block" style="margin-left: 10px;">
- 诊断:
- <div class="under_line" style="width:180px;text-align: left">
- {{ patientInfo.diagnose }}
- </div>
- </div>
- </div>
-
- <table class="print-table-no">
- <tbody>
- <tr style="line-height: 35px; padding: 8px 5px">
- <td
- colspan="7"
- style="
- letter-spacing: 5px;
- text-align: center;
- font-weight: 520;
- font-size: 16px;
- padding: 6px 8px;
- line-height: 30px;
- "
- >
- 医嘱内容
- </td>
- </tr>
- <tr style="line-height: 35px; padding: 8px 5px">
- <td style="font-size: 16px" width="10%">时间</td>
- <td style="font-size: 16px" colspan="2" width="45%">
- 医嘱内容
- </td>
- <td style="font-size: 16px" width="10%">医生签名</td>
- <!-- <td style="font-size: 16px" width="10%">核对人签名</td> -->
- <td style="font-size: 16px" width="10%">执行人签名</td>
- <td style="font-size: 16px" width="10%">时间</td>
- <td
- style="font-size: 16px"
- width="10%"
- v-if="org_id == 10223 || org_id == 9538 || org_id == 0 || org_id ==10375"
- >
- 核对护士
- </td>
- </tr>
-
-
- <tr
- v-for="(advice, advice_index) in doctor_advices"
- :key="advice_index"
- >
- <td height="32px">
- <span v-if="advice.start_time">
- {{ getTime(advice.start_time, "{h}:{i}") }}
- </span>
-
- </td>
- <td
- height="32px"
- colspan="2"
- class="advice-name"
- style="padding-left: 7px"
- >
- <span v-if="advice.parent_id > 0">---></span>
- <span>{{ advice.advice_name }}</span>
- <span v-if="advice && advice.advice_desc"
- >({{ advice.advice_desc
- }}{{ advice.drug_spec_unit }})</span
- >
- <span v-if="advice.prescribing_number"
- > {{ advice.prescribing_number
- }}{{ advice.prescribing_number_unit }}</span
- >
- <span v-if="advice.single_dose != 0"
- >{{ advice.single_dose
- }}{{ advice.single_dose_unit }}</span
- >
- <span v-if="advice.parent_id == 0">{{
- advice.delivery_way
- }}</span>
- <span v-if="advice.parent_id == 0">{{
- advice.execution_frequency
- }}</span>
- <span
- v-if="
- advice.parent_id == 0 && advice.remark.length > 0
- "
- >({{ advice.remark }})</span
- >
- </td>
-
- <td height="32px">
- <span
- v-if="setAdminUserES(advice.advice_doctor) == ''"
- >{{ getAdminUser(advice.advice_doctor) }}</span
- >
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.advice_doctor)"
- alt=""
- srcset=""
- v-else
- />
- </td>
-
- <td height="32px">
- <span
- v-if="setAdminUserES(advice.execution_staff) == ''"
- >{{ getAdminUser(advice.execution_staff) }}</span
- >
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.execution_staff)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- <td height="32px">
- <span v-if="advice.execution_time">{{
- getTime(advice.execution_time, "{h}:{i}")
- }}</span>
- </td>
- <td height="32px" v-if="org_id == 10223 || org_id == 9538 || org_id == 0 || org_id ==10375">
- <span v-if="setAdminUserES(advice.checker) == ''">{{
- getAdminUser(advice.checker)
- }}</span>
- <img
- style="height: 30px"
- :src="setAdminUserES(advice.checker)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- </tr>
-
-
-
- </tbody>
- </table>
-
-
-
-
-
-
- </div>
- </div>
- </template>
-
- <script>
- import CheckBox from "../batch_print/option_check_box";
- import { getDialysisRecord } from "@/api/dialysis";
- import { getDataConfig } from "@/utils/data";
- import { jsGetAge, uParseTime } from "@/utils/tools";
-
- import LabelBox from "../printItem/LabelBox";
- import BreadCrumb from "@/xt_pages/components/bread-crumb";
- // import DialysisPrintOrderOne from './template/dialysisPrintOrderOne'
- // import DialysisPrintOrderTwo from './template/dialysisPrintOrderTwo'
- import print from "print-js";
- import html2pdf from 'html2pdf.js'
- import { UploadPrintOrder } from "@/api/role/admin"
- import { HTML5_FMT } from "moment";
- import html2canvas from 'html2canvas'
- import { jsPDF } from 'jspdf';
- export default {
- name: "dialysisPrintOrderSix",
- props: ["childResponse"],
- components: {
- // DialysisPrintOrderOne,
- // DialysisPrintOrderTwo,
- CheckBox,
- LabelBox,
- BreadCrumb,
- },
- data() {
- return {
- way_arr: [],
- consciousness_arr: [],
- appetite_arr: [],
- posture_arr: [],
- sick_condition_arr: [],
- precaution_arr: [],
- intake_arr: [],
- nutrition_arr: [],
-
- crumbs: [
- { path: false, name: "透析管理" },
- { path: false, name: "打印单" },
- ],
- operators: [],
- adminUser: [],
- check: {},
- xtdate: "",
- dialysisOrder: {
- DeviceNumber: [],
- },
- displaceLiquiPartOptions: [],
- operatorMaps: {},
- complications: [
- "低血压",
- "高血压",
- "心律失常",
- "头晕",
- "头痛",
- "呕吐",
- "抽搐",
- "出血",
- "心衰",
- "腹痛",
- ],
- jilurow: 0,
- advice_jilurow: 0,
- loading: false,
- orgname: "",
- patientInfo_gender_1: false,
- patientInfo_gender_2: false,
- patientInfo_source_2: false,
- patientInfo_source_1: false,
- modeOptions: {},
- replacementWays: [],
- perfusionApparatus: [],
- anticoagulantsConfit: {},
- bloodAccessParOpera: {},
- dialysateFormulationOptions: {},
- totollength: 0,
- queryParams: {
- xtdate: "",
- xtno: "",
- patient_id:0,
- },
- patientInfo: {
- birth: "",
- age: "",
- DialysisSchedule: {
- device_number: { number: "" },
- device_zone: { name: "" },
- },
- gender: 0,
- },
- predialysis: {
- score: "",
- internal_fistula: "",
- internal_fistula_skin: "",
- catheter: "",
- blood_access_part_opera_name: "",
- },
- afterdialysis: {
- complications_index: "",
- },
- lastafterdialysis: {},
- prescription: {
- dialysate_formulation_name: "",
- device: {},
- },
- advices: [],
- users: [],
- monitors: [],
- monitors2: [],
- summary: {},
- receiverTreatmentAccess: {},
- org_template_info: {},
-
- doctor_advices: [],
- doctor_advices_2: [],
- advice_groups: [],
- advice_groups_2: [],
- print_length: 0,
- blood_access_part: [],
- blood_access_part_opera: [],
-
- AlPanel: {
- id: 0,
- name: "",
- type: 1,
- shouji: 2,
- weichi: 2,
- zongliang: 2,
- gaimingcheng: -1,
- gaijiliang: -1,
- shouji_unit: "mg",
- weichi_unit: "mg/h",
- zongliang_unit: "mg",
- gaimingcheng_unit: "",
- gaijiliang_unit: "",
- },
- org_id: 0,
- projectsOne: [],
- };
- },
- methods: {
- toUpload() {
-
- let dom = document.getElementById("dialysis-print-box-1")
- //调用方法下载
- html2canvas(dom, {
- useCORS: true, //允许跨域
- allowTaint: false,
- logging: false,
- letterRendering: true,
- ddpi: window.devicePixelRatio * 4, //将分辨率提高到特定的DPI 提高四倍
- scale: 4, //按比例增加分辨率
- background: '#fff',//pdf背景色为白色,默认是黑色的
- }).then((canvas) => {
- //返回图片dataURL,参数:图片格式和清晰度(0-1)
- var pageData = canvas.toDataURL('image/jpeg', 1.0);
-
- //方向默认竖直,尺寸ponits,格式a4[595.28,841.89]
- var pdf = new jsPDF('', 'pt', 'a4');
-
- //addImage后两个参数控制添加图片的尺寸,此处将页面高度按照a4纸宽高比列进行压缩
- // pdf.addImage(pageData, 'JPEG', 0, 0, 595.28, 592.28 / canvas.width * canvas.height);
- pdf.addImage(pageData, 'JPEG', 0, 0, 555.28, 592.28 / canvas.width * canvas.height);
-
- console.log("pdf222222222222222222",pdf)
-
- var newBase64Data = pdf.output("dataurlstring").split("base64,")[1]
- // console.log("base63",newBase64Data)
- const blob = this.base64ToBlob(newBase64Data, 'application/pdf');
- console.log("blobwoowowowwo",blob)
- this.openPdf(blob);
-
- // var data = {
- // name:newBase64Data,
- // }
- // UploadPrintOrder(data).then(response=>{
- // if(response.data.state == 1){
- // var sign = response.data.data.sign
- // console.log("SIGNWWOOWWO")
- // var pdfBase64 = response.data.data.pdfBase64
- // console.log("pdfBase64",pdfBase64)
- // this.$message.success("保存成功!")
- // const blob = this.base64ToBlob(pdfBase64, 'application/pdf');
- // this.openPdf(blob);
- // }
- // })
-
- // this.viewPdf(newBase64Data)
- //保存到pdf,名字是stone
- // pdf.save('stone.pdf');
-
- });
- },
-
- viewPdf(content) {
- console.log("content",content);
- const blob = this.base64ToBlob(content);
- if (window.navigator && window.navigator.msSaveOrOpenBlob) {
- window.navigator.msSaveOrOpenBlob(blob);
- } else {
- const fileURL = URL.createObjectURL(blob);
- console.log("fileUlrwowowoow",fileURL)
- window.open(fileURL);//打开ppf文件
- }
- },
- compare (property) {
- return function (a, b) {
- var value1 = a[property]
- var value2 = b[property]
- return value1 - value2
- }
- },
-
- openPdf(blob) {
- const objectUrl = URL.createObjectURL(blob);
- const a = document.createElement('a');
- a.href = objectUrl;
- a.target = '_blank';
- a.click();
- URL.revokeObjectURL(objectUrl);
- },
- base64ToBlob(base64Data, contentType) {
- contentType = contentType || '';
- const sliceSize = 1024;
- const byteCharacters = window.atob(base64Data);
- const bytesLength = byteCharacters.length;
- const slicesCount = Math.ceil(bytesLength / sliceSize);
- const byteArrays = new Array(slicesCount);
-
- for (let sliceIndex = 0; sliceIndex < slicesCount; ++sliceIndex) {
- const begin = sliceIndex * sliceSize;
- const end = Math.min(begin + sliceSize, bytesLength);
-
- const bytes = new Array(end - begin);
- for (let offset = begin, i = 0; offset < end; ++i, ++offset) {
- bytes[i] = byteCharacters[offset].charCodeAt(0);
- }
- byteArrays[sliceIndex] = new Uint8Array(bytes);
- }
-
- return new Blob(byteArrays, {
- type: contentType
- });
- },
-
- UploadPdf(res) {
- let pdfBase64Str = res;
- let title = "上传给后端的个人报告";
- var myfile = this.dataURLtoFile(pdfBase64Str, title + ".pdf")
- console.log("myfile",myfile)
- },
- // 获取当前年份,用于年龄计算
- getoldAge() {
- let date = new Date();
- let year = date.getFullYear();
- let year_d =
- this.xtdate.split("-")[0] - this.patientInfo.birth.split("-")[0];
- let year_m = this.xtdate.split("-")[1];
- let birth_m = this.patientInfo.birth.split("-")[1];
- let year_date = this.xtdate.split("-")[2];
- let birth_date = this.patientInfo.birth.split("-")[2];
- // console.log(year,'今年年月')
- // console.log(this.xtdate.split('-'),'病人就诊年月')
- console.log(this.patientInfo.birth, "病人生日");
- // console.log(year_d,'year_d')
- if (year_m < birth_m) {
- return year_d - 1;
- } else if (year_m == birth_m) {
- if (year_date < birth_date) {
- return year_d - 1;
- } else {
- return year_d;
- }
- } else {
- return year_d;
- }
- },
-
- checkData() {
- if (this.receiverTreatmentAccess.way == 0) {
- this.$message.error("入科方式未填");
- } else if (this.predialysis.symptom_before_dialysis == "") {
- this.$message.error("透前症状未填");
- } else if (this.predialysis.temperature == "") {
- this.$message.error("透前体温未填");
- } else if (this.predialysis.pulse_frequency == "") {
- this.$message.error("透前脉搏未填");
- } else if (this.predialysis.breathing_rate == "") {
- this.$message.error("透前呼吸频率未填");
- } else if (
- this.predialysis.systolic_blood_pressure == 0 ||
- this.predialysis.diastolic_blood_pressure == 0
- ) {
- this.$message.error("透前血压未填完整");
- } else if (this.predialysis.puncture_way == "") {
- this.$message.error("穿刺方式未填");
- } else if (this.predialysis.puncture_needle == "") {
- this.$message.error("穿刺针未填");
- } else if (
- this.predialysis.blood_access_part_id == "" &&
- this.predialysis.blood_access_part_opera_name == ""
- ) {
- this.$message.error("血管通路未填");
- } else if (this.predialysis.internal_fistula == "") {
- this.$message.error("透前内瘘未填");
- } else if (this.predialysis.catheter == "") {
- this.$message.error("透前导管未填");
- } else if (this.prescription.mode_id == "") {
- this.$message.error("透析方式未填");
- } else if (
- this.prescription.displace_liqui_part == 0 &&
- this.prescription.mode_id == 2
- ) {
- this.$message.error("置换方式未填");
- } else if (
- this.prescription.displace_liqui_value == 0 &&
- this.prescription.mode_id == 2
- ) {
- this.$message.error("置换量未填");
- } else if (this.prescription.blood_flow_volume == 0) {
- this.$message.error("血流量未填");
- } else if (
- this.prescription.dialysis_duration_hour == 0 &&
- this.prescription.dialysis_duration_minute == 0
- ) {
- this.$message.error("透析时间未填");
- } else if (
- this.prescription.dialyzer_perfusion_apparatus == "" &&
- this.prescription.dialysis_dialyszers == ""
- ) {
- this.$message.error("透析器未填");
- } else if (this.prescription.dialysis_irrigation == "") {
- this.$message.error("灌流器未填");
- } else if (
- this.prescription.plasma_separator == "" &&
- this.org_id == 9538
- ) {
- this.$message.error("血浆分离器未填");
- } else if (
- this.prescription.bilirubin_adsorption_column == "" &&
- this.org_id == 9538
- ) {
- this.$message.error("胆红素吸附柱未填");
- } else if (this.predialysis.weight_before == 0) {
- this.$message.error("透前体重未填");
- } else if (this.predialysis.dry_weight == 0) {
- this.$message.error("干体重未填");
- } else if (this.prescription.target_ultrafiltration == 0) {
- this.$message.error("计划超滤量未填");
- } else if (this.prescription.calcium == 0) {
- this.$message.error("钙未填");
- } else if (this.prescription.sodium == 0) {
- this.$message.error("钠未填");
- } else if (this.prescription.kalium == 0) {
- this.$message.error("钾未填");
- } else if (this.prescription.bicarbonate == 0) {
- this.$message.error("碳酸氢根未填");
- } else if (this.prescription.dialysate_flow == 0) {
- this.$message.error("透析液流量未填");
- } else if (this.prescription.anticoagulant == 0) {
- this.$message.error("抗凝剂未填");
- } else if (
- this.prescription.anticoagulant_gaimingcheng == "" &&
- this.prescription.anticoagulant == 5
- ) {
- this.$message.error("钙名称未填");
- } else if (
- this.prescription.anticoagulant_gaijiliang == "" &&
- this.prescription.anticoagulant == 5
- ) {
- this.$message.error("钙剂量未填");
- } else if (this.afterdialysis.temperature == 0) {
- this.$message.error("透后体温未填");
- } else if (this.afterdialysis.pulse_frequency == 0) {
- this.$message.error("透后脉搏未填");
- } else if (this.afterdialysis.breathing_rate == 0) {
- this.$message.error("透后呼吸频率未填");
- } else if (
- this.afterdialysis.systolic_blood_pressure == 0 ||
- this.afterdialysis.diastolic_blood_pressure == 0
- ) {
- this.$message.error("透后血压未填完整");
- } else if (
- this.afterdialysis.actual_treatment_hour == 0 &&
- this.afterdialysis.actual_treatment_minute == 0
- ) {
- this.$message.error("实际治疗时间未填");
- } else if (this.afterdialysis.cruor == "") {
- this.$message.error("透析器凝血未填");
- } else if (this.afterdialysis.internal_fistula == "") {
- this.$message.error("透后内瘘未填");
- } else if (this.afterdialysis.catheter == "") {
- this.$message.error("透后导管未填");
- } else if (this.afterdialysis.weight_after == 0) {
- this.$message.error("透后体重未填");
- } else if (this.afterdialysis.weight_loss == 0) {
- this.$message.error("透后体重减少未填");
- } else if (this.afterdialysis.dialysis_intakes == 0) {
- this.$message.error("透析中入量未填");
- } else if (this.afterdialysis.actual_ultrafiltration == 0) {
- this.$message.error("实际超滤量未填");
- } else if (this.summary.dialysis_summary == "") {
- this.$message.error("透析小结未填");
- } else if (
- this.dialysisOrder == null ||
- this.dialysisOrder.puncture_nurse == 0
- ) {
- this.$message.error("穿刺护士未填");
- } else if (
- this.dialysisOrder == null ||
- this.dialysisOrder.start_nurse == 0
- ) {
- this.$message.error("治疗护士未填");
- } else if (this.dialysisOrder == null && this.check.creater == 0) {
- this.$message.error("核对人员未填");
- } else if (
- this.dialysisOrder != null &&
- this.dialysisOrder.start_nurse == this.check.modifier &&
- this.check.creater == 0
- ) {
- this.$message.error("核对人员未填");
- } else if (
- this.dialysisOrder != null &&
- this.dialysisOrder.start_nurse == this.check.creater &&
- this.check.modifier == 0
- ) {
- this.$message.error("核对人员未填");
- } else if (
- this.dialysisOrder != null &&
- this.dialysisOrder.start_nurse != this.check.creater &&
- this.dialysisOrder.start_nurse != this.check.modifier &&
- this.check.creater == 0
- ) {
- this.$message.error("核对人员未填");
- } else if (
- this.dialysisOrder == null ||
- this.dialysisOrder.finish_nurse == 0
- ) {
- this.$message.error("下机护士未填");
- } else if (this.prescription.creater == 0) {
- this.$message.error("医生签名未填");
- } else if (this.tableAdvice.length > 0) {
- let num = 0;
- this.tableAdvice.map((item) => {
- if (item.id > 0 && (item.created_time || item.start_time)) {
- this.users.map((it) => {
- if (it.id == item.advice_doctor) {
- if (it.user_type == 3) {
- num++;
- this.$message.closeAll();
- this.$message.error("存在不是医生保存的医嘱");
- } else if (
- it.id == item.execution_staff &&
- item.execution_staff > 0
- ) {
- if (it.user_type == 2) {
- num++;
- this.$message.closeAll();
- this.$message.error("存在不是护士执行的医嘱");
- }
- } else if (it.id == item.checker && item.checker > 0) {
- if (it.user_type == 2) {
- num++;
- this.$message.closeAll();
- this.$message.error("存在不是护士核对的医嘱");
- }
- }
- } else if (
- it.id == item.execution_staff &&
- item.execution_staff > 0
- ) {
- if (it.user_type == 2) {
- num++;
- this.$message.closeAll();
- this.$message.error("存在不是护士执行的医嘱");
- }
- } else if (it.id == item.checker && item.checker > 0) {
- if (it.user_type == 2) {
- num++;
- this.$message.closeAll();
- this.$message.error("存在不是护士核对的医嘱");
- }
- }
- });
- }
- });
- if (num == 0) {
- this.$message.success("核对完成");
- }
- } else {
- this.$message.success("核对完成");
- }
- },
- getDisplaceLiquiPart: function (val) {
- let displace_liqui_part_name = "/";
- const displace_liqui_part = this.displaceLiquiPartOptions;
- for (let i = 0; i < displace_liqui_part.length; i++) {
- if (displace_liqui_part[i].id == val) {
- displace_liqui_part_name = displace_liqui_part[i].name;
- }
- }
- return displace_liqui_part_name;
- },
- replacementWaysById: function (val) {
- let replacementWaysname = "/";
- // let vascular_access = getDataConfig('hemodialysis', 'vascular_access')
-
- for (let i = 0; i < this.replacementWays.length; i++) {
- if (this.replacementWays[i].id == val) {
- replacementWaysname = this.replacementWays[i].name;
- }
- }
- return replacementWaysname;
- },
- QueryPartById: function (val) {
- let vascular_access_part_name = "/";
- const vascular_access = getDataConfig("hemodialysis", "vascular_access");
-
- for (let i = 0; i < vascular_access.length; i++) {
- if (vascular_access[i].id == val) {
- vascular_access_part_name = vascular_access[i].name;
- }
- }
- return vascular_access_part_name;
- },
- getAdminUser(id) {
- if (id == 0) {
- return "";
- }
- if (id == undefined) {
- return "";
- }
- for (let i = 0; i < this.adminUser.length; i++) {
- if (this.adminUser[i].id == id) {
- return this.adminUser[i].name;
- }
- }
- },
- getTime(value, temp) {
- if (value == 0) {
- return "";
- }
- if (value != undefined) {
- return uParseTime(value, temp);
- }
- return "";
- },
- getUnit: function (val) {
- switch (val) {
- case 1:
- return "g";
- break;
- case 2:
- return "ml";
- break;
- }
- },
- printThisPage() {
- var ptime = Math.round(new Date().getTime() / 1000);
- this.print_time = uParseTime(ptime, "{y}-{m}-{d} {h}:{i}");
-
- const style =
- '@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;}';
-
- if (this.org_template_info.template_id == 1) {
- printJS({
- printable: "dialysis-print-box",
- type: "html",
- style: style,
- scanStyles: false,
- });
- } else if (
- this.org_template_info.template_id == 2 ||
- this.org_template_info.template_id == 0
- ) {
- printJS({
- printable: "dialysis-print-box-1",
- type: "html",
- style: style,
- scanStyles: false,
- });
- }
- },
- getNumber() {
- if (this.dialysisOrder != null) {
- return (
- this.patientInfo.DialysisSchedule.device_zone.name +
- this.dialysisOrder.DeviceNumber.number
- );
- } else {
- return (
- this.patientInfo.DialysisSchedule.device_zone.name +
- this.patientInfo.DialysisSchedule.device_number.number
- );
- }
- },
-
- getXuserName(id) {
- if (id <= 0) {
- return "";
- }
- var name = "";
- if (this.users == null || typeof this.users.length === "undefined") {
- return name;
- }
- var leng = this.users.length;
- if (leng == 0) {
- return name;
- }
- for (let index = 0; index < leng; index++) {
- if (this.users[index].id == id) {
- name = this.users[index].name;
- break;
- }
- }
- return name;
- },
- setAdminUserES(id) {
- if (id == 0) {
- return "";
- }
- if (id in this.operatorMaps) {
- return this.operatorMaps[id].url;
- } else {
- return "";
- }
- },
- modeName(mode_id) {
- return typeof this.modeOptions[mode_id] !== "undefined" &&
- typeof this.modeOptions[mode_id].name !== "undefined"
- ? this.modeOptions[mode_id].name
- : "";
- },
- getDialysisRecord() {
- this.loading = true;
-
- // getDialysisRecord(this.queryParams).then(response => {
- var response = this.childResponse;
- if (response.data.state == 1) {
- this.adminUser = response.data.data.users;
- console.log('3333333wwwwww',response.data.data);
- this.users = response.data.data.users;
- this.patientInfo = response.data.data.patientInfo;
-
- this.patientInfo.birth = uParseTime(
- this.patientInfo.birthday,
- "{y}-{m}-{d}"
- );
- // console.log(this.patientInfo.birth,'测试生日')
- // this.patientInfo.age = jsGetAge(this.patientInfo.birth, '-')
- if (response.data.data.patientInfo.first_dialysis_date != 0) {
- this.patientInfo.first_dialysis_date = uParseTime(
- response.data.data.patientInfo.first_dialysis_date,
- "{y}-{m}-{d}"
- );
- } else {
- this.patientInfo.first_dialysis_date = "";
- }
- this.check = response.data.data.check;
- this.xtdate = response.data.data.xtdate;
- this.predialysis = response.data.data.PredialysisEvaluation;
- console.log('透前评估', this.predialysis)
- this.predialysis.blood_access_part_opera_name =
- this.bloodAccessParOperaName(
- this.predialysis.blood_access_part_opera_id
- );
- this.afterdialysis = response.data.data.AssessmentAfterDislysis;
- // console.log('透后体重', this.afterdialysis)
- this.lastafterdialysis = response.data.data.assessmentAfterDislysis;
- // console.log("上次透后体重", this.lastafterdialysis.weight_after);
- this.operators = response.data.data.operators;
- // console.log("operators", this.operators);
- this.dialysisOrder =
- response.data.data.dialysisOrder === null
- ? null
- : response.data.data.dialysisOrder;
- // console.log("上机233232323232", this.dialysisOrder);
- if (this.operators.length > 0) {
- var operatorsLen = this.operators.length;
- for (var index = 0; index < operatorsLen; index++) {
- this.$set(
- this.operatorMaps,
- this.operators[index].creator,
- this.operators[index]
- );
- }
- }
-
- this.afterdialysis.txqnx = -1;
- if (this.afterdialysis.cruor.indexOf("0度") > -1) {
- this.afterdialysis.txqnx = 0;
- }
- if (this.afterdialysis.cruor.indexOf("Ⅰ度") > -1) {
- this.afterdialysis.txqnx = 1;
- }
- if (this.afterdialysis.cruor.indexOf("Ⅱ度") > -1) {
- this.afterdialysis.txqnx = 2;
- }
- if (this.afterdialysis.cruor.indexOf("Ⅲ度") > -1) {
- this.afterdialysis.txqnx = 3;
- }
-
- this.afterdialysis.complications =
- this.afterdialysis.complication.split(",");
- this.afterdialysis.complications_other = [];
- this.afterdialysis.complications_index = [];
- var acllen = this.afterdialysis.complications.length;
- for (let index = 0; index < acllen; index++) {
- if (
- this.complications.indexOf(
- this.afterdialysis.complications[index]
- ) >= 0
- ) {
- this.afterdialysis.complications_index.push(
- this.afterdialysis.complications[index]
- );
- } else if (
- this.complications.indexOf(
- this.afterdialysis.complications[index]
- ) < 0 &&
- this.afterdialysis.complications_other.indexOf(
- this.afterdialysis.complications[index]
- ) < 0
- ) {
- this.afterdialysis.complications_other.push(
- this.afterdialysis.complications[index]
- );
- }
- }
- this.afterdialysis.complications_other =
- this.afterdialysis.complications_other.join(",");
-
- this.prescription = response.data.data.dialysisPrescription;
- // console.log("透析处方", this.prescription);
- this.receiverTreatmentAccess =
- response.data.data.receiverTreatmentAccess;
- this.prescription.mode = this.modeName(this.prescription.mode_id);
- var rwLen = this.replacementWays.length;
- this.prescription.replacement = "";
- for (let index = 0; index < rwLen; index++) {
- if (
- this.replacementWays[index].id == this.prescription.replacement_way
- ) {
- this.prescription.replacement = this.replacementWays[index].name;
- break;
- }
- }
-
- this.prescription.dialysate_formulation_name =
- this.dialysateFormulationName(
- this.prescription.dialysate_formulation
- );
-
- var paLen = this.perfusionApparatus.length;
- this.prescription.perfusion_apparatus_name = "";
- for (let index = 0; index < paLen; index++) {
- if (
- this.perfusionApparatus[index].id ==
- this.prescription.perfusion_apparatus
- ) {
- this.prescription.perfusion_apparatus_name =
- this.perfusionApparatus[index].name;
- break;
- }
- }
-
- var acLen = this.anticoagulantsConfit.length;
- var thisALID = this.prescription.anticoagulant;
- this.prescription.anticoagulant_name = "";
-
- if (
- typeof this.anticoagulantsConfit[thisALID] !== "undefined" &&
- this.anticoagulantsConfit[thisALID] != null
- ) {
- this.prescription.anticoagulant_name =
- this.anticoagulantsConfit[thisALID].name;
- this.AlPanel = this.anticoagulantsConfit[thisALID];
- }
-
- this.advices = response.data.data.advices;
- this.tableAdvice = response.data.data.advices;
- // console.log("医嘱数据2222222222", this.advices);
- this.monitors = response.data.data.monitors;
- this.summary = response.data.data.summary;
- this.org_template_info = response.data.data.org_template_info;
-
- if (this.monitors.length <= 3) {
- var nl = 3;
- this.print_length = 3;
-
- for (let index = 0; index < nl; index++) {
- if (
- this.monitors[index] == undefined ||
- this.monitors[index].length <= 0
- ) {
- this.monitors2.push([]);
- } else {
- continue;
- }
- }
- }
-
- var tempmonitorflag = true;
- for (let index = 0; index < this.monitors.length; index++) {
- const monitor = this.monitors[index];
- this.monitors[index].end = "";
- if (Object.keys(monitor).length > 0 && index > 1) {
- if (
- (this.dialysisOrder &&
- monitor.operate_time == this.dialysisOrder.end_time)&&(this.org_id!=10414)
- ) {
- this.monitors[index].end = "【结束透析】";
- tempmonitorflag = false;
- }
- if ((tempmonitorflag && index == this.monitors.length - 1)&&(this.org_id!=10414)) {
- this.monitors[index].end = "【结束透析】";
- }
- }
- }
-
- this.jilurow = this.monitors.length + 1;
-
- this.advice_jilurow = this.advices.length + 1;
-
- var childMap = {};
- for (const index in this.advices) {
- if (this.advices[index].parent_id == 0) {
- continue;
- }
- if (!(this.advices[index].parent_id in childMap)) {
- childMap[this.advices[index].parent_id] = [];
- }
- childMap[this.advices[index].parent_id].push(this.advices[index]);
- }
-
- var advices = [];
- for (const index in this.advices) {
- if (this.advices[index].parent_id > 0) {
- continue;
- }
- var item = this.advices[index];
- if (item.id in childMap) {
- item.children = childMap[item.id];
- } else {
- item.children = [];
- }
- advices.push(item);
- }
-
- var leftAdvice = [];
- var rightAdvice = [];
- var adlen = advices.length;
-
- var halfLen = adlen % 2 == 0 ? adlen / 2 : (adlen + 1) / 2;
- for (var i = 0; i < halfLen; i++) {
- leftAdvice.push(advices[i]);
- rightAdvice.push(advices[i + halfLen]);
- }
- if (halfLen < 5) {
- var nl = 5 - leftAdvice.length;
- for (let index = 0; index < nl; index++) {
- leftAdvice.push([]);
- }
- var nl = 5 - rightAdvice.length;
- for (let index = 0; index < nl; index++) {
- rightAdvice.push([]);
- }
- }
-
- this.advices = [];
- for (var i = 0; i < halfLen; i++) {
- var item = [];
- item.push(leftAdvice[i]);
- item.push(rightAdvice[i]);
- this.advices.push(item);
- }
- this.loading = false;
- this.doctor_advices =
- response.data.data.advices == null ? [] : response.data.data.advices;
- for (let index = 0; index < this.doctor_advices.length; index++) {
- this.doctor_advices[index]["isShow"] = 2;
- }
-
- // if (this.doctor_advices.length > 0) {
- // var group = this.newAdviceGroupObject()
- // var initGroupBlock = function(group, advice) {
- // group.group_no = advice.groupno
- // }
- // for (let index = this.doctor_advices.length - 1; index >= 0; index--) {
- // var new_advice_index = 0
-
- // if ('children' in this.doctor_advices[index] && this.doctor_advices[index].children.length > 0) {
- // new_advice_index = index + this.doctor_advices[index].children.length + 1
-
- // var doctor_advice = {
- // delivery_way: this.doctor_advices[index].delivery_way,
- // execution_frequency: this.doctor_advices[index].execution_frequency,
- // groupno: this.doctor_advices[index].groupno,
- // id: this.doctor_advices[index].id,
- // parent_id: this.doctor_advices[index].parent_id,
- // children: this.doctor_advices[index].children,
- // remark: this.doctor_advices[index].remark,
- // execution_staff: this.doctor_advices[index].execution_staff,
- // checker: this.doctor_advices[index].checker,
- // execution_time: this.doctor_advices[index].execution_time,
- // advice_doctor: this.doctor_advices[index].advice_doctor
-
- // }
- // doctor_advice['isShow'] = 1
- // this.doctor_advices.splice(new_advice_index, 0, doctor_advice)
- // // this.doctor_advices.push(doctor_advice)
- // }
- // }
-
- // for (let index = 0; index < this.doctor_advices.length; index++) {
- // const advice = this.doctor_advices[index]
- // if (advice.groupno == 0) {
- // // 老版本的医嘱没有分组的概念,所以这一个 if 是解决这个问题的,将每个无分组的医嘱各自归为一组
- // if (advice.parent_id > 0) {
- // if (this.advice_groups.length > 0) {
- // var parent_group = this.advice_groups[
- // this.advice_groups.length - 1
- // ]
- // if (parent_group.advices.length > 0) {
- // if (parent_group.advices[0].id == advice.parent_id) {
- // parent_group.advices.push(advice)
- // }
- // }
- // }
- // continue
- // } else {
- // if (group.group_no > 0) {
- // this.advice_groups.push(group)
- // group = this.newAdviceGroupObject()
- // }
-
- // initGroupBlock(group, advice)
- // group.advices.push(advice)
- // this.advice_groups.push(group)
- // group = this.newAdviceGroupObject()
- // continue
- // }
- // }
-
- // if (group.group_no > 0 && group.group_no != advice.groupno) {
- // this.advice_groups.push(group)
- // group = this.newAdviceGroupObject()
- // }
- // if (group.group_no == 0) {
- // initGroupBlock(group, advice)
- // }
- // if (group.group_no == advice.groupno) {
- // group.advices.push(advice)
- // }
- // }
-
- // if (group.group_no > 0) {
- // // 上述的算法会导致最后一组没有加到advice_groups,这里要手动加上
- // this.advice_groups.push(group)
- // }
- // }
-
- if(this.org_id== 0 || this.org_id ==10206){
- let projectsOne = [];
- response.data.data.projects.map((item) => {
- projectsOne.push(item);
- });
- this.projectsOne = projectsOne;
-
-
- console.log("this.projectsOne", this.projectsOne);
-
- }
-
-
- console.log("RESWOOWOWWOOW",response.data.data.doctorAdevieInfo)
- if(this.org_id ==10515 || this.org_id == 10510 || this.org_id ==10567 ){
- if(response.data.data.doctorAdevieInfo!=null && response.data.data.doctorAdevieInfo.length>0){
-
- for(let i=0;i<response.data.data.doctorAdevieInfo.length;i++){
- this.doctor_advices.push(response.data.data.doctorAdevieInfo[i])
- console.log("寄哪里 222")
- // this.doctor_advices_2.push(response.data.data.doctorAdevieInfo[i])
- }
- }
-
- console.log("医护哦我我我哦我我哦",this.doctor_advices)
-
- let projects = [];
- response.data.data.projects.map((item) => {
- if (item.type == 2) {
- projects.push(item);
- }
- });
- this.projects = projects;
-
-
- console.log("this.projects", this.projects);
-
- // var objProject = {advice_name:"",start_time:"",single_dose:"",single_dose_unit:"",}
-
- if(this.org_id!=10510 && this.org_id!=0&&this.org_id!=10206){
- if(this.projects!=null && this.projects.length >0){
- for(let i=0;i<this.projects.length;i++){
- if(this.projects[i].type== 2){
-
- this.projects[i].project_team_name = ""
- this.projects[i].project_team_id = 0
- console.log("this.projects[i].project.team",this.projects[i].project.team)
- if(this.projects[i].team!= "undefined" && this.projects[i].team.id >0){
- this.projects[i].project_team = this.projects[i].team.project_team
- this.projects[i].project_team_id = this.projects[i].team.id
- this.projects[i].start_time = this.projects[i].start_time
- this.projects[i].single_dose = this.projects[i].single_dose
- this.projects[i].single_dose_unit = this.projects[i].unit
- this.projects[i].execution_time = this.projects[i].execution_time
- this.projects[i].execution_staff= this.projects[i].execution_staff
- this.projects[i].advice_name = this.projects[i].team.project_team
- this.projects[i].advice_doctor = this.projects[i].doctor
-
-
- this.doctor_advices.push(this.projects[i])
- // this.doctor_advices_2.push(this.project[i])
- }else{
- this.projects[i].project_team = this.projects[i].project.project_name
- this.projects[i].advice_name = this.projects[i].project.project_name
- this.projects[i].start_time = this.projects[i].start_time
- this.projects[i].single_dose = this.projects[i].single_dose
- this.projects[i].single_dose_unit = this.projects[i].unit
- this.projects[i].execution_time = this.projects[i].execution_time
- this.projects[i].execution_staff= this.projects[i].execution_staff
- this.projects[i].advice_doctor = this.projects[i].doctor
- this.doctor_advices.push(this.projects[i])
- // this.doctor_advices_2.push(this.projects[i])
- }
-
- }
-
- }
- }
- }
-
-
- }
-
- console.log("时间我我我哦我我",this.doctor_advices)
- if(this.org_id == 10265){
- var docArr = []
- if(this.doctor_advices!=null && this.doctor_advices.length>0){
- for(let i=0;i<this.doctor_advices.length;i++){
- if(this.doctor_advices[i].delivery_way!='口服' && this.doctor_advices[i].delivery_way!='中药口服'){
- docArr.push(this.doctor_advices[i])
- }
- }
- }
- this.doctor_advices = []
- this.doctor_advices = docArr
- }
-
-
- if (this.doctor_advices.length + this.projectsOne.length <= 6) {
- var nl = 6 - (this.doctor_advices.length + this.projectsOne.length);
- this.print_length = 6;
-
- for (let index = 0; index < nl; index++) {
- if (
- this.projectsOne[index] == undefined ||
- this.projectsOne[index].length <= 0
- ) {
- this.projectsOne.push([]);
- } else {
- continue;
- }
- }
- }
- // if (this.doctor_advices.length <= 6) {
- // var nl = 6;
- // this.print_length = 6;
-
- // for (let index = 0; index < nl; index++) {
- // if (
- // this.doctor_advices[index] == undefined ||
- // this.doctor_advices[index].length <= 0
- // ) {
- // this.doctor_advices.push([]);
- // } else {
- // continue;
- // }
- // }
- // }
-
- this.totollength = this.doctor_advices.length + this.monitors.length;
- console.log("this.totollength",this.totollength)
- if (this.totollength > 18) {
- var temp_advice_length = 17 - this.monitors.length;
- var doctor_advices_1 = [];
- var doctor_advices_2 = [];
- for (let index = 0; index < this.doctor_advices.length; index++) {
- const element = this.doctor_advices[index];
- if (temp_advice_length > index) {
- doctor_advices_1.push(element);
- } else {
- doctor_advices_2.push(element);
- }
- }
- this.doctor_advices = doctor_advices_1;
- this.doctor_advices_2 = doctor_advices_2;
- }
- // console.log(this.advice_groups);
-
-
- } else {
- this.loading = false;
- this.$message.error("请求数据失败");
- return false;
- }
- // })
- },
-
- bloodAccessParOperaName(id) {
- if (id in this.bloodAccessParOpera) {
- return this.bloodAccessParOpera[id].name;
- }
- return "";
- },
- dialysateFormulationName(id) {
- if (id in this.dialysateFormulationOptions) {
- return this.dialysateFormulationOptions[id].name;
- }
- return "";
- },
- // getAge: function (val) {
- // if (
- // this.org_template_info.template_id == 2 ||
- // this.org_template_info.template_id == 0
- // ) {
- // if (val.age == 0) {
- // return jsGetAge(val.birth, "-");
- // } else {
- // return val.age;
- // }
- // } else {
- // return this.getoldAge();
- // }
- // },
- getAge: function(val) {
-
- if (val.id_card_no) {
- var thisLen = val.id_card_no.length
-
- var birth = ''
- if (thisLen == 15) {
- birth = '19' + val.id_card_no.substr(6, 6)
- } else {
- birth = val.id_card_no.substr(6, 8)
- }
- var birthtwo =
- birth.substr(0, 4) +
- '-' +
- birth.substr(4, 2) +
- '-' +
- birth.substr(6, 2)
-
- var age = jsGetAge(birthtwo, '-')
- return age
- }
- },
- newAdviceGroupObject: function () {
- return Object.assign(
- {},
- {
- group_no: 0,
- // advice_doctor: 0,
- // start_time: 0,
- advices: [],
- // exec_staff: 0,
- // exec_time: 0,
- // checker: 0,
- }
- );
- },
- getFloat: function (x) {
- if (x == 0) {
- return "/";
- }
- if (x != ".") {
- var f = Math.round(x * 100) / 100;
- var s = f.toString();
- var rs = s.indexOf(".");
- if (rs <= 0) {
- rs = s.length;
- s += ".";
- }
- while (s.length <= rs + 1) {
- s += "0";
- }
- return s;
- } else {
- return "0.0";
- }
- },
-
- },
- watch: {
- "patientInfo.gender": function () {
- if (this.patientInfo.gender == 1) {
- this.patientInfo_gender_1 = true;
- this.patientInfo_gender_2 = false;
- } else if (this.patientInfo.gender == 2) {
- this.patientInfo_gender_2 = true;
- this.patientInfo_gender_1 = false;
- } else {
- this.patientInfo_gender_2 = false;
- this.patientInfo_gender_1 = false;
- }
- },
- "patientInfo.source": function () {
- if (this.patientInfo.source == 1) {
- this.patientInfo_source_1 = true;
- this.patientInfo_source_2 = false;
- } else if (this.patientInfo.source == 2) {
- this.patientInfo_source_2 = true;
- this.patientInfo_source_1 = false;
- } else {
- this.patientInfo_source_2 = false;
- this.patientInfo_source_1 = false;
- }
- },
-
-
- },
- created() {
- this.way_arr = getDataConfig("hemodialysis", "way");
- this.consciousness_arr = getDataConfig("hemodialysis", "consciousness");
- this.appetite_arr = getDataConfig("hemodialysis", "appetite");
- this.posture_arr = getDataConfig("hemodialysis", "posture");
- this.sick_condition_arr = getDataConfig("hemodialysis", "sick_condition");
- this.precaution_arr = getDataConfig("hemodialysis", "precaution");
- this.intake_arr = getDataConfig("hemodialysis", "intake");
- this.nutrition_arr = getDataConfig("hemodialysis", "nutrition");
-
- var xtuser = this.$store.getters.xt_user;
- this.orgname = xtuser.org.org_name;
- // this.orgname = "遂溪方济医院";
- this.modeOptions = this.$store.getters.treatment_mode;
- this.replacementWays = this.$store.getters.replacement_ways;
- this.perfusionApparatus = this.$store.getters.perfusion_apparatus;
- this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
- this.displaceLiquiPartOptions = this.$store.getters.displace_liqui;
-
- this.blood_access_part = getDataConfig("hemodialysis", "vascular_access");
- this.blood_access_part_opera = getDataConfig(
- "hemodialysis",
- "vascular_access_desc"
- );
- this.org_id = this.$store.getters.xt_user.org.id;
-
- // this.bloodAccessParOpera = getDataConfig('hemodialysis', 'vascular_access_desc')
-
- var bloodAccessParOpera = getDataConfig(
- "hemodialysis",
- "vascular_access_desc"
- );
- for (var key in bloodAccessParOpera) {
- this.bloodAccessParOpera[bloodAccessParOpera[key].id] =
- bloodAccessParOpera[key];
- }
-
- var dialysateFormulationOptions = getDataConfig(
- "hemodialysis",
- "dialysate_formulation"
- );
- for (var key in dialysateFormulationOptions) {
- this.dialysateFormulationOptions[dialysateFormulationOptions[key].id] =
- dialysateFormulationOptions[key];
- }
-
- const xtdate = this.$route.query && this.$route.query.xtdate;
- // console.log("xtdate", xtdate);
- const xtno = this.$route.query && this.$route.query.xtno;
- // console.log("xtno", xtno);
- if (
- typeof xtdate === "string" &&
- xtdate.length > 0 &&
- typeof xtno === "string" &&
- xtno.length > 0
- ) {
- this.queryParams.xtdate = xtdate;
- this.queryParams.xtno = xtno;
- this.getDialysisRecord();
- } else {
- this.$message.error("参数不齐");
- return false;
- }
- },
- };
- </script>
-
- <style>
- .print_page_main_content {
- background-color: white;
- width: 960px;
- margin: 0 auto 50px;
- padding: 0 0 0 0;
- page-break-after: always;
- }
-
- .print_page_main_content .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;
- }
-
- .print_page_main_content .order_title {
- text-align: center;
- font-size: 23px;
- line-height: 50px;
- font-weight: 500;
- }
-
- .row {
- font-size: 14px;
- line-height: 20px;
- padding: 5px 0;
- }
-
- .inline_block {
- display: inline-block;
- }
- .under_line_two {
- display: inline-block;
- border-bottom: 1px solid #999;
- text-align: left;
- white-space: nowrap;
- width: 50%;
- }
-
- .under_line_two::before {
- content: "\00A0";
- }
-
- .under_line_two::after {
- content: "\00A0";
- }
-
- .under_line {
- display: inline-block;
- border-bottom: 1px solid #999;
- text-align: center;
- white-space: nowrap;
- width: 50%;
- }
-
- .under_line::before {
- content: "\00A0";
- }
-
- .under_line::after {
- content: "\00A0";
- }
-
- .flex {
- display: -webkit-box;
- display: -moz-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- align-items: center;
- -webkit-align-items: center;
- box-align: center;
- -moz-box-align: center;
- -webkit-box-align: center;
- text-align: center;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -moz-box-pack: space-between;
- -webkit--moz-box-pack: space-between;
- box-pack: space-between;
- }
-
- .print_page_main_content .proj_table {
- width: 100%;
- border: 1px solid;
- border-collapse: collapse;
- padding: 2px;
- }
-
- .print_page_main_content .proj_table tbody tr td {
- border: 1px solid;
- /* text-align: center; */
- font-size: 16px;
- padding: 5px 8px;
- line-height: 30px;
- }
-
- .print_page_main_content .proj_table .inside_table {
- width: 100%;
- border: hidden; /* 解决边框冲突 */
- border-collapse: collapse;
- }
-
- .print_page_main_content .proj_table .inside_table tr td {
- border: 1px solid;
- text-align: center;
- font-size: 14px;
- padding: 0px 5px;
- line-height: 16px;
- }
-
- .print-table-no {
- width: 100%;
- text-align: center;
- border-collapse: collapse;
- font-size: 14px;
- }
-
- .es-img {
- height: 20px;
- }
-
- .advice-name {
- text-align: left !important;
- line-height: 16px !important;
- }
-
- .advice-children {
- display: flex;
- }
- .margin-bottom-50 {
- }
- .margin-bottom-300 {
- margin-bottom: 450px;
- }
- .margin-bottom-600 {
- margin-bottom: 600px;
- }
- .margin-bottom-900 {
- margin-bottom: 900px;
- }
- .print-yema {
- position: absolute;
- left: 50%;
- }
- .print-yema2 {
- position: absolute;
- left: 50%;
- }
- .print-yema3 {
- position: absolute;
- left: 50%;
- }
- .print-yema4 {
- position: absolute;
- left: 50%;
- }
- .check_box_panel .did_checke::after {
- font-size: 8px;
- margin-left: 2px;
- margin-top: 2px;
- position: absolute;
- }
- </style>
|