123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490 |
- <template>
- <div id="dialysis-print-box">
- <div class="dialysis-print-order">
- <!-- <div class="order-yy-name">{{ orgname }}</div> -->
- <div class="order-title">{{ orgname }} 血液净化治疗记录单</div>
- <table class="table-box" style="margin-top: 10px;">
- <tbody>
- <tr>
- <td width="50">姓 名:</td>
- <td width="90">
- <div class="under-line"> {{ patientInfo.name }}</div>
- </td>
- <td width="30"></td>
- <td width="50">性 别:</td>
- <td width="50">
- <div class="under-line">
- {{ patientInfo_gender_1 ? "男" : "女" }}
- </div>
- </td>
- <td width="30"></td>
- <td width="50">年 龄:</td>
- <td width="40">
- <div class="under-line">{{ getAge(patientInfo) }}</div>
- </td>
- <td>岁</td>
-
- <td width="120">透析号/住院号:</td>
- <td width="130">
- <div class="under-line"> {{ patientInfo.dialysis_no }} /{{ receiverTreatmentAccess.admission_number ? receiverTreatmentAccess.admission_number : "无" }}
- </div>
- </td>
- <td width="30"></td>
- <td width="80">治疗日期:</td>
- <td width="120">
- <div class="under-line">
- <span>{{ queryParams.xtdate }}</span>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- <!-- <div style="display:flex:font-size:14px">
- <span style="width:50px;text-align:text-algin">诊 断:</span>
- <div class="under-line" style="text-align:left">
- {{ patientInfo.diagnose }}
- </div>
- </div> -->
- <table class="table-box" style="margin-top: 10px;">
- <tbody>
- <tr>
- <td width="40">诊 断:</td>
- <td width="">
- <div class="under-line" style="text-align:left">
- {{ patientInfo.diagnose }}
- </div>
- </td>
- <td width="60">治疗次数:</td>
- <td width="60">
- <div class="under-line">
- {{ patientInfo.total_dialysis + patientInfo.user_sys_before_count ? patientInfo.total_dialysis + patientInfo.user_sys_before_count : "" }}
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- <table class="print-table" border="1">
- <tbody>
- <tr>
- <td width="30px" class="title-box">一般情况</td>
- <td>
- <table class="table-box">
- <tbody>
- <tr>
- <td width="70">入科方式:</td>
- <td width="240">
- <div style="display:flex;justify-content:space-between;">
- <label-box v-for="(item, index) in way_arr" :key="index" :isChecked="receiverTreatmentAccess.way == item.id ? true : false" :showValue="item.name"></label-box>
- <!-- -->
- <!--<label-box :isChecked='receiverTreatmentAccess.way==2?true:false' showValue='扶行'></label-box>-->
- <!-- -->
- <!--<label-box :isChecked='receiverTreatmentAccess.way==3?true:false' showValue='轮椅'></label-box>-->
- <!-- -->
- <!--<label-box :isChecked='receiverTreatmentAccess.way==4?true:false' showValue='平车'></label-box>-->
- </div>
- </td>
-
- <td width="50"></td>
- <td width="50">意识:</td>
- <td width="240">
- <div style="display:flex;justify-content:space-between;">
- <label-box v-for="(item, index) in consciousness_arr" :key="index" :isChecked="receiverTreatmentAccess.consciousness == item.id ? true : false" :showValue="item.name"></label-box>
-
- <!--<label-box :isChecked='receiverTreatmentAccess.consciousness==1?true:false'-->
- <!--showValue='清醒'></label-box>-->
- <!-- -->
- <!--<label-box :isChecked='receiverTreatmentAccess.consciousness==2?true:false'-->
- <!--showValue='嗜睡'></label-box>-->
- <!-- -->
- <!--<label-box :isChecked='receiverTreatmentAccess.consciousness==3?true:false'-->
- <!--showValue='昏迷'></label-box>-->
- <!--<label-box :isChecked='receiverTreatmentAccess.consciousness==4?true:false'-->
- <!--showValue='模糊'></label-box>-->
- </div>
- </td>
- <td width='20'></td>
- <td width='60'>透析频次</td>
- <td width="70">
- <div class="under-line">
- {{ predialysis.dialysis_count ? predialysis.dialysis_count : "" }}
- </div>
- </td>
- <td width='40'>次/周</td>
- <td></td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="80">生命体征:</td>
- <td width="40">体温:</td>
- <td width="70">
- <div class="under-line">
- {{ predialysis.temperature ? predialysis.temperature : "" }}
- </div>
- </td>
- <td width="35">℃</td>
- <td width="30"></td>
-
- <!-- <td width="40">心率:</td>
- <td width="70">
- <div class="under-line"> </div>
- </td>
- <td width="35">次/分</td>
- <td width="30"></td> -->
-
- <td width="40">脉搏:</td>
- <td width="70">
- <div class="under-line">
- {{ predialysis.pulse_frequency ? predialysis.pulse_frequency : "" }}
- </div>
- </td>
- <td width="35">次/分</td>
- <td width="30"></td>
-
- <td width="40">血压:</td>
- <td width="140">
- <div class="under-line">
- {{ predialysis.systolic_blood_pressure ? predialysis.systolic_blood_pressure : "" }}/
- {{ predialysis.diastolic_blood_pressure ? predialysis.diastolic_blood_pressure : "" }}
- </div>
- </td>
- <td width="35">mmHg</td>
-
- <td></td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="86">导管穿刺口:</td>
- <td width="240">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="predialysis.catheter.indexOf('穿刺口-干洁') > -1 ? true : false" showValue="干洁"></label-box>
-
- <label-box :isChecked="predialysis.catheter.indexOf('穿刺口-红肿') > -1 ? true : false" showValue="红肿"></label-box>
-
- <label-box :isChecked="predialysis.catheter.indexOf('穿刺口-分泌物') > -1 ? true : false" showValue="分泌物"></label-box>
-
- <label-box :isChecked="predialysis.catheter.indexOf('穿刺口-渗血') > -1 ? true : false" showValue="渗血"></label-box>
- </div>
- </td>
- <td width="40"></td>
- <!-- <td width="65">导管打折</td>
- <td width="10">(</td>
- <td width="80">
- <div>
- <label-box
- :isChecked="
- predialysis.catheter_bend == 1 ? true : false
- "
- showValue="有"
- ></label-box>
-
- <label-box
- :isChecked="
- predialysis.catheter_bend == 2 ? true : false
- "
- showValue="无"
- ></label-box>
- </div>
- </td>
- <td width="10">)</td>
- <td></td> -->
-
- <!-- 体位 -->
- <td width="40">体位:</td>
- <td width="400">
- <div style="display:flex;justify-content:space-between;">
- <label-box v-for="(item, index) in posture_arr" :key="index" :isChecked="receiverTreatmentAccess.posture == item.id ? true : false" :showValue="item.name"></label-box>
-
- <!--<label-box :isChecked='receiverTreatmentAccess.posture==1?true:false'-->
- <!--showValue='自动体位'></label-box>-->
- <!-- -->
- <!--<label-box :isChecked='receiverTreatmentAccess.posture==2?true:false'-->
- <!--showValue='平卧位'></label-box>-->
- <!-- -->
- <!--<label-box :isChecked='receiverTreatmentAccess.posture==3?true:false'-->
- <!--showValue='半卧位'></label-box>-->
- <!-- -->
- <!--<label-box :isChecked='receiverTreatmentAccess.posture==4?true:false'-->
- <!--showValue='端坐位'></label-box>-->
- <!-- -->
- <!--<label-box :isChecked='receiverTreatmentAccess.posture==5?true:false'-->
- <!--showValue='躁动不安'></label-box>-->
- <!-- -->
- </div>
- </td>
- <td></td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="70">内瘘评估:</td>
- <td width="35">震颤:</td>
- <td width="210">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="predialysis.internal_fistula.indexOf('震颤-存在') > -1 ? true : false" showValue="存在"></label-box>
-
- <label-box :isChecked="predialysis.internal_fistula.indexOf('震颤-减弱') > -1 ? true : false" showValue="减弱"></label-box>
-
- <label-box :isChecked="predialysis.internal_fistula.indexOf('震颤-无') > -1 ? true : false" showValue="不存在"></label-box>
- </div>
- </td>
- <td width="50"></td>
-
- <td width="95">内瘘皮肤情况:</td>
- <td width="220">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="predialysis.internal_fistula_skin.indexOf('正常') > -1 ? true : false" showValue="正常"></label-box>
-
- <label-box :isChecked="predialysis.internal_fistula_skin.indexOf('瘀斑') > -1 ? true : false" showValue="瘀斑"></label-box>
-
- <label-box :isChecked="predialysis.internal_fistula_skin.indexOf('红') > -1 ? true : false" showValue="红"></label-box>
-
- <label-box :isChecked="predialysis.internal_fistula_skin.indexOf('肿') > -1 ? true : false" showValue="肿"></label-box>
- </div>
- </td>
- <td></td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="40">皮肤:</td>
- <td width="600">
- <div style="display:flex;justify-content:space-between;">
- <!-- <label-box showValue="完整" :isChecked="predialysis.skin == 1 ? true : false"></label-box>
- <label-box showValue="干燥" :isChecked="predialysis.skin == 2 ? true : false"></label-box>
- <label-box showValue="瘙痒" :isChecked="predialysis.skin == 3 ? true : false"></label-box>
- <label-box showValue="菲薄" :isChecked="predialysis.skin == 4 ? true : false"></label-box>
- <label-box showValue="水肿" :isChecked="predialysis.skin == 5 ? true : false"></label-box>
- <label-box showValue="皮疹" :isChecked="predialysis.skin == 6 ? true : false"></label-box>
- <label-box showValue="出血点" :isChecked="predialysis.skin == 7 ? true : false"></label-box>
- <label-box showValue="压疮" :isChecked="predialysis.skin == 8 ? true : false"></label-box>
- <label-box showValue="皮下淤血" :isChecked="predialysis.skin == 9 ? true : false"></label-box> -->
- <label-box showValue="完整" :isChecked="predialysis.skin.indexOf('完整')>-1 ? true : false"></label-box>
- <label-box showValue="干燥" :isChecked="predialysis.skin.indexOf('干燥')>-1? true : false"></label-box>
- <label-box showValue="瘙痒" :isChecked="predialysis.skin.indexOf('瘙痒')>-1 ? true : false"></label-box>
- <label-box showValue="菲薄" :isChecked="predialysis.skin.indexOf('菲薄')>-1? true : false"></label-box>
- <label-box showValue="水肿" :isChecked="predialysis.skin.indexOf('水肿')>-1 ? true : false"></label-box>
- <label-box showValue="皮疹" :isChecked="predialysis.skin.indexOf('皮疹')>-1 ? true : false"></label-box>
- <label-box showValue="出血点" :isChecked="predialysis.skin.indexOf('出血点')>-1 ? true : false"></label-box>
- <label-box showValue="压疮" :isChecked="predialysis.skin.indexOf('压疮')>-1 ? true : false"></label-box>
- <label-box showValue="皮下淤血" :isChecked="predialysis.skin.indexOf('皮下淤血')>-1 ? true : false"></label-box>
-  
- </div>
- </td>
-
- <td width="35">其它</td>
- <td width="">
- <div class="under-line">
-
- </div>
- </td>
- <!-- <td width="10">)</td> -->
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="86">活动性出血:</td>
- <td width="40">
- <div>
- <label-box :isChecked="predialysis.is_hemorrhage == 2 ? true : false" showValue="无"></label-box>
- <!--
- <label-box
- :isChecked="
- predialysis.is_hemorrhage == 1 ? true : false
- "
- showValue="有"
- ></label-box> -->
- </div>
- </td>
- <!-- <td width="10">(</td> -->
- <td width="380">
- <div>
- <label-box :isChecked="predialysis.is_hemorrhage == 1 && predialysis.hemorrhage.indexOf('牙龈出血') > -1 ? true : false" showValue="牙龈出血"></label-box>
-
- <label-box :isChecked="predialysis.is_hemorrhage == 1 && predialysis.hemorrhage.indexOf('消化道出血') > -1 ? true : false" showValue="消化道出血"></label-box>
-
- <label-box :isChecked="predialysis.is_hemorrhage == 1 && predialysis.hemorrhage.indexOf('穿刺点渗血') > -1 ? true : false" showValue="穿刺点渗血"></label-box>
-
-
- <label-box :isChecked="predialysis.is_hemorrhage == 1 && predialysis.hemorrhage.indexOf('女性经期') > -1 ? true : false" showValue="女性经期"></label-box>
- </div>
- </td>
-
- <td width="35">其它</td>
- <td width="">
- <div class="under-line">
-
- <span v-if="predialysis.is_hemorrhage == 1">{{ predialysis.hemorrhage_other }}</span>
- </div>
- </td>
- <!-- <td width="10">)</td> -->
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="70">血管通路:</td>
- <td width="600">
- <div>
- <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('自体内瘘') > -1 ? true : false" showValue="自体内瘘"></label-box>
-
- <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('人造血管') > -1 ? true : false" showValue="人造血管"></label-box>
-
- <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('直穿') > -1 ? true : false" showValue="直穿"></label-box>
-
- <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('颈内静脉-左') > -1 ? true : false" showValue="颈内静脉-左"></label-box>
-
- <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('颈内静脉-右') > -1 ? true : false" showValue="颈内静脉-右"></label-box>
-
- <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('股静脉') > -1 ? true : false" showValue="股静脉"></label-box>
-
- <label-box :isChecked="predialysis.blood_access_part_opera_name.indexOf('锁骨下') > -1 ? true : false" showValue="锁骨下"></label-box>
-
- </div>
- </td>
-
- <td></td>
- </tr>
- </tbody>
- </table>
- <table class="table-box">
- <tbody>
- <tr>
- <td width="70">穿刺方式:</td>
- <td width="200">
- <div>
- <label-box showValue="绳梯" :isChecked="predialysis.puncture_way.indexOf('绳梯')>-1 ? true : false"></label-box>
- <label-box showValue="定点" :isChecked="predialysis.puncture_way.indexOf('定点')>-1 ? true : false"></label-box>
- <label-box showValue="直接穿刺" :isChecked="predialysis.puncture_way.indexOf('直接穿刺')>-1 ? true:false"></label-box>
- </div>
- </td>
- <td width='20'></td>
- <td width="70">穿刺针:</td>
- <td width="180">
- <div>
- <label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('16G') > -1 ? true : false" showValue="16G"></label-box>
-
- <label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('17G') > -1 ? true : false" showValue="17G"></label-box>
-
- <label-box :isChecked="predialysis.puncture_needle && predialysis.puncture_needle.indexOf('钝针') > -1 ? true : false" showValue="钝针"></label-box>
-
- </div>
- </td>
-
- <td></td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
-
- <table class="print-table" border="1">
- <tbody>
- <tr>
- <td width="30px" class="title-box">专科记录</td>
- <td>
- <table class="table-box">
- <tbody>
- <tr>
- <td width="60">干体重:</td>
- <td width="50">
- <div class="under-line">
- {{ predialysis.dry_weight ? predialysis.dry_weight : "" }}
- </div>
- </td>
- <td width="20">Kg</td>
- <td></td>
- <td width="70">透前体重:</td>
- <td width="50">
- <div class="under-line">
- {{ predialysis.weight_before ? predialysis.weight_before : "" }}
- </div>
- </td>
- <td width="20">Kg</td>
-
- <td></td>
- <td width="100">计划治疗时间:</td>
- <td width="40">
- <div class="under-line">
- {{ prescription.dialysis_duration_hour ? prescription.dialysis_duration_hour : "0" }}
- </div>
- </td>
- <td width="10">h</td>
- <td width="40">
- <div class="under-line">
- {{ prescription.dialysis_duration_minute ? prescription.dialysis_duration_minute : "0" }}
- </div>
- </td>
- <td width="35">min</td>
- <td></td>
- <td width="80">透析机编号:</td>
- <td width="100">
- <div class="under-line">{{ getNumber() }}</div>
- </td>
- <td width=""></td>
- <!-- <td width="55">血流量:</td>
- <td width="60">
- <div class="under-line">
- {{
- prescription.blood_flow_volume
- ? prescription.blood_flow_volume
- : ""
- }}
- </div>
- </td>
- <td width="60">ml/min</td>
- <td></td>
-
- <td width="85">目标超滤量:</td>
- <td width="70">
- <div class="under-line">
- {{
- prescription.target_ultrafiltration
- ? prescription.target_ultrafiltration
- : ""
- }}
- </div>
- </td>
- <td width="20">L</td> -->
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="120">计划超滤总量:</td>
- <td width="50">
- <div class="under-line">
- {{ prescription.target_ultrafiltration ? prescription.target_ultrafiltration : "" }}
- </div>
- </td>
- <td width="10">ml</td>
- <td width="60">置换量:</td>
- <td width="40">
- <div class="under-line">
- {{ prescription.replacement_total ? prescription.replacement_total : "/" }}
- </div>
- </td>
- <td width="20">ml</td>
-
- <td width="80">透析方式:</td>
- <td width="50">
- <label-box :isChecked="prescription.mode_id == 1 ? true : false" showValue="HD"></label-box>
- </td>
- <td width="60">
- <label-box :isChecked="prescription.mode_id == 2 ? true : false" showValue="HDF"></label-box>
- </td>
- <td width="50">
- <label-box :isChecked="prescription.mode_id == 5 ? true : false" showValue="HF"></label-box>
- </td>
- <td width="50">
- <label-box :isChecked="prescription.mode_id == 4 ? true : false" showValue="HP"></label-box>
- </td>
- <td width="80">
- <label-box :isChecked="prescription.mode_id == 3 ? true : false" showValue="HD+HP"></label-box>
- </td>
- <td width="90">透析器型号:</td>
- <td width="100">
- <div class="under-line">
- {{ prescription.dialyzer_perfusion_apparatus ? prescription.dialyzer_perfusion_apparatus : "/" }}
- </div>
- </td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="40">肝素:</td>
- <td width="75">
- <label-box :isChecked="(prescription.anticoagulant == 3 || prescription.anticoagulant == 6 || prescription.anticoagulant == 7) ? true : false" showValue="低分子:"></label-box>
- </td>
-
- <td width="60">
- <div class="under-line">
-
- <span v-if="prescription.anticoagulant == 3 || prescription.anticoagulant == 6 || prescription.anticoagulant == 7">{{ prescription.anticoagulant_zongliang }}</span>
- </div>
- </td>
- <td width="20">
- <span v-if="prescription.anticoagulant == 5">mg</span>
- <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 v-if="prescription.anticoagulant == 6">iu</span>
- <span v-if="prescription.anticoagulant == 7">iu</span>
- </td>
- <td width="70">
- <label-box :isChecked="prescription.anticoagulant == 1 ? true : false" showValue="无肝素"></label-box>
- </td>
- <td width="80">
- <label-box :isChecked="prescription.anticoagulant == 2 ? true : false" showValue="普通肝素:"></label-box>
- </td>
- <td width="35">首剂</td>
- <td width="40">
- <div class="under-line">
-
- <span v-if="prescription.anticoagulant == 2">{{ prescription.anticoagulant_shouji }}</span>
- </div>
- </td>
- <td width="20">
- <span v-if="prescription.anticoagulant == 4">mg</span>
- <span v-if="prescription.anticoagulant == 3">iu</span>
- <span v-if="prescription.anticoagulant == 2">iu</span>
- <span v-if="prescription.anticoagulant == 1">mg</span>
- </td>
- <td width="10"></td>
- <td width="35">追加</td>
- <td width="40">
- <div class="under-line" >
-
- <span v-if="prescription.anticoagulant == 2">{{ prescription.anticoagulant_weichi ? prescription.anticoagulant_weichi : "/" }}</span>
-
- </div>
- </td>
- <td width="40">
- <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">iu/h</span>
- <span v-if="prescription.anticoagulant == 1">mg/h</span>
- </td>
-
- <td width="35">总量:</td>
- <td width="40">
- <div class="under-line">
-
- <span v-if="prescription.anticoagulant == 2">{{ prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "/" }}</span>
- </div>
- </td>
- <td width="20">
- <span v-if="prescription.anticoagulant == 4">mg</span>
- <span v-if="prescription.anticoagulant == 3">iu</span>
- <span v-if="prescription.anticoagulant == 2">iu</span>
- <span v-if="prescription.anticoagulant == 1">mg</span>
- </td>
- <td width="40"></td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="85">透析液配方:</td>
- <td width="580">
- <label-box :isChecked="prescription.dialysate_formulation_name.indexOf('常规') > -1 ? true : false" showValue="常规"></label-box>
-
- <label-box :isChecked="prescription.dialysate_formulation_name.indexOf('钾(3.5mmol/L)') > -1 ? true : false" showValue="钾(3.5mmol/L)"></label-box>
-
- <label-box :isChecked="prescription.dialysate_formulation_name.indexOf('钾(2.0mmol/L)') > -1 ? true : false" showValue="钾(2.0mmol/L)"></label-box>
-
- <label-box :isChecked="prescription.dialysate_formulation_name.indexOf('低钙(1.25mmol/L)') > -1 ? true : false" showValue="低钙(1.25mmol/L)"></label-box>
-
- <label-box :isChecked="prescription.dialysate_formulation_name.indexOf('高钙(1.5mmol/L)') > -1 ? true : false" showValue="高钙(1.5mmol/L)"></label-box>
-
- </td>
- <td></td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="40">其他:</td>
- <td width="">
- <div class="under-line"> </div>
- </td>
- </tr>
- </tbody>
- </table>
-
- <!-- <table class="table-box">
- <tbody>
- <tr>
- <td width="55">置换量:</td>
- <td width="40">
- <div class="under-line">
- {{
- prescription.replacement_total
- ? prescription.replacement_total
- : ""
- }}
- </div>
- </td>
- <td width="10">L</td>
- <td width="10"></td>
- <td width="70">治疗方式:</td>
- <td width="50">
- <label-box
- :isChecked="prescription.mode_id == 1 ? true : false"
- showValue="HD"
- ></label-box>
- </td>
- <td width="50">
- <label-box
- :isChecked="prescription.mode_id == 2 ? true : false"
- showValue="HDF"
- ></label-box>
- </td>
- <td width="50">
- <label-box
- :isChecked="prescription.mode_id == 5 ? true : false"
- showValue="HF"
- ></label-box>
- </td>
- <td width="50">
- <label-box
- :isChecked="prescription.mode_id == 4 ? true : false"
- showValue="HP"
- ></label-box>
- </td>
- <td width="80">
- <label-box
- :isChecked="prescription.mode_id == 3 ? true : false"
- showValue="HD+HP"
- ></label-box>
- </td>
-
- <td width="35">其他</td>
- <td width="100">
- <div class="under-line">
-
- <span v-if="prescription.mode_id > 5">{{
- prescription.mode
- }}</span>
- </div>
- </td>
-
- <td width="140">透析器/灌流器型号:</td>
- <td width="">
- <div class="under-line">
- {{ prescription.dialyzer_perfusion_apparatus }}
- </div>
- </td>
- </tr>
- </tbody>
- </table> -->
-
- <!-- <table class="table-box">
- <tbody>
- <tr>
- <td width="70">透析机号:</td>
- <td width="100">
- <div class="under-line">{{ getNumber() }}</div>
- </td>
- <td width=""></td>
-
- <td width="70">医生签名:</td>
- <td width="100">
- <div class="under-line">
- <span v-if="advices.length == 0"></span>
- <span
- v-else-if="
- setAdminUserES(advices[0][0].advice_doctor) == ''
- "
- >{{ getAdminUser(advices[0][0].advice_doctor) }}</span
- >
- <img
- class="es-img"
- :src="setAdminUserES(advices[0][0].advice_doctor)"
- alt=""
- srcset=""
- v-else
- />
-
- </div>
- </td>
- <td width="70">上机护士:</td>
- <td width="100">
- <div class="under-line">
- <span
- v-if="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- ) == ''
- "
- >{{
- getAdminUser(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- )
- }}</span
- >
- <img
- class="es-img"
- :src="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.start_nurse
- )
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- </td>
- </tr>
- </tbody>
- </table> -->
- </td>
- </tr>
- </tbody>
- </table>
-
- <table class="print-table" border="1">
- <tbody>
- <tr>
- <td :rowspan="jilurow" width="30px" class="title-box">
- 透析监测
- </td>
-
- <td width="100">时间</td>
- <td width="40" style="line-height:20px">T<br />℃</td>
- <td width="80" style="line-height:20px">Bp<br />mmHg</td>
- <td width="40" style="line-height:20px">P<br />次/分</td>
- <td width="60" style="line-height:20px">R<br />次/分</td>
- <td width="60" style="line-height:20px">静脉压<br />{{monitors[0] && monitors[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}</td>
- <td width="60" style="line-height:20px">动脉压<br />{{monitors[0] && monitors[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}</td>
- <td width="60" style="line-height:20px">TMP<br />{{monitors[0] && monitors[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}</td>
- <td width="40" style="line-height:20px">机温<br />℃</td>
- <td width="60" style="line-height:20px">血流量<br />ml/min</td>
- <td width="60" style="line-height:20px">电导度<br />mS/cm</td>
- <!-- <td width="60">钠浓度<br/>mmol/L</td>
- <td width="80">透析液温度<br/>℃</td>
- <td width="60">置换率<br/>ml/min</td> -->
-
- <td width="" style="line-height:20px">病情变化及处理</td>
- </tr>
-
- <tr v-for="monitor in monitors" :key="monitor.id">
- <td style="height:30px;">
-
- <!-- <template>
- <span v-if="monitor.monitoring_date">
- {{monitor.monitoring_date | parseTime('{y}-{m}-{d}')}}
- </span>
- </template> -->
- {{ getTime(monitor.operate_time, "{h}:{i}") }}
- </td>
- <td> {{ monitor.temperature ? monitor.temperature : "" }}</td>
- <td>
- <span v-if='monitor.operate_time'>
- {{ monitor.systolic_blood_pressure ? monitor.systolic_blood_pressure : "" }}/
- {{ monitor.diastolic_blood_pressure ? monitor.diastolic_blood_pressure : "" }}
- </span>
- </td>
- <td>
- {{ monitor.pulse_frequency ? monitor.pulse_frequency : "" }}
- </td>
- <td>
- {{ monitor.breathing_rate ? monitor.breathing_rate : "" }}
- </td>
-
- <td v-if="isShowZero && monitor.operate_time">
- {{ monitor.venous_pressure ? monitor.venous_pressure : 0 }}
- </td>
- <td v-else>
- {{ monitor.venous_pressure ? monitor.venous_pressure : "" }}
- </td>
- <td>
- {{ monitor.arterial_pressure ? monitor.arterial_pressure : "" }}
- </td>
- <td v-if="isShowZero && monitor.operate_time">
- {{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : "" }}
- </td>
- <td v-else>
- {{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : "" }}
- </td>
- <td>
- {{ monitor.dialysate_temperature ? monitor.dialysate_temperature : "" }}
- </td>
- <td>
- {{ monitor.blood_flow_volume ? monitor.blood_flow_volume : "" }}
- <!-- {{ monitor.venous_pressure ? monitor.venous_pressure : "" }} -->
- </td>
- <td>
- {{ monitor.conductivity ? monitor.conductivity : "" }}
- </td>
- <!-- <td> {{monitor.sodium_concentration}}</td>
- <td> {{monitor.dialysate_temperature}}</td>
- <td> {{monitor.replacement_rate}}</td> -->
- <td>
- {{ monitor.symptom }} {{ monitor.dispose }} {{ monitor.result }}
- </td>
- </tr>
- </tbody>
- </table>
- <table class="print-table" border="1">
- <tbody>
- <!-- <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>
- <td :rowspan="adviceLength" width="30" class="title-box">
- 医嘱内容
- </td>
- <td style="font-size: 16px" width="10%">时间</td>
- <td style="font-size: 16px" colspan="2">医嘱内容</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>
- </tr>
- <!-- <template v-for="group in doctor_advices" > -->
-
- <tr v-for="(advice, advice_index) in doctor_advices" :key="advice_index">
- <td height="35px">
- <span v-if="advice.start_time">
- {{ getTime(advice.start_time, "{h}:{i}") }}
- </span>
- <!-- <span v-else> <br/> </span> -->
- </td>
- <td 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>
- <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>
- <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>
- <span v-if="setAdminUserES(advice.checker) == ''">{{getAdminUser(advice.checker)}}</span>
- <img style="height:30px;" :src="setAdminUserES(advice.checker)" alt="" srcset="" v-else>
- </td>
- <td>
- <span v-if="advice.execution_time">{{ getTime(advice.execution_time, "{h}:{i}") }}</span>
- </td>
- </tr>
- <!-- </template> -->
- </tbody>
- </table>
-
- <table class="print-table" border="1">
- <tbody>
- <tr>
- <td class="title-box" width="30px">透后评估</td>
- <td>
- <table class="table-box">
- <tbody>
- <!-- <tr>
- <td width="90">实际治疗时间</td>
- <td width="40">
- <div class="under-line">
- {{
- afterdialysis.actual_treatment_hour
- ? afterdialysis.actual_treatment_hour
- : "0"
- }}
- </div>
- </td>
- <td width="10">h</td>
- <td width="40">
- <div class="under-line">
- {{
- afterdialysis.actual_treatment_minute
- ? afterdialysis.actual_treatment_minute
- : "0"
- }}
- </div>
- </td>
- <td width="35">min</td>
- <td></td>
- <td width="75">实际超滤量</td>
- <td width="70">
- <div class="under-line">
- {{
- afterdialysis.actual_ultrafiltration
- ? afterdialysis.actual_ultrafiltration
- : ""
- }}
- </div>
- </td>
- <td width="20">L</td>
- <td></td>
- <td width="60">透后体重</td>
- <td width="50">
- <div class="under-line">
- {{
- afterdialysis.weight_after
- ? afterdialysis.weight_after
- : ""
- }}
- </div>
- </td>
- <td width="20">Kg</td>
- <td></td>
- <td width="95">透析器凝血:</td>
- <td width="220">
- <label-box
- :isChecked="afterdialysis.txqnx == 0 ? true : false"
- showValue="0 级"
- ></label-box>
- <label-box
- :isChecked="afterdialysis.txqnx == 1 ? true : false"
- showValue="Ⅰ 级"
- ></label-box>
- <label-box
- :isChecked="afterdialysis.txqnx == 2 ? true : false"
- showValue="Ⅱ 级"
- ></label-box>
- <label-box
- :isChecked="afterdialysis.txqnx == 3 ? true : false"
- showValue="Ⅲ 级"
- ></label-box>
- </td>
- </tr> -->
- <tr>
- <td width="70">拔针压迫:</td>
- <td width="350">
- <div style="display:flex;justify-content:space-between;">
- <label-box showValue="自己压迫" :isChecked="afterdialysis.hemostasis_opera == 3 ? true : false"></label-box>
-
- <label-box showValue="他人协助" :isChecked="afterdialysis.hemostasis_opera == 2 ? true : false"></label-box>
-
- <label-box showValue="需要护士" :isChecked="afterdialysis.hemostasis_opera == 1 ? true : false"></label-box>
- <label-box showValue="内瘘止血带" :isChecked="afterdialysis.hemostasis_opera == 4 ? true : false"></label-box>
- </div>
- </td>
- <td width="50"></td>
- <td width="70">内瘘震颤:</td>
- <td width="200">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="afterdialysis.internal_fistula.indexOf('震颤-存在') > -1 ? true : false" showValue="存在"></label-box>
- <label-box :isChecked="afterdialysis.internal_fistula.indexOf('震颤-减弱') > -1 ? true : false" showValue="减弱"></label-box>
- <label-box :isChecked="afterdialysis.internal_fistula.indexOf('震颤-无') > -1 ? true : false" showValue="不存在"></label-box>
- </div>
- </td>
- <td></td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="130">拔针后穿刺点渗血:</td>
- <td width="80">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="afterdialysis.puncture_point_oozing_blood == 1 ? true : false" showValue="有"></label-box>
- <label-box :isChecked="afterdialysis.puncture_point_oozing_blood == 2 ? true : false" showValue="无"></label-box>
- </div>
- </td>
- <td width="10"></td>
- <td width="85">穿刺处血肿:</td>
- <td width="80">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="afterdialysis.puncture_point_haematoma == 1 ? true : false" showValue="有"></label-box>
- <label-box :isChecked="afterdialysis.puncture_point_haematoma == 2 ? true : false" showValue="无"></label-box>
- </div>
- </td>
-
- <td width="10"></td>
- <td width="105">中心静脉封管:</td>
- <td width="40">肝素:</td>
- <td width="30">A端</td>
- <td width="30">
- <div class="under-line"> {{ afterdialysis.cvc_a ? afterdialysis.cvc_a : "" }}</div>
- </td>
- <td width="20">ml</td>
- <td width="30">V端</td>
- <td width="30">
- <div class="under-line"> {{ afterdialysis.cvc_v ? afterdialysis.cvc_v : "" }}</div>
- </td>
- <td width="20">ml</td>
- <td></td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="85">透析并发症:</td>
- <td width="600">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="afterdialysis.complication.indexOf('无') > -1 ? true : false" showValue="无"></label-box>
- <label-box :isChecked="afterdialysis.complication.indexOf('头晕') > -1 ? true : false" showValue="头晕"></label-box>
- <label-box :isChecked="afterdialysis.complication.indexOf('头痛') > -1 ? true : false" showValue="头痛"></label-box>
- <label-box :isChecked="afterdialysis.complication.indexOf('呕吐') > -1 ? true : false" showValue="呕吐"></label-box>
- <label-box :isChecked="afterdialysis.complication.indexOf('低血压') > -1 ? true : false" showValue="低血压"></label-box>
- <label-box :isChecked="afterdialysis.complication.indexOf('发热') > -1 ? true : false" showValue="发热"></label-box>
- <label-box :isChecked="afterdialysis.complication.indexOf('抽搐') > -1 ? true : false" showValue="抽搐"></label-box>
- <label-box :isChecked="afterdialysis.complication.indexOf('高血压') > -1 ? true : false" showValue="高血压"></label-box>
- <label-box :isChecked="afterdialysis.complication.indexOf('心律失常') > -1 ? true : false" showValue="心律失常"></label-box>
-
- <!-- <label-box
- :isChecked="
- afterdialysis.complications_index.indexOf('出血') >
- -1
- ? true
- : false
- "
- showValue="出血"
- ></label-box>
- <label-box
- :isChecked="
- afterdialysis.complications_index.indexOf('心衰') >
- -1
- ? true
- : false
- "
- showValue="心衰"
- ></label-box>
- <label-box
- :isChecked="
- afterdialysis.complications_index.indexOf('腹痛') >
- -1
- ? true
- : false
- "
- showValue="腹痛"
- ></label-box> -->
- </div>
- </td>
- <td width="40">其他:</td>
- <td width="">
- <div class="under-line">
- {{ afterdialysis.complication ? getComplication(afterdialysis.complication) : '' }}
- </div>
- </td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="40">凝血:</td>
- <td width="60">透析器:</td>
- <td width="220">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="afterdialysis.cruor.indexOf('透析器-0度') > -1 ? true : false" showValue="无"></label-box>
- <label-box :isChecked="afterdialysis.cruor.indexOf('透析器-Ⅰ度') > -1 ? true : false" showValue="+"></label-box>
- <label-box :isChecked="afterdialysis.cruor.indexOf('透析器-Ⅱ度') > -1 ? true : false" showValue="+ +"></label-box>
- <label-box :isChecked="afterdialysis.cruor.indexOf('透析器-Ⅲ度')> -1 ? true : false" showValue="+ + +"></label-box>
- </div>
- </td>
- <td width="20"></td>
- <td width="70">静脉管道:</td>
- <td width="220">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="afterdialysis.intravenous_tube == 1 ? true : false" showValue="无"></label-box>
- <label-box :isChecked="afterdialysis.intravenous_tube == 2 ? true : false" showValue="+"></label-box>
- <label-box :isChecked="afterdialysis.intravenous_tube == 3 ? true : false" showValue="+ +"></label-box>
- <label-box :isChecked="afterdialysis.intravenous_tube == 4 ? true : false" showValue="+ + +"></label-box>
- </div>
- </td>
- <td width="20"></td>
- <td width="70">动脉管道:</td>
- <td width="220">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="afterdialysis.arterial_tube == 1 ? true : false" showValue="无"></label-box>
- <label-box :isChecked="afterdialysis.arterial_tube == 2 ? true : false" showValue="+"></label-box>
- <label-box :isChecked="afterdialysis.arterial_tube == 3 ? true : false" showValue="+ +"></label-box>
- <label-box :isChecked="afterdialysis.arterial_tube == 4 ? true : false" showValue="+ + +"></label-box>
- </div>
- </td>
- <td></td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box">
- <tbody>
- <tr>
- <td width="70">透后体重:</td>
- <td width="50">
- <div class="under-line">
- {{ afterdialysis.weight_after ? afterdialysis.weight_after : "" }}
- </div>
- </td>
- <td width="20">Kg</td>
- <td width="20"></td>
- <td width="90">实际超滤总量</td>
- <td width="40">
- <div class="under-line">
- {{ afterdialysis.actual_ultrafiltration ? afterdialysis.actual_ultrafiltration : "" }}
- </div>
- </td>
- <td width="10">ml</td>
- <td width="20"></td>
- <td width="90">实际治疗时间</td>
- <td width="40">
- <div class="under-line">
- {{ afterdialysis.actual_treatment_hour ? afterdialysis.actual_treatment_hour : "0" }}
- </div>
- </td>
- <td width="10">h</td>
- <td width="40">
- <div class="under-line">
- {{ afterdialysis.actual_treatment_minute ? afterdialysis.actual_treatment_minute : "0" }}
- </div>
- </td>
- <td width="35">min</td>
- <td width="40">去向:</td>
- <td width="160">
- <div style="display:flex;justify-content:space-between;">
- <label-box :isChecked="afterdialysis.patient_gose == 1 ? true : false" showValue="回家"></label-box>
- <label-box :isChecked="afterdialysis.patient_gose == 2 ? true : false" showValue="留观"></label-box>
- <label-box :isChecked="afterdialysis.patient_gose == 3 ? true : false" showValue="住院"></label-box>
- </div>
- </td>
- <td>
- <div class="under-line"> </div>
- </td>
- </tr>
- </tbody>
- </table>
-
-
-
- <!-- <table class="table-box">
- <tbody>
- <tr>
- <td width="530">
- <label-box
- :isChecked="
- afterdialysis.patient_gose == 3 &&
- afterdialysis.observation_content.indexOf(
- '内瘘搏动/渗血'
- ) > -1
- ? true
- : false
- "
- showValue="内瘘搏动/渗血"
- ></label-box>
- <label-box
- :isChecked="
- afterdialysis.patient_gose == 3 &&
- afterdialysis.observation_content.indexOf(
- '导管固定/穿刺口渗血'
- ) > -1
- ? true
- : false
- "
- showValue="导管固定/穿刺口渗血"
- ></label-box>
- <label-box
- :isChecked="
- afterdialysis.patient_gose == 3 &&
- afterdialysis.observation_content.indexOf(
- '动静脉直接穿刺口渗血/肢端循环情况'
- ) > -1
- ? true
- : false
- "
- showValue="动静脉直接穿刺口渗血/肢端循环情况"
- ></label-box>
- </td>
- <td width="40">其他:</td>
- <td width="">
- <div class="under-line">
-
- <span v-if="afterdialysis.patient_gose == 3"
- >{{ afterdialysis.observation_content_other }}
- </span>
- </div>
- </td>
- </tr>
- </tbody>
- </table> -->
-
- <!-- <table class="table-box">
- <tbody>
- <tr>
- <td width="150">当班责任(核对)护士:</td>
- <td width="100">
- <div class="under-line">
-
- <span
- v-if="setAdminUserES(afterdialysis.creater) == ''"
- >{{ getAdminUser(afterdialysis.creater) }}</span
- >
- <img
- class="es-img"
- :src="setAdminUserES(afterdialysis.creater)"
- alt=""
- srcset=""
- v-else
- />
- </div>
- </td>
- <td width=""></td>
- <td width="70">下机护士:</td>
- <td width="100">
- <div class="under-line">
- <span
- v-if="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.finish_nurse
- ) == ''
- "
- >{{
- getAdminUser(
- dialysisOrder == null
- ? 0
- : dialysisOrder.finish_nurse
- )
- }}</span
- >
- <img
- class="es-img"
- :src="
- setAdminUserES(
- dialysisOrder == null
- ? 0
- : dialysisOrder.finish_nurse
- )
- "
- alt=""
- srcset=""
- v-else
- />
- </div>
- </td>
- </tr>
- </tbody>
- </table> -->
- </td>
- </tr>
- </tbody>
- </table>
-
- <table class="table-box" style="margin-top: 10px;">
- <tbody>
- <tr>
- <td width="300"></td>
- <td width="30">医生</td>
- <td width="80">
- <div class="under-line">
-
- <span v-if="setAdminUserES(prescription==null?0:(prescription.prescription_doctor?prescription.prescription_doctor:'')) == ''"> {{ getAdminUser(prescription==null?0:(prescription.prescription_doctor?prescription.prescription_doctor:'')) }} </span>
- <img style="height:30px;" :src="setAdminUserES(prescription==null?0:(prescription.prescription_doctor?prescription.prescription_doctor:''))" alt="" srcset="" v-else />
- </div>
- </td>
- <td width="50">责任护士</td>
- <td width="80">
- <div class="under-line">
-
- <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.start_nurse)}}</span>
- <img class="es-img" style="height:30px" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse)" alt="" srcset="" v-else>
- </div>
- </td>
- <td width="50">穿刺护士</td>
- <td width="80">
- <div class="under-line">
-
- <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.puncture_nurse)}}</span>
- <img class="es-img" style="height:30px" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse)" alt="" srcset="" v-else>
- </div>
- </td>
- <td width="50">核对护士</td>
- <td width="80">
- <div class="under-line">
-
- <span v-if="(dialysisOrder==null?0:dialysisOrder.start_nurse) != check.modifier">
- <span 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 />
- </span>
- <span v-else>
- <span 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 />
- </span>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
-
- <!-- <table class="print-table-no" border="1" count="0">
- <tbody>
- <tr>
- <td width="40px">时间</td>
- <td width="120px">医嘱<br />内容</td>
- <td width="80px">医生<br />签名</td>
- <td width="80px">执行<br />护士</td>
- <td width="55px">执行<br />时间</td>
- <td width="75px">核对<br />护士</td>
- <td width="10px"></td>
- <td width="40px">时间</td>
- <td width="120px">医嘱<br />内容</td>
- <td width="80px">医生<br />签名</td>
- <td width="80px">执行<br />护士</td>
- <td width="55px">执行<br />时间</td>
- <td width="75px">核对<br />护士</td>
- </tr>
- <tr v-for="(advice, index) in advices" :key="index">
- <td height="10px">
- <span v-if="advice[0].start_time">
- {{ getTime(advice[0].start_time, "{h}:{i}") }}
- </span>
- <span v-else> <br /> </span>
- </td>
- <td class="advice-name">
- <span v-if="advice[0].parent_id > 0">└</span>
- <span>{{ advice[0].advice_name }}</span>
- <span v-if="advice[0].advice_desc"
- >{{ advice[0].advice_desc }}{{ advice[0].drug_spec_unit }}</span
- >
-
- <span v-if="advice[0].prescribing_number"
- >* {{ advice[0].prescribing_number
- }}{{ advice[0].prescribing_number_unit }}</span
- >
- <span v-if="advice[0].single_dose != 0"
- >单次用量 {{ advice[0].single_dose
- }}{{ advice[0].single_dose_unit }}</span
- >
- <span>{{ advice[0].delivery_way }}</span>
- <span>{{ advice[0].execution_frequency }}</span>
- <div
- v-for="(child, childindex) in advice[0].children"
- :key="childindex"
- class="advice-children"
- >
- <div>▲</div>
- <div>
- <span>{{ child.advice_name }}</span>
-
- <span v-if="child.advice_desc"
- >{{ child.advice_desc }}{{ child.drug_spec_unit }}</span
- >
- <span v-if="child.prescribing_number"
- >* {{ child.prescribing_number
- }}{{ child.prescribing_number_unit }}</span
- >
- <span v-if="child.single_dose != 0"
- >单次用量 {{ child.single_dose
- }}{{ child.single_dose_unit }}</span
- >
- </div>
- </div>
- </td>
-
- <td>
- <span v-if="setAdminUserES(advice[0].advice_doctor) == ''">{{
- getAdminUser(advice[0].advice_doctor)
- }}</span>
- <img
- class="es-img"
- :src="setAdminUserES(advice[0].advice_doctor)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- <td>
-
- <span v-if="setAdminUserES(advice[0].execution_staff) == ''">{{
- getAdminUser(advice[0].execution_staff)
- }}</span>
- <img
- class="es-img"
- :src="setAdminUserES(advice[0].execution_staff)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- <td>
- <span v-if="advice[0].execution_time">
- {{ getTime(advice[0].execution_time, "{h}:{i}") }}
- </span>
- </td>
- <td>
-
- <span v-if="setAdminUserES(advice[0].checker) == ''">{{
- getAdminUser(advice[0].checker)
- }}</span>
- <img
- class="es-img"
- :src="setAdminUserES(advice[0].checker)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- <td></td>
- <td v-if="advice[1] != undefined">
- <span v-if="advice[1].start_time">
- {{ getTime(advice[1].start_time, "{h}:{i}") }}
- </span>
- </td>
- <td v-else>
- <span></span>
- </td>
- <td class="advice-name" v-if="advice[1] != undefined">
- <span>{{ advice[1].advice_name }}</span>
- <span
- >{{ advice[1].advice_desc }}{{ advice[1].drug_spec_unit }}</span
- >
- <span v-if="advice[1].prescribing_number"
- >* {{ advice[1].prescribing_number
- }}{{ advice[1].prescribing_number_unit }}</span
- >
- <span v-if="advice[1].single_dose != 0"
- >单次用量 {{ advice[1].single_dose
- }}{{ advice[1].single_dose_unit }}</span
- >
- <span>{{ advice[1].delivery_way }}</span>
- <span>{{ advice[1].execution_frequency }}</span>
-
- <div
- v-for="(child, childindex) in advice[1].children"
- :key="childindex"
- class="advice-children"
- >
- <div>▲</div>
- <div>
- <span>{{ child.advice_name }}</span>
- <span>{{ child.advice_desc }}</span>
- <span v-if="child.advice_desc"
- >{{ child.advice_desc }}{{ child.drug_spec_unit }}</span
- >
- <span v-if="child.prescribing_number"
- >* {{ child.prescribing_number
- }}{{ child.prescribing_number_unit }}</span
- >
- <span v-if="child.single_dose != 0"
- >单次用量 {{ child.single_dose
- }}{{ child.single_dose_unit }}</span
- >
- </div>
- </div>
- </td>
- <td v-else>
- <span></span>
- </td>
- <td v-if="advice[1] != undefined">
-
- <span v-if="setAdminUserES(advice[1].advice_doctor) == ''">{{
- getAdminUser(advice[1].advice_doctor)
- }}</span>
- <img
- class="es-img"
- :src="setAdminUserES(advice[1].advice_doctor)"
- alt=""
- srcset=""
- v-else
- />
- </td>
-
- <td v-else>
- <span></span>
- </td>
-
- <td v-if="advice[1] != undefined">
-
- <span v-if="setAdminUserES(advice[1].execution_staff) == ''">{{
- getAdminUser(advice[1].execution_staff)
- }}</span>
- <img
- class="es-img"
- :src="setAdminUserES(advice[1].execution_staff)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- <td v-else>
- <span></span>
- </td>
-
- <td v-if="advice[1] != undefined">
- <span v-if="advice[1].execution_time">{{
- getTime(advice[1].execution_time, "{h}:{i}")
- }}</span>
- </td>
- <td v-else>
- <span></span>
- </td>
-
- <td v-if="advice[1] != undefined">
- <span v-if="setAdminUserES(advice[1].checker) == ''">{{
- getAdminUser(advice[1].checker)
- }}</span>
- <img
- class="es-img"
- :src="setAdminUserES(advice[1].checker)"
- alt=""
- srcset=""
- v-else
- />
- </td>
- <td v-else>
- <span></span>
- </td>
- </tr>
-
- </tbody>
- </table> -->
-
- <!-- <table class="table-box" style="margin-top: 10px;">
- <tbody>
- <tr>
- <td width="" style="font-size:13px">
- 注:透析器凝血评价标准:“0 级” 无凝血或数条纤维束凝血,“Ⅰ 级”
- 少于10%纤维凝血,“Ⅱ 级” 少于50%纤维凝血,“Ⅲ 级” 大于50%纤维凝血。
- </td>
- </tr>
- </tbody>
- </table> -->
- </div>
- </div>
- </template>
-
- <script>
- 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'
-
- export default {
- name: 'dialysisPrintOrderOne',
- components: {
- // DialysisPrintOrderOne,
- // DialysisPrintOrderTwo,
- 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: {},
- dialysisOrder: {
- DeviceNumber: []
- },
- 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: {},
-
- queryParams: {
- xtdate: '',
- xtno: ''
- },
- 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: ''
- },
- prescription: {
- dialysate_formulation_name: '',
- device: {}
- },
- advices: [],
- users: [],
- monitors: [],
- summary: {},
- receiverTreatmentAccess: {},
- org_template_info: {},
- isShowZero: false,
-
- doctor_advices: [],
- advice_groups: [],
-
- 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: ''
- },
- doctorForm: {
- doctor: '',
- url: ''
- }
- }
- },
- methods: {
- getComplication(complication){
- if(complication.indexOf(',') == -1){
- let str = complication
- if(['无','头晕','头痛','呕吐','低血压','发热','抽搐','高血压','心律失常'].indexOf(str) == -1){
- return str
- }
- }else if(complication.indexOf(',') > -1){
- let str = complication
- if(['无','头晕','头痛','呕吐','低血压','发热','抽搐','高血压','心律失常'].indexOf(str) == -1){
- let newStr = ''
- str.split(',').map(item => {
- if(['无','头晕','头痛','呕吐','低血压','发热','抽搐','高血压','心律失常'].indexOf(item) == -1){
- newStr += item + ','
- }
- })
- return newStr.substring(0, newStr.length - 1)
- }
- }
- },
- 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 ''
- },
- 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 20px 20px 20px}.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:center;border-collapse:collapse;font-size:14px}.dialysis-print-order .under-line{border-bottom:1px solid #999;width:95%;text-align:center;margin-left:2px}.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) {
- if(this.patientInfo.DialysisSchedule.device_zone.name.indexOf("区") > -1){
- return (
- this.patientInfo.DialysisSchedule.device_zone.name +
- this.dialysisOrder.DeviceNumber.number
- );
- } else {
- return (
- this.patientInfo.DialysisSchedule.device_zone.name + "区" +
- this.dialysisOrder.DeviceNumber.number
- );
- }
-
- } else {
- if(this.patientInfo.DialysisSchedule.device_zone.name.indexOf("区") > -1){
- return (
- this.patientInfo.DialysisSchedule.device_zone.name +
- this.patientInfo.DialysisSchedule.device_number.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 => {
- if (response.data.state == 1) {
- this.adminUser = response.data.data.users
- this.users = response.data.data.users
- this.patientInfo = response.data.data.patientInfo
- this.patientInfo.birth = uParseTime(
- this.patientInfo.birthday,
- '{y}-{m}-{d}'
- )
- // 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.predialysis = response.data.data.PredialysisEvaluation
- console.log(11111111111111111111111, 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(22222222222222222222222222, response.data.data)
- this.operators = response.data.data.operators
- this.dialysisOrder =
- response.data.data.dialysisOrder === null
- ? null
- : response.data.data.dialysisOrder
-
- // 医生
- var doctorname = response.data.data.DoctorName
- // console.log('医师签名', doctorname)
- this.doctorForm.doctor = doctorname.user_name
- this.doctorForm.url = doctorname.url
-
- 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
- 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
- // console.log('hhhhhhhhhhhh', this.advices)
- this.monitors = response.data.data.monitors
- // console.log('哈哈哈哈哈哈哈', this.monitors)
- console.log(response.data.data)
- this.summary = response.data.data.summary
- this.org_template_info = response.data.data.org_template_info
- // 配置超滤量和置换量是否要显示0还是空
- if (this.org_template_info.org_id == 9535) {
- this.isShowZero = true
- }
- if (this.monitors.length < 13) {
- var nl = 13 - this.monitors.length
- for (let index = 0; index < nl; index++) {
- this.monitors.push([])
- }
- }
- 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 obj = { advice_name: '', start_time: '' }
- var obj1 = { advice_name: '', start_time: '' }
- var obj2 = { advice_name: '', start_time: '' }
- var obj3 = { advice_name: '', start_time: '' }
- this.doctor_advices.push(obj)
- this.doctor_advices.push(obj1)
- this.doctor_advices.push(obj2)
- this.doctor_advices.push(obj3)
- this.doctor_advices.push(obj3)
- this.doctor_advices.push(obj3)
- this.doctor_advices.push(obj3)
- }
- if (this.doctor_advices.length === 1) {
- var obj = { advice_name: '', start_time: '' }
- var obj1 = { advice_name: '', start_time: '' }
- var obj2 = { advice_name: '', start_time: '' }
- this.doctor_advices.push(obj)
- this.doctor_advices.push(obj1)
- this.doctor_advices.push(obj2)
- this.doctor_advices.push(obj2)
- this.doctor_advices.push(obj2)
- this.doctor_advices.push(obj2)
- }
- if (this.doctor_advices.length === 2) {
- var obj = { advice_name: '', start_time: '' }
- var obj1 = { advice_name: '', start_time: '' }
- this.doctor_advices.push(obj)
- this.doctor_advices.push(obj1)
- this.doctor_advices.push(obj1)
- this.doctor_advices.push(obj1)
- this.doctor_advices.push(obj1)
- }
- if (this.doctor_advices.length === 3) {
- // eslint-disable-next-line no-redeclare
- var obj = { advice_name: '', start_time: '' }
- this.doctor_advices.push(obj)
- this.doctor_advices.push(obj)
- this.doctor_advices.push(obj)
- this.doctor_advices.push(obj)
- }
- if (this.doctor_advices.length === 4) {
- // eslint-disable-next-line no-redeclare
- var obj = { advice_name: '', start_time: '' }
- this.doctor_advices.push(obj)
- this.doctor_advices.push(obj)
- this.doctor_advices.push(obj)
- }
- if (this.doctor_advices.length === 5) {
- // eslint-disable-next-line no-redeclare
- var obj = { advice_name: '', start_time: '' }
- this.doctor_advices.push(obj)
- this.doctor_advices.push(obj)
- }
- if (this.doctor_advices.length === 6) {
- // eslint-disable-next-line no-redeclare
- var obj = { advice_name: '', start_time: '' }
- this.doctor_advices.push(obj)
- }
- this.adviceLength = this.doctor_advices.length + 1
-
- 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
- }
- 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)
- }
- }
- 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 (val.birthday != 0) {
- return jsGetAge(val.birth, '-')
- }
- return ''
- },
- newAdviceGroupObject: function() {
- return Object.assign(
- {},
- {
- group_no: 0,
- // advice_doctor: 0,
- // start_time: 0,
- advices: []
- // exec_staff: 0,
- // exec_time: 0,
- // checker: 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() {
- 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.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')
-
- // 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
- const xtno = this.$route.query && this.$route.query.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>
- .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 20px 0px 20px;
- }
-
- .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: 40px;
- font-size: 14px;
- }
-
- .dialysis-print-order .print-table-no {
- width: 100%;
- text-align: center;
- border-collapse: collapse;
- font-size: 14px;
- }
-
- .dialysis-print-order .under-line {
- border-bottom: 1px solid #999;
- width: 95%;
- text-align: center;
- margin-left: 2px;
- }
-
- .dialysis-print-order .title-box {
- text-align: center;
- font-size: 16px;
- }
-
- .dialysis-print-order .radio-lebel-box {
- font-weight: 400;
- cursor: pointer;
- }
-
- .dialysis-print-order .radio-no {
- opacity: 0;
- outline: none;
- position: absolute;
- margin: 0;
- width: 0;
- height: 0;
- z-index: -1;
- }
-
- .dialysis-print-order .radio-inner {
- white-space: nowrap;
- cursor: pointer;
- outline: none;
- 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 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
- background-color 0.25s cubic-bezier(0.71, -0.46, 0.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;
- }
-
- .dialysis-print-order .print-table tr td {
- padding: 1px 1px;
- /*line-height: 25px;*/
- }
-
- .es-img {
- height: 25px;
- }
-
- .advice-name {
- text-align: left;
- }
-
- .advice-children {
- display: flex;
- }
-
- .title-box-pro {
- border: 0 #fff;
- line-height: 25px;
- height: 25px;
- text-align: left;
- padding-left: 10px !important;
- }
- .title-box-pro-tr {
- border: 0 #fff;
- }
- .text-align-left {
- text-align: left !important;
- padding-left: 10px !important;
- font-size: 14px !important;
- line-height: 25px;
- }
- .print-table-tr-new td {
- line-height: 20px !important;
- }
- .border-top-solid {
- border: solid 1px #000;
- }
- .print-template-two tr {
- line-height: 30px;
- }
- </style>
|