doctorDesk.vue 311KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109
  1. <template>
  2. <div class="main-contain new-main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs='crumbs'></bread-crumb>
  5. </div>
  6. <div class="app-container" style="display:flex;flex: 1;padding: 10px 20px 0px 20px;">
  7. <div class="mainLeft">
  8. <el-date-picker
  9. v-model="record_date"
  10. prefix-icon="el-icon-date"
  11. @change="changeTimeTwo"
  12. :editable="false"
  13. style="width: 100%;"
  14. type="date"
  15. placeholder="选择开始时间"
  16. align="right"
  17. format="yyyy-MM-dd"
  18. value-format="yyyy-MM-dd">
  19. </el-date-picker>
  20. <div class="mainCell" style="justify-content: space-between;">
  21. <p style="font-size:14px;">未就诊:<span>{{ cal_one }}</span>人</p>
  22. <p style="font-size:14px;">已就诊:<span>{{ cal_two }}</span>人</p>
  23. </div>
  24. <div class="mainCell" v-if="org_id == 10721 || org_id == 0">
  25. <el-radio-group v-model="patient_type" @change="changePatientType">
  26. <el-radio :label="1">血透</el-radio>
  27. <el-radio :label="2">腹透</el-radio>
  28. </el-radio-group>
  29. </div>
  30. <div class="mainCell">
  31. <el-radio-group v-model="schedule_type" v-if="patient_type == 1" @change="changeScheduleType">
  32. <el-radio :label="1">上午</el-radio>
  33. <el-radio :label="2">下午</el-radio>
  34. <el-radio :label="3">晚上</el-radio>
  35. <el-radio :label="0">全部</el-radio>
  36. </el-radio-group>
  37. </div>
  38. <div class="mainCell">
  39. <el-radio-group v-model="radio" @change="change">
  40. <el-radio :label="1">未就诊</el-radio>
  41. <el-radio :label="2">已就诊</el-radio>
  42. <el-radio :label="0">全部</el-radio>
  43. </el-radio-group>
  44. </div>
  45. <div class="mainCell" style="margin-bottom:10px;">
  46. <el-input size="small" placeholder="请输入姓名或就诊号" @input="searchAction"
  47. @keyup.enter.native='searchAction'
  48. v-model="search_input" class="filter-item"/>
  49. <el-button size="small" style="margin-left:10px;" class="filter-item" type="primary"
  50. @click="searchAction">
  51. 搜索
  52. </el-button>
  53. </div>
  54. <div>
  55. <el-table v-if="radio == 1" :data="un_cure_data" :height="tableHeight" @row-click='choosePatient'
  56. @current-change='currentChange' border style="width: 100%;"
  57. :row-style="{ color: '#303133' }"
  58. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
  59. highlight-current-row
  60. ref="tab"
  61. >
  62. <el-table-column prop="name" label="姓名" width='89'>
  63. <template slot-scope="scope">
  64. <span>{{ scope.row.name }}</span>
  65. <span class="futou" v-if="scope.row.patient_type==4">腹</span>
  66. </template>
  67. </el-table-column>
  68. <el-table-column prop="name" label="就诊号" width="110">
  69. <template slot-scope="scope">{{ scope.row.number ? scope.row.number : '' }}
  70. </template>
  71. </el-table-column>
  72. </el-table>
  73. <el-table v-if="radio == 2" :data="cure_data" :height="tableHeight" @row-click='choosePatient'
  74. @current-change='currentChange' border style="width: 100%;"
  75. :row-style="{ color: '#303133' }"
  76. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
  77. highlight-current-row
  78. ref="tab"
  79. >
  80. <el-table-column prop="name" label="姓名" width='89'>
  81. <template slot-scope="scope">
  82. <span>{{ scope.row.name }}</span>
  83. <span class="futou" v-if="scope.row.patient_type==4">腹</span>
  84. </template>
  85. </el-table-column>
  86. <el-table-column prop="name" label="就诊号" width="110">
  87. <template slot-scope="scope">{{ scope.row.number ? scope.row.number : '' }}
  88. </template>
  89. </el-table-column>
  90. </el-table>
  91. <el-table v-if="radio == 0" :data="all_data" :height="tableHeight" @row-click='choosePatient'
  92. @current-change='currentChange' border style="width: 100%;"
  93. :row-style="{ color: '#303133' }"
  94. :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
  95. highlight-current-row
  96. ref="tab"
  97. >
  98. <el-table-column prop="name" label="姓名" width='89'>
  99. <template slot-scope="scope">
  100. <span>{{ scope.row.name }}</span>
  101. <span class="futou" v-if="scope.row.patient_type==4">腹</span>
  102. </template>
  103. </el-table-column>
  104. <el-table-column prop="name" label="就诊号" width="110">
  105. <template slot-scope="scope">{{ scope.row.number ? scope.row.number : '' }}
  106. </template>
  107. </el-table-column>
  108. </el-table>
  109. </div>
  110. </div>
  111. <div class="mainRight">
  112. <div class="mainHeader">
  113. <el-tabs v-model="titleType" @tab-click="handleClick"
  114. style="position: fixed;width: calc(100% - 490px);background:#fff;">
  115. <el-tab-pane label="电子处方" name="电子处方"></el-tab-pane>
  116. <el-tab-pane label="透析记录" name="透析记录">
  117. </el-tab-pane>
  118. <el-tab-pane label="电子病历" name="电子病历"></el-tab-pane>
  119. <el-tab-pane label="透析历史" name="透析历史"></el-tab-pane>
  120. </el-tabs>
  121. <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子处方'">
  122. <el-button v-if="org_id == 10206" size="small" ref="button_three" @click="open_four()" type="primary">刷新库存</el-button>
  123. <el-button size="small" ref="button_one" @click="open(1)" type="primary"
  124. v-loading="saveLoading">保存
  125. </el-button>
  126. <el-button size="small" ref="button_three" @click="open_two()" type="primary">处方调用</el-button>
  127. <el-button size="small" @click="open_three()" type="primary">保存模板</el-button>
  128. <el-button size="small" @click="openPrint" type="primary">打印</el-button>
  129. </div>
  130. <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子病历'">
  131. <el-button size="small" @click="opentwo(1)" type="primary">保存</el-button>
  132. <el-button size="small" @click="opentwo(2)" type="primary">打印</el-button>
  133. <el-button size="small" @click="opentwo(3)" type="primary">病历调用</el-button>
  134. <el-button size="small" @click="opentwo(4)" type="primary">存模板</el-button>
  135. </div>
  136. <div class="mainCell fixedCellOne" style="float:right" v-if="titleType == '透析记录'">
  137. <el-button size="small" ref="button_one" @click="printOrderOne" type="primary">打印上机单
  138. </el-button>
  139. </div>
  140. </div>
  141. <!-- <div> -->
  142. <desk-prescription v-on:setData="setData" :diagnoses="diagnoses" :loading="isloading"
  143. :sick="sick" :record_date="record_date"
  144. :drugs="drugs"
  145. :allDrugs="allDrugs"
  146. :advices_template="advices_template"
  147. :additions="additions"
  148. :doctors="doctors"
  149. :department="department"
  150. v-on:change="changeOther"
  151. v-on:month="changeMonth"
  152. v-on:day="changeDay"
  153. :month_prescriptions="month_prescriptions"
  154. :org_id="org_id"
  155. ref="prescriptions" :prescriptions="prescriptions" :patientInfo="patientInfo"
  156. v-on:getSunziValue="getSunziValue"
  157. :hisPatientInfo="hisPatientInfo" :patient_diagnoses="patient_diagnoses"
  158. @event1="changetwo($event)" @editKeepLoad="editKeepLoad"
  159. v-if="titleType == '电子处方'" style="flex:1;"></desk-prescription>
  160. <!-- </div> -->
  161. <!--<desk-prescription ref="prescriptions" :prescriptions="prescriptions" :patientInfo="patientInfo" :hisPatientInfo="hisPatientInfo"-->
  162. <!--v-if="titleType == '处方'" style="flex:1;"></desk-prescription>-->
  163. <!-- <desk-prescription v-on:setData="setData" :diagnoses="diagnoses" :loading="isloading"
  164. :sick="sick" :record_date="record_date"
  165. :drugs="drugs"
  166. :allDrugs="allDrugs"
  167. :advices_template="advices_template"
  168. :additions="additions"
  169. :doctors="doctors"
  170. :department="department"
  171. v-on:change="changeOther"
  172. v-on:month="changeMonth"
  173. v-on:day="changeDay"
  174. :month_prescriptions="month_prescriptions"
  175. :org_id="org_id"
  176. ref="prescriptions" :prescriptions="prescriptions" :patientInfo="patientInfo"
  177. v-on:getSunziValue="getSunziValue"
  178. :hisPatientInfo="hisPatientInfo" :patient_diagnoses="patient_diagnoses"
  179. @event1="changetwo($event)" @editKeepLoad="editKeepLoad"
  180. v-if="titleType == '电子处方'" style="flex:1;"></desk-prescription> -->
  181. <desk-record :record_date="record_date" :case_history="case_history" :patientInfo="patientInfo"
  182. :hisPatientInfo="hisPatientInfo" v-if="titleType == '电子病历'" :detalid="detalid" :befor="befor"
  183. :LastCaseHistory="LastCaseHistory" :prescriptions="prescriptions" :prescriptionInfo="prescriptionInfo"
  184. ref="child"></desk-record>
  185. <medicalRecord ref='medicalRecord' @func="getMsgFormSon"></medicalRecord>
  186. <saveRecordTemplate ref='saveRecordTemplate'></saveRecordTemplate>
  187. <!--<dialysis-index v-if="titleType == '透析记录'" :record_date="record_date" :patientid='patientid'></dialysis-index>-->
  188. <dialysis-index v-if="titleType == '透析记录'" :record_date="record_date" :patientid='patientid'
  189. :dialysisShow="dialysisShow"></dialysis-index>
  190. <dialysishistory v-if="titleType == '透析历史'" :patientid='patientid' ref="childOne"></dialysishistory>
  191. </div>
  192. </div>
  193. <!-- 电子病历打印 -->
  194. <el-dialog
  195. title="打印"
  196. :visible.sync="centerDialogVisible"
  197. width="620px"
  198. center>
  199. <el-button @click="allCheck">全选</el-button>
  200. <div style="text-align:center;margin-top:10px;font-weight:bold;font-size:20px;">处方笺打印</div>
  201. <el-table
  202. ref="multipleTable1"
  203. :data="tableData1"
  204. tooltip-effect="dark"
  205. style="width: 600px"
  206. @selection-change="handleSelectionChange1">
  207. <el-table-column
  208. align='center'
  209. type="selection"
  210. width="50">
  211. </el-table-column>
  212. <el-table-column
  213. align='center'
  214. label="处方编号"
  215. width="120">
  216. <template slot-scope="scope">
  217. <span>处方 {{ scope.$index + 1 }}</span>
  218. </template>
  219. </el-table-column>
  220. <el-table-column label="处方号">
  221. <template slot-scope="scope">
  222. <span>
  223. <el-input v-model="scope.row.prescription_number" :disabled="true"></el-input>
  224. </span>
  225. </template>
  226. </el-table-column>
  227. </el-table>
  228. <div style="text-align:center;margin-top:10px;font-weight:bold;font-size:20px;">治疗单打印</div>
  229. <el-table
  230. ref="multipleTable2"
  231. :data="tableData2"
  232. tooltip-effect="dark"
  233. style="width: 600px"
  234. @selection-change="handleSelectionChange2">
  235. <el-table-column
  236. align='center'
  237. type="selection"
  238. width="50">
  239. </el-table-column>
  240. <el-table-column
  241. align='center'
  242. label="治疗单编号"
  243. width="120">
  244. <template slot-scope="scope">
  245. <span>治疗 {{ scope.$index + 1 }}</span>
  246. </template>
  247. </el-table-column>
  248. <el-table-column label="治疗单号">
  249. <template slot-scope="scope">
  250. <span>
  251. <el-input v-model="scope.row.prescription_number" :disabled="true"></el-input>
  252. </span>
  253. </template>
  254. </el-table-column>
  255. </el-table>
  256. <div style="text-align:center;margin-top:10px;font-weight:bold;font-size:20px;">检验单打印</div>
  257. <el-table
  258. ref="multipleTable3"
  259. :data="tableData3"
  260. tooltip-effect="dark"
  261. style="width: 600px"
  262. @selection-change="handleSelectionChange3">
  263. <el-table-column
  264. align='center'
  265. type="selection"
  266. width="50">
  267. </el-table-column>
  268. <el-table-column
  269. align='center'
  270. label="处方编号"
  271. width="120">
  272. <template slot-scope="scope">
  273. <span>检验单</span>
  274. </template>
  275. </el-table-column>
  276. <el-table-column label="检验单号">
  277. <template slot-scope="scope">
  278. <span>
  279. <el-input v-model="scope.row.prescription_number" :disabled="true"></el-input>
  280. </span>
  281. </template>
  282. </el-table-column>
  283. </el-table>
  284. <el-dialog
  285. class="centerDialog"
  286. width="600px"
  287. title="打印"
  288. :visible.sync="innerVisible"
  289. append-to-body>
  290. <template>
  291. <el-button
  292. style="float:right;"
  293. size="small"
  294. icon="el-icon-printer"
  295. @click="printThisPage"
  296. type="primary"
  297. >打印
  298. </el-button
  299. >
  300. </template>
  301. <div id='printMain'>
  302. <print ref="print" v-if="selecting_schs1.length > 0" :paramsObj='paramsObj'
  303. :newHisPatient="hisPatientInfo"></print>
  304. <treatPrint ref="treatPrint" v-if="selecting_schs2.length > 0" :paramsObj='paramsObj2'
  305. :newHisPatient="hisPatientInfo"></treatPrint>
  306. <checkPrint ref="checkPrint" v-if="selecting_schs3.length > 0" :paramsObj='paramsObj3'
  307. :newHisPatient="hisPatientInfo"></checkPrint>
  308. </div>
  309. <template>
  310. <el-button
  311. style="float:right;"
  312. size="small"
  313. icon="el-icon-printer"
  314. @click="printThisPage"
  315. type="primary"
  316. >打印
  317. </el-button
  318. >
  319. </template>
  320. </el-dialog>
  321. <span slot="footer" class="dialog-footer">
  322. <el-button @click="centerDialogVisible = false">取 消</el-button>
  323. <el-button type="primary" @click="savePrint">确 定</el-button>
  324. </span>
  325. </el-dialog>
  326. <!-- <el-dialog
  327. class="centerDialog"
  328. width="600px"
  329. title="打印"
  330. :visible.sync="checkVisible">
  331. <checkPrint v-if="index == 20" :paramsObj='paramsObj'></checkPrint>
  332. </el-dialog> -->
  333. <!-- 电子病历打印 -->
  334. <el-dialog
  335. class="centerDialog"
  336. width="600px"
  337. title="打印"
  338. :visible.sync="recordVisible">
  339. <recordPrint :patientid="patientid" ref="recordPrint" :record_date="record_date">
  340. </recordPrint>
  341. </el-dialog>
  342. <!-- 透析记录 打印上机单 -->
  343. <el-dialog
  344. :visible.sync="startVisibility"
  345. :close-on-click-modal="false"
  346. :close-on-press-escape="false"
  347. :show-close="false"
  348. width="30%"
  349. >
  350. <el-button
  351. size="small"
  352. icon="el-icon-printer"
  353. type="primary"
  354. @click="printAction"
  355. style="float:right"
  356. >打印
  357. </el-button
  358. >
  359. <div id="print_content">
  360. <div class="print_main_content">
  361. <div class="table_panel">
  362. <div v-for="(main_collection,index) in printList" :key="index" style="page-break-after: always;">
  363. <div class="signPrint" style="width: 360px;font-size:16px;">
  364. <div style="margin-left:50px;">姓名:
  365. <span>{{ main_collection.patient.name }} </span>
  366. ({{ main_collection.patient.dialysis_no }},{{ getNewAge(main_collection.patient.id_card_no) }}岁<span v-if="main_collection.patient.height>0">,{{ main_collection.patient.height }}cm</span>)
  367. </div>
  368. <div class="printCell" style="display:flex;" v-if="org_id ==10598 || org_id == 0">
  369. <div style="">透析模式:
  370. <span>{{getModeName(main_collection.prescription.mode_id) }}</span>
  371. </div>
  372. </div>
  373. <div class="printCell" style="display:flex;">
  374. <span style="display: block;width: 45%;">
  375. 床号:{{ main_collection.number.number }}
  376. <span style="width:auto;" v-if="main_collection.schedule_type == 1">上午</span>
  377. <span style="width:auto;" v-if="main_collection.schedule_type == 2">下午</span>
  378. <span style="width:auto;" v-if="main_collection.schedule_type == 3">晚上</span>
  379. </span>
  380. <span style="display: block;width: 50%;">{{ printDate }}</span>
  381. </div>
  382. <div class="printCell" style="display:flex;">
  383. <span
  384. style="display: block;width: 45%;">干体重:{{ main_collection.assessmentbefor.dry_weight }}Kg</span>
  385. <span style="display: block;" v-if="org_id!=10598">抗凝剂:{{ main_collection.dialysissolution.anticoagulant ? anticoagulants_confit[main_collection.dialysissolution.anticoagulant].name : '' }}</span>
  386. <span style="display: block;" v-if="org_id==10598">抗凝剂:{{ main_collection.prescription.anticoagulant ? anticoagulants_confit[main_collection.prescription.anticoagulant].name : '' }}</span>
  387. </div>
  388. <div class="printCell" style="display:flex;">
  389. <span style="display: block;width: 45%;">净重值:{{
  390. main_collection.assessmentbefor.weight_before - main_collection.assessmentbefor.additional_weight
  391. }}Kg</span>
  392. <span style="display: block;" v-if="org_id!=10598">
  393. 首剂: <span
  394. v-if="main_collection.dialysissolution.anticoagulant == 1">{{ main_collection.dialysissolution.anticoagulant_shouji }} mg</span>
  395. <span v-if="main_collection.dialysissolution.anticoagulant == 2">
  396. {{ main_collection.dialysissolution.anticoagulant_shouji }}mg
  397. </span>
  398. <span v-if="main_collection.dialysissolution.anticoagulant == 3">
  399. {{ main_collection.dialysissolution.anticoagulant_shouji }}iu
  400. </span>
  401. <span v-if="main_collection.dialysissolution.anticoagulant == 4">
  402. {{ main_collection.dialysissolution.anticoagulant_shouji }}mg
  403. </span>
  404. <span v-if="main_collection.dialysissolution.anticoagulant == 5">
  405. {{ main_collection.dialysissolution.anticoagulant_shouji }} mg
  406. </span>
  407. <span v-if="main_collection.dialysissolution.anticoagulant == 6">
  408. {{ main_collection.dialysissolution.anticoagulant_shouji }}iu
  409. </span>
  410. <span v-if="main_collection.dialysissolution.anticoagulant == 7">
  411. {{ main_collection.dialysissolution.anticoagulant_shouji }}iu
  412. </span>
  413. <span v-if="main_collection.dialysissolution.anticoagulant == 8">
  414. {{ main_collection.dialysissolution.anticoagulant_shouji }}iu
  415. </span>
  416. <span v-if="main_collection.dialysissolution.anticoagulant == 9">
  417. {{ main_collection.dialysissolution.anticoagulant_shouji }}iu
  418. </span>
  419. <span v-if="main_collection.dialysissolution.anticoagulant == 10">
  420. {{ main_collection.dialysissolution.anticoagulant_shouji }}iu
  421. </span>
  422. <span v-if="main_collection.dialysissolution.anticoagulant == 11">
  423. {{ main_collection.dialysissolution.anticoagulant_shouji }}iu
  424. </span>
  425. </span>
  426. <span style="display: block;" v-if="org_id==10598">
  427. 首剂: <span
  428. v-if="main_collection.prescription.anticoagulant == 1">{{ main_collection.prescription.anticoagulant_shouji }} mg</span>
  429. <span v-if="main_collection.prescription.anticoagulant == 2">
  430. {{ main_collection.prescription.anticoagulant_shouji }}mg
  431. </span>
  432. <span v-if="main_collection.prescription.anticoagulant == 3">
  433. {{ main_collection.prescription.anticoagulant_shouji }}iu
  434. </span>
  435. <span v-if="main_collection.prescription.anticoagulant == 4">
  436. {{ main_collection.prescription.anticoagulant_shouji }}mg
  437. </span>
  438. <span v-if="main_collection.prescription.anticoagulant == 5">
  439. {{ main_collection.prescription.anticoagulant_shouji }} mg
  440. </span>
  441. <span v-if="main_collection.prescription.anticoagulant == 6">
  442. {{ main_collection.prescription.anticoagulant_shouji }}iu
  443. </span>
  444. <span v-if="main_collection.prescription.anticoagulant == 7">
  445. {{ main_collection.prescription.anticoagulant_shouji }}iu
  446. </span>
  447. <span v-if="main_collection.prescription.anticoagulant == 8">
  448. {{ main_collection.prescription.anticoagulant_shouji }}iu
  449. </span>
  450. <span v-if="main_collection.prescription.anticoagulant == 9">
  451. {{ main_collection.prescription.anticoagulant_shouji }}iu
  452. </span>
  453. <span v-if="main_collection.prescription.anticoagulant == 10">
  454. {{ main_collection.prescription.anticoagulant_shouji }}iu
  455. </span>
  456. <span v-if="main_collection.prescription.anticoagulant == 11">
  457. {{ main_collection.prescription.anticoagulant_shouji }}iu
  458. </span>
  459. </span>
  460. </div>
  461. <div class="printCell" style="display:flex;">
  462. <span style="display: block;width: 45%;">体重增加:{{
  463. (main_collection.assessmentbefor.weight_before - assessmentAfterDislysis.weight_after).toFixed(2)
  464. }}Kg</span>
  465. <span style="display: block;width: 50%;" v-if="org_id!=10598">
  466. 维持:{{ main_collection.dialysissolution.anticoagulant_weichi }}
  467. <span v-if="main_collection.dialysissolution.anticoagulant == 1">
  468. mg/h
  469. </span>
  470. <span v-if="main_collection.dialysissolution.anticoagulant == 2">
  471. mg/h
  472. </span>
  473. <span v-if="main_collection.dialysissolution.anticoagulant == 3">
  474. iu/h
  475. </span>
  476. <span v-if="main_collection.dialysissolution.anticoagulant == 4">
  477. mg/h
  478. </span>
  479. <span v-if="main_collection.dialysissolution.anticoagulant == 5">
  480. mg/h
  481. </span>
  482. <span v-if="main_collection.dialysissolution.anticoagulant == 6">
  483. iu/h
  484. </span>
  485. <span v-if="main_collection.dialysissolution.anticoagulant == 7">
  486. iu/h
  487. </span>
  488. <span v-if="main_collection.dialysissolution.anticoagulant == 8">
  489. iu/h
  490. </span>
  491. <span v-if="main_collection.dialysissolution.anticoagulant == 9">
  492. iu/h
  493. </span>
  494. <span v-if="main_collection.dialysissolution.anticoagulant == 10">
  495. iu/h
  496. </span>
  497. <span v-if="main_collection.dialysissolution.anticoagulant == 11">
  498. iu/h
  499. </span>
  500. </span>
  501. <span style="display: block;width: 50%;" v-if="org_id ==10598">
  502. 维持:{{ main_collection.prescription.anticoagulant_weichi }}
  503. <span v-if="main_collection.prescription.anticoagulant == 1">
  504. mg/h
  505. </span>
  506. <span v-if="main_collection.prescription.anticoagulant == 2">
  507. mg/h
  508. </span>
  509. <span v-if="main_collection.prescription.anticoagulant == 3">
  510. iu/h
  511. </span>
  512. <span v-if="main_collection.prescription.anticoagulant == 4">
  513. mg/h
  514. </span>
  515. <span v-if="main_collection.prescription.anticoagulant == 5">
  516. mg/h
  517. </span>
  518. <span v-if="main_collection.prescription.anticoagulant == 6">
  519. iu/h
  520. </span>
  521. <span v-if="main_collection.prescription.anticoagulant == 7">
  522. iu/h
  523. </span>
  524. <span v-if="main_collection.prescription.anticoagulant == 8">
  525. iu/h
  526. </span>
  527. <span v-if="main_collection.prescription.anticoagulant == 9">
  528. iu/h
  529. </span>
  530. <span v-if="main_collection.prescription.anticoagulant == 10">
  531. iu/h
  532. </span>
  533. <span v-if="main_collection.prescription.anticoagulant == 11">
  534. iu/h
  535. </span>
  536. </span>
  537. </div>
  538. <div class="printCell" style="display:flex;">
  539. <span style="display: block;width: 45%;">
  540. 目标脱水量:{{main_collection.prescription.target_ultrafiltration}}
  541. <span
  542. v-if="$store.getters.xt_user.org.id == 10278 || $store.getters.xt_user.org.id == 10460">ml</span>
  543. <span v-else>L</span>
  544. </span>
  545. <span style="display: block;width: 50%;" v-if="org_id!=10598">
  546. 总量:{{ main_collection.dialysissolution.anticoagulant_zongliang }}
  547. <span v-if="main_collection.dialysissolution.anticoagulant == 1">
  548. mg
  549. </span>
  550. <span v-if="main_collection.dialysissolution.anticoagulant == 2">
  551. mg
  552. </span>
  553. <span v-if="main_collection.dialysissolution.anticoagulant == 3">
  554. iu
  555. </span>
  556. <span v-if="main_collection.dialysissolution.anticoagulant == 4">
  557. mg
  558. </span>
  559. <span v-if="main_collection.dialysissolution.anticoagulant == 5">
  560. mg
  561. </span>
  562. <span v-if="main_collection.dialysissolution.anticoagulant == 6">
  563. iu
  564. </span>
  565. <span v-if="main_collection.dialysissolution.anticoagulant == 7">
  566. iu
  567. </span>
  568. <span v-if="main_collection.dialysissolution.anticoagulant == 8">
  569. iu
  570. </span>
  571. <span v-if="main_collection.dialysissolution.anticoagulant == 9">
  572. iu
  573. </span>
  574. <span v-if="main_collection.dialysissolution.anticoagulant == 10">
  575. iu
  576. </span>
  577. <span v-if="main_collection.dialysissolution.anticoagulant == 11">
  578. iu
  579. </span>
  580. </span>
  581. <span style="display: block;width: 50%;" v-if="org_id ==10598">
  582. 总量:{{ main_collection.prescription.anticoagulant_zongliang }}
  583. <span v-if="main_collection.prescription.anticoagulant == 1">
  584. mg
  585. </span>
  586. <span v-if="main_collection.prescription.anticoagulant == 2">
  587. mg
  588. </span>
  589. <span v-if="main_collection.prescription.anticoagulant == 3">
  590. iu
  591. </span>
  592. <span v-if="main_collection.prescription.anticoagulant == 4">
  593. mg
  594. </span>
  595. <span v-if="main_collection.prescription.anticoagulant == 5">
  596. mg
  597. </span>
  598. <span v-if="main_collection.prescription.anticoagulant == 6">
  599. iu
  600. </span>
  601. <span v-if="main_collection.prescription.anticoagulant == 7">
  602. iu
  603. </span>
  604. <span v-if="main_collection.prescription.anticoagulant == 8">
  605. iu
  606. </span>
  607. <span v-if="main_collection.prescription.anticoagulant == 9">
  608. iu
  609. </span>
  610. <span v-if="main_collection.prescription.anticoagulant == 10">
  611. iu
  612. </span>
  613. <span v-if="main_collection.prescription.anticoagulant == 11">
  614. iu
  615. </span>
  616. </span>
  617. </div>
  618. <div class="printCell" style="display:flex;" v-if="org_id==10598 || org_id == 0">
  619. <span style="display: block;width: 45%;">处方脱水量:{{main_collection.prescription.prescription_water}}
  620. <span v-if="$store.getters.xt_user.org.id == 10278 || $store.getters.xt_user.org.id == 10460">ml</span>
  621. <span v-else>L</span>
  622. </span>
  623. <span style="width: 50%;">
  624. 血流量:{{ main_collection.prescription.blood_flow_volume }} ml/min
  625. </span>
  626. </div>
  627. <div class="printCell" style="display:flex;" v-if="org_id ==10598 || org_id == 0">
  628. <div style="">透析时长:
  629. <span>{{main_collection.prescription.dialysis_duration_hour }}小时 <span v-if="main_collection.prescription.dialysis_duration_minute>0">{{main_collection.prescription.dialysis_duration_minute }}分</span></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  630. </div>
  631. <div style="">置换方式:
  632. {{ getDisplaceLiquiPart(main_collection.prescription.displace_liqui_part) }}
  633. </div>
  634. </div>
  635. <div class="printCell" style="display:flex;" v-if="org_id ==10598 || org_id == 0">
  636. <div style="">透析器:
  637. <span>{{main_collection.prescription.dialysis_dialyszers }}&nbsp;&nbsp; {{main_collection.prescription.dialysis_irrigation}}&nbsp;&nbsp; {{main_collection.prescription.dialysis_strainer}}</span>
  638. </div>
  639. </div>
  640. </div>
  641. </div>
  642. </div>
  643. </div>
  644. </div>
  645. <span slot="footer" class="dialog-footer">
  646. <el-button @click="startVisibility = false">取 消</el-button>
  647. </span>
  648. </el-dialog>
  649. </div>
  650. </template>
  651. <script>
  652. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  653. import deskPrescription from './components/deskPrescription'
  654. import deskRecord from './components/deskRecord'
  655. import { getInitData, getMonthHisPateintInfo, getPatientInfo, getSchedulePatientList } from '@/api/his/his'
  656. import { getDictionaryDataConfig } from '@/utils/data'
  657. import medicalRecord from './components/medicalRecord'
  658. import saveRecordTemplate from './components/saveRecordTemplate'
  659. import { uParseTime } from '@/utils/tools'
  660. import { getPrescriptionList } from '@/api/project/project'
  661. import print from './print'
  662. import treatPrint from './treatPrint'
  663. import recordPrint from './recordPrint'
  664. import checkPrint from './checkPrint'
  665. import dialysisIndex from './components/dialysisIndex'
  666. import dialysishistory from './components/dialysishistory'
  667. import { getInitPrintDataOne } from '@/api/dialysis_record'
  668. import axios from 'axios'
  669. const moment = require('moment')
  670. export default {
  671. components: {
  672. BreadCrumb,
  673. deskPrescription,
  674. deskRecord,
  675. medicalRecord,
  676. saveRecordTemplate,
  677. print,
  678. treatPrint,
  679. recordPrint,
  680. checkPrint,
  681. dialysisIndex,
  682. dialysishistory
  683. },
  684. data() {
  685. return {
  686. drugs: [],
  687. allDrugs: [],
  688. advices_template: [],
  689. sick: [],
  690. diagnoses: [],
  691. diagnosis:[],
  692. additions: [],
  693. doctors: [],
  694. department: [],
  695. tableHeight: '',
  696. saveloading: false,
  697. fullHeight: document.documentElement.clientHeight,
  698. month_prescriptions: [],
  699. isloading: false,
  700. prescriptions: [
  701. {
  702. name: '处方1',
  703. advices: [],
  704. project: [],
  705. addition: []
  706. }
  707. ],
  708. search_input: '',
  709. cal_one: 0,
  710. cal_two: 0,
  711. radio: 1,
  712. schedule_type: 0,
  713. patient_type:1,
  714. record_date: '',
  715. crumbs: [
  716. { path: false, name: '门诊医生站' },
  717. { path: false, name: '医生工作台' }
  718. ],
  719. titleType: '电子处方',
  720. patientTableData: [{}],
  721. patientTableDataTwo: [{}],
  722. patientInfo: {},
  723. hisPatientInfo: {},
  724. case_history: {},
  725. patient_id: 0,
  726. other_sick: [],
  727. info: {},
  728. last_info: {},
  729. templatedetail: {},
  730. detalid: 0,
  731. prescription_id: 0,
  732. patientid: 0,
  733. prescriptionList: [],
  734. centerDialogVisible: false,
  735. tableData1: [],
  736. tableData2: [],
  737. tableData3: [],
  738. tableData4: [],
  739. selecting_schs1: [],
  740. selecting_schs2: [],
  741. selecting_schs3: [],
  742. index: 0,
  743. admin_info: {},
  744. saveLoading: false,
  745. innerVisible: false,
  746. paramsObj: {},
  747. paramsObj2: {},
  748. paramsObj3: {},
  749. recordVisible: false,
  750. recordObj: {},
  751. dialysisShow: true,
  752. all_data: [],
  753. all_data_two: [],
  754. un_cure_data: [],
  755. un_cure_data_two: [],
  756. cure_data: [],
  757. cure_data_two: [],
  758. all_his_patients: [],
  759. checkVisible: false,
  760. current_tab: 'day',
  761. org_id: 0,
  762. loading: false,
  763. startVisibility: false,
  764. assessmentAfterDislysis: {},
  765. printList: [],
  766. printDate: '',
  767. anticoagulants_confit: null,
  768. patient_diagnoses: [],
  769. // zuobiao_project:[],
  770. befor:{},
  771. LastCaseHistory:{},
  772. displaceLiquiPartOptions:[],
  773. }
  774. },
  775. methods: {
  776. getDisplaceLiquiPart: function (val) {
  777. let displace_liqui_part_name = "/";
  778. const displace_liqui_part = this.displaceLiquiPartOptions;
  779. for (let i = 0; i < displace_liqui_part.length; i++) {
  780. if (displace_liqui_part[i].id == val) {
  781. displace_liqui_part_name = displace_liqui_part[i].name;
  782. }
  783. }
  784. return displace_liqui_part_name;
  785. },
  786. open_four(){
  787. this.$refs.prescriptions.getZuobiaoGoodStock()
  788. this.$refs.prescriptions.getZuobiaoDrugStock()
  789. },
  790. getSunziValue(val) {
  791. // this.drugs=[]
  792. this.getInitData()
  793. },
  794. editKeepLoad(data) {
  795. this.saveLoading = data
  796. },
  797. changeTimeTwo() {
  798. if(this.patient_type == 2){
  799. this.changeFutouList()
  800. }else{
  801. this.getList()
  802. }
  803. },
  804. // 电子处方打印
  805. openPrint() {
  806. // this.centerDialogVisible = true
  807. this.getPrescriptionList(this.patientInfo.id, this.record_date)
  808. },
  809. // 电子病历打印
  810. opentwo(index) {
  811. if (index == 1) {
  812. if (this.patientInfo.id == undefined) {
  813. this.$message.error('请先选择病人')
  814. return
  815. }
  816. this.$refs.child.createCaseHistory()
  817. } else if (index == 2) {
  818. this.recordVisible = true
  819. this.$nextTick(() => {
  820. console.log("haaaaaaaaaaaaaaaaaaaaaaa",this.record_date)
  821. this.$refs.recordPrint.show(this.patientid, this.org_id,this.record_date)
  822. })
  823. // this.$router.push('/outpatientDoctorStation/recordPrint?record='+this.record_date+"&patient_id="+this.patientid)
  824. } else if (index == 3) {
  825. var mode_status = this.$refs.saveRecordTemplate.mode_status
  826. this.$refs.medicalRecord.show(mode_status)
  827. } else if (index == 4) {
  828. this.$refs.saveRecordTemplate.show(this.case_history)
  829. }
  830. },
  831. allCheck() {
  832. this.$refs.multipleTable1.toggleAllSelection()
  833. this.$refs.multipleTable2.toggleAllSelection()
  834. this.$refs.multipleTable3.toggleAllSelection()
  835. },
  836. printThisPage() {
  837. if (this.org_id == 10138 || this.org_id == 10278) {
  838. const style =
  839. '@media print {#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;margin-top:10px;}.infoTitle div{width: 200px;}.infoMain{display: flex;flex-wrap: wrap;margin-top:10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{min-height:350px;}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;}.doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;}.actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}@media print {html {zoom: 88%;}}#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;margin-top:10px;}.infoTitle div{width: 200px;}.infoMain{display: flex;flex-wrap: wrap;margin-top:10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{min-height:350px;}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;}.doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;}.actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}@media print {html {zoom: 87%;}}}'
  840. printJS({
  841. printable: 'printMain',
  842. type: 'html',
  843. style: style,
  844. scanStyles: false
  845. })
  846. } else if (this.org_id == 10188) {
  847. const style =
  848. '@media print {#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;border-bottom: 2px solid #000;margin-top:10px;line-height: 1px; padding:0 10px;}.infoTitle p{width: 200px;font-size:14px;}.infoMain{display: flex;flex-wrap: wrap;border-bottom: 2px solid #000;padding:0 10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{min-height:450px;}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;} .doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;} .doctorBox p {margin-left: auto} .actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}@media print {html {zoom: 88%;}}#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;margin-top:10px;}.infoTitle div{width: 200px;}.infoMain{display: flex;flex-wrap: wrap;margin-top:10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{min-height:450px;}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;}.doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;}.doctorBoxtwo{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;}.actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}.NoCell{display: flex;justify-content: space-between;margin-bottom: 10px;}.underLine{display: inline-block;border-bottom: 1px solid #000;text-align: center;line-height: 24px;}.basicCell{display: flex;} .basicCell span{line-height: 24px;margin-bottom: 10px;}}'
  849. printJS({
  850. printable: 'printMain',
  851. type: 'html',
  852. style: style,
  853. scanStyles: false
  854. })
  855. } else if (this.org_id == 10653) {
  856. const style =
  857. '@media print {#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;margin-top:10px; padding:0 10px;}.infoTitle p{width: 200px;font-size:14px;}.infoMain{flex-wrap: wrap;border-bottom: 2px solid #000;padding:0 10px;}.infoMain div{line-height: 24px;}.prescriptionBox{min-height:450px;}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;}.doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;} .actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}@media print {html {zoom: 88%;}}#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;margin-top:10px;}.infoTitle div{width: 200px;}.infoMain{display: flex;flex-wrap: wrap;margin-top:10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;}.doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;}.doctorBoxtwo{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;}.actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}.NoCell{display: flex;justify-content: space-between;margin-bottom: 10px;}.underLine{display: inline-block;border-bottom: 1px solid #000;text-align: center;line-height: 24px;}.basicCell{display: flex;} .basicCell span{line-height: 24px;margin-bottom: 10px;}}'
  858. printJS({
  859. printable: 'printMain',
  860. type: 'html',
  861. style: style,
  862. scanStyles: false
  863. })
  864. } else {
  865. // const style =
  866. // '@media print {#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;margin-top:10px; padding:0 10px;}.infoTitle p{width: 200px;font-size:14px;}.infoMain{display: flex;flex-wrap: wrap;border-bottom: 2px solid #000;padding:0 10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{min-height:450px;}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;}.doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;} .actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}@media print {html {zoom: 88%;}}#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;margin-top:10px;}.infoTitle div{width: 200px;}.infoMain{display: flex;flex-wrap: wrap;margin-top:10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{min-height:450px;}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;}.doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;}.doctorBoxtwo{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;}.actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}.NoCell{display: flex;justify-content: space-between;margin-bottom: 10px;}.underLine{display: inline-block;border-bottom: 1px solid #000;text-align: center;line-height: 24px;}.basicCell{display: flex;} .basicCell span{line-height: 24px;margin-bottom: 10px;}}'
  867. const style =
  868. '@media print {#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;margin-top:10px; padding:0 10px;}.infoTitle p{width: 200px;font-size:14px;}.infoMain{display: flex;flex-wrap: wrap;border-bottom: 2px solid #000;padding:0 10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{min-height:450px;}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;}.doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;} .actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}@media print {html {zoom: 88%;}}#prescription-print{font-size:14px;border:1px solid white}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;margin-bottom: 10px;}.infoTitle{display: flex;margin-top:10px;}.infoTitle div{width: 200px;}.infoMain{display: flex;flex-wrap: wrap;margin-top:10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{}.Rp{font-size: 18px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;}.drugsBox div{line-height: 20px;}.drugsOne{line-height: 24px;}.drugsOne span{margin-right: 20px;}.doctorBox{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;border-bottom: 2px solid #000;}.doctorBoxtwo{display: flex;justify-content: space-between;padding:0 10px;line-height: 24px;}.actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar p{width:150px;}.under_line{display: inline-block;border-bottom: 1px solid #000;flex: 1;}.NoCell{display: flex;justify-content: space-between;margin-bottom: 10px;}.underLine{display: inline-block;border-bottom: 1px solid #000;text-align: center;line-height: 24px;}.basicCell{display: flex;} .basicCell span{line-height: 24px;margin-bottom: 10px;}}'
  869. printJS({
  870. printable: 'printMain',
  871. type: 'html',
  872. style: style,
  873. scanStyles: false
  874. })
  875. }
  876. this.innerVisible = false
  877. // this.$nextTick(() => {
  878. // this.$refs.print.printThisPage()
  879. // this.$refs.treatPrint.printThisPage()
  880. // this.$refs.checkPrint.printThisPage()
  881. // })
  882. },
  883. changeOther(patient_id) {
  884. if(this.patient_type == 2){
  885. if(this.radio != 0) {
  886. this.radio = 2
  887. }
  888. this.changeFutouList()
  889. }else{
  890. if(this.radio != 0) {
  891. this.radio = 2
  892. }
  893. let params = {
  894. 'record_date': this.record_date,
  895. 'type': this.radio,
  896. 'patient_type':this.patient_type,
  897. 'sch_type': this.schedule_type
  898. }
  899. this.patientTableData = []
  900. this.un_cure_data = []
  901. this.cure_data = []
  902. this.all_data = []
  903. getSchedulePatientList(params).then(response => {
  904. if (response.data.state == 0) {
  905. this.$message.error(response.data.msg)
  906. return false
  907. } else {
  908. //挂号
  909. console.log('response.data.data12121212134',response.data.data);
  910. for (let i = 0; i < response.data.data.list.length; i++) {
  911. for (let b = 0; b < response.data.data.list[i].his_patient.length; b++) {
  912. //未就诊
  913. if (response.data.data.list[i].his_patient[b].prescription.length == 0) {
  914. let obj = {
  915. name: response.data.data.list[i].his_patient[b].name,
  916. number: response.data.data.list[i].his_patient[b].number,
  917. id: response.data.data.list[i].id,
  918. his_patient_id: response.data.data.list[i].his_patient[b].id,
  919. patient_type: response.data.data.list[i].patient_type
  920. // patient_type:
  921. }
  922. this.un_cure_data.push(obj)
  923. }
  924. //已就诊
  925. if (response.data.data.list[i].his_patient[b].prescription.length > 0) {
  926. let obj = {
  927. name: response.data.data.list[i].his_patient[b].name,
  928. number: response.data.data.list[i].his_patient[b].number,
  929. id: response.data.data.list[i].id,
  930. his_patient_id: response.data.data.list[i].his_patient[b].id,
  931. patient_type: response.data.data.list[i].patient_type
  932. }
  933. this.cure_data.push(obj)
  934. }
  935. }
  936. }
  937. //排班
  938. for (let i = 0; i < response.data.data.list_two.length; i++) {
  939. //未就诊
  940. if (response.data.data.list_two[i].prescription.length == 0 && response.data.data.list_two[i].his_patient.id == 0) {
  941. let obj = {
  942. name: response.data.data.list_two[i].name,
  943. number: response.data.data.list_two[i].his_patient.number,
  944. id: response.data.data.list_two[i].id,
  945. his_patient_id: response.data.data.list_two[i].his_patient.id,
  946. patient_type: response.data.data.list_two[i].patient_type
  947. }
  948. this.un_cure_data.push(obj)
  949. }
  950. //已就诊
  951. if (response.data.data.list_two[i].prescription.length > 0 && response.data.data.list_two[i].his_patient.id == 0) {
  952. let obj = {
  953. name: response.data.data.list_two[i].name,
  954. number: response.data.data.list_two[i].his_patient.number,
  955. id: response.data.data.list_two[i].id,
  956. his_patient_id: response.data.data.list_two[i].his_patient.id,
  957. patient_type: response.data.data.list_two[i].patient_type
  958. }
  959. this.cure_data.push(obj)
  960. }
  961. }
  962. // for (let i = 0; i < response.data.data.list_three.length; i++) {
  963. // //已就诊
  964. // if (response.data.data.list_three[i].prescription.length > 0) {
  965. // let obj = {
  966. // name: response.data.data.list_three[i].name,
  967. // number: "",
  968. // id: response.data.data.list_three[i].id,
  969. // his_patient_id: 0,
  970. // first_letter: response.data.data.list_three[i].first_letter
  971. // }
  972. // this.cure_data.push(obj)
  973. // }
  974. // }
  975. this.all_data = this.all_data.concat(this.cure_data)
  976. this.all_data = this.all_data.concat(this.un_cure_data)
  977. this.cure_data_two = this.cure_data
  978. this.un_cure_data_two = this.un_cure_data
  979. this.all_data_two = this.all_data
  980. this.cal_one = this.un_cure_data.length
  981. this.cal_two = this.cure_data.length
  982. this.admin_info = response.data.data.info
  983. // if (this.cure_data_two.length > 0) {
  984. // this.$refs.tab.setCurrentRow(this.un_cure_data[0])
  985. // this.oldCurrentRow = this.un_cure_data[0]
  986. // this.getPatientInfo(this.un_cure_data[0])
  987. // }
  988. if (this.cure_data.length > 0) {
  989. for (let i = 0; i < this.cure_data.length; i++) {
  990. if (this.cure_data[i].id == patient_id) {
  991. this.$refs.tab.setCurrentRow(this.cure_data[i])
  992. this.oldCurrentRow = this.cure_data[i]
  993. this.getPatientInfo(this.cure_data[i])
  994. }
  995. }
  996. }
  997. }
  998. })
  999. }
  1000. // getSchedulePatientList(params).then(response => {
  1001. // if (response.data.state == 0) {
  1002. // this.$message.error(response.data.msg);
  1003. // return false
  1004. // } else {
  1005. // this.patientTableData = response.data.data.list;
  1006. // this.patientTableDataTwo = response.data.data.list;
  1007. // this.cal_one = response.data.data.total_one;
  1008. // this.cal_two = response.data.data.total_two;
  1009. // this.admin_info = response.data.data.info;
  1010. //
  1011. //
  1012. // if (this.patientTableData.length > 0) {
  1013. // for(let i = 0; i < this.patientTableData.length; i++){
  1014. // if (this.patientTableData[i].id == patient_id){
  1015. // this.$refs.tab.setCurrentRow(this.patientTableData[i]);
  1016. // this.oldCurrentRow = this.patientTableData[i];
  1017. // this.getPatientInfo(this.patientTableData[i])
  1018. // }
  1019. // }
  1020. //
  1021. // }
  1022. //
  1023. // this.prescriptionList = response.data.data.list.prescription
  1024. //
  1025. // }
  1026. // })
  1027. },
  1028. setData(val) {
  1029. this.prescriptions = val
  1030. },
  1031. getDictionaryDataConfig(module, filed_name) {
  1032. return getDictionaryDataConfig(module, filed_name)
  1033. },
  1034. searchAction() {
  1035. if (this.search_input.length == 0) {
  1036. switch (this.radio) {
  1037. case 0:
  1038. this.all_data = this.all_data_two
  1039. break
  1040. case 2:
  1041. this.cure_data = this.cure_data_two
  1042. break
  1043. case 1:
  1044. this.un_cure_data = this.un_cure_data_two
  1045. break
  1046. }
  1047. } else {
  1048. console.log('5555', this.radio)
  1049. switch (this.radio) {
  1050. case 0:
  1051. let arr = []
  1052. for (let i = 0; i < this.all_data.length; i++) {
  1053. if (this.all_data[i].first_letter != undefined) {
  1054. if (this.all_data[i].name.indexOf(this.search_input) != -1 ||
  1055. this.all_data[i].number.indexOf(this.search_input) != -1 ||
  1056. this.all_data[i].first_letter.indexOf(this.search_input) != -1) {
  1057. arr = arr.concat(this.all_data[i])
  1058. console.log(arr)
  1059. }
  1060. }
  1061. }
  1062. this.all_data = arr
  1063. break
  1064. case 2:
  1065. let arr2 = []
  1066. for (let i = 0; i < this.cure_data.length; i++) {
  1067. if (this.cure_data[i].first_letter != undefined) {
  1068. if (this.cure_data[i].name.indexOf(this.search_input) != -1 ||
  1069. this.cure_data[i].number.indexOf(this.search_input) != -1 ||
  1070. this.cure_data[i].first_letter.indexOf(this.search_input) != -1) {
  1071. console.log('2222', this.cure_data)
  1072. arr2 = arr2.concat(this.cure_data[i])
  1073. }
  1074. }
  1075. }
  1076. this.cure_data = arr2
  1077. break
  1078. case 1:
  1079. console.log('wowowoowowow', this.un_cure_data)
  1080. let arr3 = []
  1081. console.log('3333', this.un_cure_data)
  1082. for (let i = 0; i < this.un_cure_data.length; i++) {
  1083. if (this.un_cure_data[i].first_letter != undefined) {
  1084. if (this.un_cure_data[i].name.indexOf(this.search_input) != -1 ||
  1085. this.un_cure_data[i].number.indexOf(this.search_input) != -1 ||
  1086. this.un_cure_data[i].first_letter.indexOf(this.search_input) != -1) {
  1087. arr3 = arr3.concat(this.un_cure_data[i])
  1088. }
  1089. }
  1090. }
  1091. this.un_cure_data = arr3
  1092. break
  1093. }
  1094. }
  1095. },
  1096. change() {
  1097. console.log(this.patient_type)
  1098. if(this.patient_type == 2){
  1099. this.changeFutouList()
  1100. }else {
  1101. let params = {
  1102. 'record_date': this.record_date,
  1103. 'type': this.radio,
  1104. 'patient_type': this.patient_type,
  1105. 'sch_type': this.schedule_type
  1106. }
  1107. this.un_cure_data = []
  1108. this.cure_data = []
  1109. this.all_data = []
  1110. getSchedulePatientList(params).then(response => {
  1111. if (response.data.state == 0) {
  1112. this.$message.error(response.data.msg)
  1113. return false
  1114. } else {
  1115. //挂号
  1116. for (let i = 0; i < response.data.data.list.length; i++) {
  1117. for (let b = 0; b < response.data.data.list[i].his_patient.length; b++) {
  1118. //未就诊
  1119. if (response.data.data.list[i].his_patient[b].prescription.length == 0) {
  1120. let obj = {
  1121. name: response.data.data.list[i].his_patient[b].name,
  1122. number: response.data.data.list[i].his_patient[b].number,
  1123. id: response.data.data.list[i].id,
  1124. his_patient_id: response.data.data.list[i].his_patient[b].id,
  1125. first_letter: response.data.data.list[i].first_letter,
  1126. patient_type: response.data.data.list[i].patient_type
  1127. }
  1128. this.un_cure_data.push(obj)
  1129. console.log('vvvvv', this.un_cure_data)
  1130. }
  1131. //已就诊
  1132. if (response.data.data.list[i].his_patient[b].prescription.length > 0) {
  1133. let obj = {
  1134. name: response.data.data.list[i].his_patient[b].name,
  1135. number: response.data.data.list[i].his_patient[b].number,
  1136. id: response.data.data.list[i].id,
  1137. his_patient_id: response.data.data.list[i].his_patient[b].id,
  1138. first_letter: response.data.data.list[i].first_letter,
  1139. patient_type: response.data.data.list[i].patient_type
  1140. }
  1141. this.cure_data.push(obj)
  1142. }
  1143. }
  1144. }
  1145. //排班
  1146. for (let i = 0; i < response.data.data.list_two.length; i++) {
  1147. // console.log('hahhahahahahahahah', response.data.data.list_two)
  1148. //未就诊
  1149. if (response.data.data.list_two[i].prescription.length == 0 && response.data.data.list_two[i].his_patient.id == 0) {
  1150. let obj = {
  1151. name: response.data.data.list_two[i].name,
  1152. number: response.data.data.list_two[i].his_patient.number,
  1153. id: response.data.data.list_two[i].id,
  1154. his_patient_id: response.data.data.list_two[i].his_patient.id,
  1155. first_letter: response.data.data.list_two[i].first_letter,
  1156. patient_type: response.data.data.list_two[i].patient_type
  1157. }
  1158. this.un_cure_data.push(obj)
  1159. // console.log('aaaaa',this.un_cure_data);
  1160. }
  1161. //已就诊
  1162. if (response.data.data.list_two[i].prescription.length > 0 && response.data.data.list_two[i].his_patient.id == 0) {
  1163. let obj = {
  1164. name: response.data.data.list_two[i].name,
  1165. number: response.data.data.list_two[i].his_patient.number,
  1166. id: response.data.data.list_two[i].id,
  1167. his_patient_id: response.data.data.list_two[i].his_patient.id,
  1168. first_letter: response.data.data.list_two[i].first_letter,
  1169. patient_type: response.data.data.list_two[i].patient_type
  1170. }
  1171. this.cure_data.push(obj)
  1172. }
  1173. }
  1174. // for (let i = 0; i < response.data.data.list_three.length; i++) {
  1175. // //已就诊
  1176. // if (response.data.data.list_three[i].prescription.length > 0) {
  1177. // let obj = {
  1178. // name: response.data.data.list_three[i].name,
  1179. // number: "",
  1180. // id: response.data.data.list_three[i].id,
  1181. // his_patient_id: 0,
  1182. // first_letter: response.data.data.list_three[i].first_letter
  1183. // }
  1184. // this.cure_data.push(obj)
  1185. // }
  1186. // }
  1187. // console.log('gggg',this.un_cure_data);
  1188. this.all_data = this.all_data.concat(this.cure_data)
  1189. this.all_data = this.all_data.concat(this.un_cure_data)
  1190. this.cure_data_two = this.cure_data
  1191. this.un_cure_data_two = this.un_cure_data
  1192. this.all_data_two = this.all_data
  1193. this.cal_one = this.un_cure_data.length
  1194. this.cal_two = this.cure_data.length
  1195. this.admin_info = response.data.data.info
  1196. if (this.un_cure_data.length > 0) {
  1197. if (this.radio == 0) {
  1198. this.$refs.tab.setCurrentRow(this.all_data[0])
  1199. this.oldCurrentRow = this.all_data[0]
  1200. this.getPatientInfo(this.all_data[0])
  1201. } else if (this.radio == 1) {
  1202. this.$refs.tab.setCurrentRow(this.un_cure_data[0])
  1203. this.oldCurrentRow = this.un_cure_data[0]
  1204. this.getPatientInfo(this.un_cure_data[0])
  1205. } else if (this.radio == 2) {
  1206. this.$refs.tab.setCurrentRow(this.cure_data[0])
  1207. this.oldCurrentRow = this.cure_data[0]
  1208. this.getPatientInfo(this.cure_data[0])
  1209. }
  1210. }
  1211. }
  1212. })
  1213. }
  1214. }, changeFutouList(){
  1215. let params = {
  1216. 'record_date': this.record_date,
  1217. 'type': this.radio,
  1218. 'patient_type':this.patient_type,
  1219. 'sch_type': this.schedule_type
  1220. }
  1221. this.un_cure_data = []
  1222. this.cure_data = []
  1223. this.all_data = []
  1224. getSchedulePatientList(params).then(response => {
  1225. if (response.data.state == 0) {
  1226. this.$message.error(response.data.msg)
  1227. return false
  1228. } else {
  1229. for (let i = 0; i < response.data.data.list.length; i++) {
  1230. // for (let b = 0; b < response.data.data.list[i].his_patient.length; b++) {
  1231. //未就诊
  1232. if(response.data.data.list[i].prescription.length == 0) {//没开处方
  1233. let obj = {
  1234. name: response.data.data.list[i].name,
  1235. number: response.data.data.list[i].his_patient.number,
  1236. id: response.data.data.list[i].id,
  1237. his_patient_id: response.data.data.list[i].his_patient.id,
  1238. first_letter: response.data.data.list[i].first_letter,
  1239. patient_type:4,
  1240. }
  1241. this.un_cure_data.push(obj)
  1242. }
  1243. //已就诊
  1244. if (response.data.data.list[i].prescription.length > 0) { //开了处方
  1245. let obj = {
  1246. name: response.data.data.list[i].name,
  1247. number: response.data.data.list[i].his_patient.number,
  1248. id: response.data.data.list[i].id,
  1249. his_patient_id: response.data.data.list[i].his_patient.id,
  1250. first_letter: response.data.data.list[i].first_letter,
  1251. patient_type:4,
  1252. }
  1253. this.cure_data.push(obj)
  1254. }
  1255. }
  1256. this.all_data = this.all_data.concat(this.cure_data)
  1257. this.all_data = this.all_data.concat(this.un_cure_data)
  1258. this.cure_data_two = this.cure_data
  1259. this.un_cure_data_two = this.un_cure_data
  1260. this.all_data_two = this.all_data
  1261. this.cal_one = this.un_cure_data.length
  1262. this.cal_two = this.cure_data.length
  1263. this.admin_info = response.data.data.info
  1264. if (this.un_cure_data.length > 0) {
  1265. if (this.radio == 0) {
  1266. this.$refs.tab.setCurrentRow(this.all_data[0])
  1267. this.oldCurrentRow = this.all_data[0]
  1268. this.getPatientInfo(this.all_data[0])
  1269. } else if (this.radio == 1) {
  1270. this.$refs.tab.setCurrentRow(this.un_cure_data[0])
  1271. this.oldCurrentRow = this.un_cure_data[0]
  1272. this.getPatientInfo(this.un_cure_data[0])
  1273. } else if (this.radio == 2) {
  1274. this.$refs.tab.setCurrentRow(this.cure_data[0])
  1275. this.oldCurrentRow = this.cure_data[0]
  1276. this.getPatientInfo(this.cure_data[0])
  1277. }
  1278. }
  1279. }
  1280. })
  1281. },changePatientType(){
  1282. if(this.patient_type == 2){ //腹透患者单独处理
  1283. this.changeFutouList()
  1284. }else{
  1285. let params = {
  1286. 'record_date': this.record_date,
  1287. 'type': this.radio,
  1288. 'sch_type': this.schedule_type,
  1289. 'patient_type':this.patient_type,
  1290. }
  1291. this.un_cure_data = []
  1292. this.cure_data = []
  1293. this.all_data = []
  1294. getSchedulePatientList(params).then(response => {
  1295. if (response.data.state == 0) {
  1296. this.$message.error(response.data.msg)
  1297. return false
  1298. } else {
  1299. //挂号
  1300. for (let i = 0; i < response.data.data.list.length; i++) {
  1301. for (let b = 0; b < response.data.data.list[i].his_patient.length; b++) {
  1302. //未就诊
  1303. if (response.data.data.list[i].his_patient[b].prescription.length == 0) {
  1304. let obj = {
  1305. name: response.data.data.list[i].his_patient[b].name,
  1306. number: response.data.data.list[i].his_patient[b].number,
  1307. id: response.data.data.list[i].id,
  1308. his_patient_id: response.data.data.list[i].his_patient[b].id,
  1309. first_letter: response.data.data.list[i].first_letter
  1310. }
  1311. this.un_cure_data.push(obj)
  1312. }
  1313. //已就诊
  1314. if (response.data.data.list[i].his_patient[b].prescription.length > 0) {
  1315. let obj = {
  1316. name: response.data.data.list[i].his_patient[b].name,
  1317. number: response.data.data.list[i].his_patient[b].number,
  1318. id: response.data.data.list[i].id,
  1319. his_patient_id: response.data.data.list[i].his_patient[b].id,
  1320. first_letter: response.data.data.list[i].first_letter
  1321. }
  1322. this.cure_data.push(obj)
  1323. }
  1324. }
  1325. }
  1326. //排班
  1327. for (let i = 0; i < response.data.data.list_two.length; i++) {
  1328. //未就诊
  1329. if (response.data.data.list_two[i].prescription.length == 0 && response.data.data.list_two[i].his_patient.id == 0) {
  1330. let obj = {
  1331. name: response.data.data.list_two[i].name,
  1332. number: response.data.data.list_two[i].his_patient.number,
  1333. id: response.data.data.list_two[i].id,
  1334. his_patient_id: response.data.data.list_two[i].his_patient.id,
  1335. first_letter: response.data.data.list_two[i].first_letter
  1336. }
  1337. this.un_cure_data.push(obj)
  1338. }
  1339. //已就诊
  1340. if (response.data.data.list_two[i].prescription.length > 0 && response.data.data.list_two[i].his_patient.id == 0) {
  1341. let obj = {
  1342. name: response.data.data.list_two[i].name,
  1343. number: response.data.data.list_two[i].his_patient.number,
  1344. id: response.data.data.list_two[i].id,
  1345. his_patient_id: response.data.data.list_two[i].his_patient.id,
  1346. first_letter: response.data.data.list_two[i].first_letter
  1347. }
  1348. this.cure_data.push(obj)
  1349. }
  1350. }
  1351. // for (let i = 0; i < response.data.data.list_three.length; i++) {
  1352. // //已就诊
  1353. // if (response.data.data.list_three[i].prescription.length > 0) {
  1354. // let obj = {
  1355. // name: response.data.data.list_three[i].name,
  1356. // number: "",
  1357. // id: response.data.data.list_three[i].id,
  1358. // his_patient_id: 0,
  1359. // first_letter: response.data.data.list_three[i].first_letter
  1360. // }
  1361. // this.cure_data.push(obj)
  1362. // }
  1363. // }
  1364. this.all_data = this.all_data.concat(this.cure_data)
  1365. this.all_data = this.all_data.concat(this.un_cure_data)
  1366. this.cure_data_two = this.cure_data
  1367. this.un_cure_data_two = this.un_cure_data
  1368. this.all_data_two = this.all_data
  1369. this.cal_one = this.un_cure_data.length
  1370. this.cal_two = this.cure_data.length
  1371. this.admin_info = response.data.data.info
  1372. if (this.un_cure_data.length > 0) {
  1373. if (this.radio == 0) {
  1374. this.$refs.tab.setCurrentRow(this.all_data[0])
  1375. this.oldCurrentRow = this.all_data[0]
  1376. this.getPatientInfo(this.all_data[0])
  1377. } else if (this.radio == 1) {
  1378. this.$refs.tab.setCurrentRow(this.un_cure_data[0])
  1379. this.oldCurrentRow = this.un_cure_data[0]
  1380. this.getPatientInfo(this.un_cure_data[0])
  1381. } else if (this.radio == 2) {
  1382. this.$refs.tab.setCurrentRow(this.cure_data[0])
  1383. this.oldCurrentRow = this.cure_data[0]
  1384. this.getPatientInfo(this.cure_data[0])
  1385. }
  1386. }
  1387. }
  1388. })
  1389. }
  1390. },changeScheduleType() {
  1391. let params = {
  1392. 'record_date': this.record_date,
  1393. 'type': this.radio,
  1394. 'sch_type': this.schedule_type
  1395. }
  1396. this.un_cure_data = []
  1397. this.cure_data = []
  1398. this.all_data = []
  1399. getSchedulePatientList(params).then(response => {
  1400. if (response.data.state == 0) {
  1401. this.$message.error(response.data.msg)
  1402. return false
  1403. } else {
  1404. //挂号
  1405. for (let i = 0; i < response.data.data.list.length; i++) {
  1406. for (let b = 0; b < response.data.data.list[i].his_patient.length; b++) {
  1407. //未就诊
  1408. if (response.data.data.list[i].his_patient[b].prescription.length == 0) {
  1409. let obj = {
  1410. name: response.data.data.list[i].his_patient[b].name,
  1411. number: response.data.data.list[i].his_patient[b].number,
  1412. id: response.data.data.list[i].id,
  1413. his_patient_id: response.data.data.list[i].his_patient[b].id,
  1414. first_letter: response.data.data.list[i].first_letter
  1415. }
  1416. this.un_cure_data.push(obj)
  1417. }
  1418. //已就诊
  1419. if (response.data.data.list[i].his_patient[b].prescription.length > 0) {
  1420. let obj = {
  1421. name: response.data.data.list[i].his_patient[b].name,
  1422. number: response.data.data.list[i].his_patient[b].number,
  1423. id: response.data.data.list[i].id,
  1424. his_patient_id: response.data.data.list[i].his_patient[b].id,
  1425. first_letter: response.data.data.list[i].first_letter
  1426. }
  1427. this.cure_data.push(obj)
  1428. }
  1429. }
  1430. }
  1431. //排班
  1432. for (let i = 0; i < response.data.data.list_two.length; i++) {
  1433. //未就诊
  1434. if (response.data.data.list_two[i].prescription.length == 0 && response.data.data.list_two[i].his_patient.id == 0) {
  1435. let obj = {
  1436. name: response.data.data.list_two[i].name,
  1437. number: response.data.data.list_two[i].his_patient.number,
  1438. id: response.data.data.list_two[i].id,
  1439. his_patient_id: response.data.data.list_two[i].his_patient.id,
  1440. first_letter: response.data.data.list_two[i].first_letter
  1441. }
  1442. this.un_cure_data.push(obj)
  1443. }
  1444. //已就诊
  1445. if (response.data.data.list_two[i].prescription.length > 0 && response.data.data.list_two[i].his_patient.id == 0) {
  1446. let obj = {
  1447. name: response.data.data.list_two[i].name,
  1448. number: response.data.data.list_two[i].his_patient.number,
  1449. id: response.data.data.list_two[i].id,
  1450. his_patient_id: response.data.data.list_two[i].his_patient.id,
  1451. first_letter: response.data.data.list_two[i].first_letter
  1452. }
  1453. this.cure_data.push(obj)
  1454. }
  1455. }
  1456. // for (let i = 0; i < response.data.data.list_three.length; i++) {
  1457. // //已就诊
  1458. // if (response.data.data.list_three[i].prescription.length > 0) {
  1459. // let obj = {
  1460. // name: response.data.data.list_three[i].name,
  1461. // number: "",
  1462. // id: response.data.data.list_three[i].id,
  1463. // his_patient_id: 0,
  1464. // first_letter: response.data.data.list_three[i].first_letter
  1465. // }
  1466. // this.cure_data.push(obj)
  1467. // }
  1468. // }
  1469. this.all_data = this.all_data.concat(this.cure_data)
  1470. this.all_data = this.all_data.concat(this.un_cure_data)
  1471. this.cure_data_two = this.cure_data
  1472. this.un_cure_data_two = this.un_cure_data
  1473. this.all_data_two = this.all_data
  1474. this.cal_one = this.un_cure_data.length
  1475. this.cal_two = this.cure_data.length
  1476. this.admin_info = response.data.data.info
  1477. if (this.un_cure_data.length > 0) {
  1478. if (this.radio == 0) {
  1479. this.$refs.tab.setCurrentRow(this.all_data[0])
  1480. this.oldCurrentRow = this.all_data[0]
  1481. this.getPatientInfo(this.all_data[0])
  1482. } else if (this.radio == 1) {
  1483. this.$refs.tab.setCurrentRow(this.un_cure_data[0])
  1484. this.oldCurrentRow = this.un_cure_data[0]
  1485. this.getPatientInfo(this.un_cure_data[0])
  1486. } else if (this.radio == 2) {
  1487. this.$refs.tab.setCurrentRow(this.cure_data[0])
  1488. this.oldCurrentRow = this.cure_data[0]
  1489. this.getPatientInfo(this.cure_data[0])
  1490. }
  1491. }
  1492. }
  1493. })
  1494. },
  1495. setMonthPrescription(month_prescriptions) {
  1496. console.log("--======-66666777--====")
  1497. this.month_prescriptions = []
  1498. let drug_month_prescriptions = {
  1499. advices: []
  1500. }
  1501. let drug_ids = []
  1502. let project_month_prescriptions = {
  1503. project: []
  1504. }
  1505. let project_ids = []
  1506. let addition_month_prescriptions = {
  1507. addition: []
  1508. }
  1509. let additions_ids = []
  1510. for (let i = 0; i < month_prescriptions.length; i++) {
  1511. if (month_prescriptions[i].type == 1) { //药品
  1512. for (let a = 0; a < month_prescriptions[i].advices.length; a++) {
  1513. let obj = {
  1514. id: month_prescriptions[i].advices[a].drug_id,
  1515. price: month_prescriptions[i].advices[a].price
  1516. }
  1517. drug_ids.push(obj)
  1518. drug_month_prescriptions.advices.push(month_prescriptions[i].advices[a])
  1519. }
  1520. } else if (month_prescriptions[i].type == 2) { //项目
  1521. for (let a = 0; a < month_prescriptions[i].project.length; a++) {
  1522. let obj = {
  1523. id: month_prescriptions[i].project[a].project_id,
  1524. price: month_prescriptions[i].project[a].price
  1525. }
  1526. project_ids.push(obj)
  1527. project_month_prescriptions.project.push(month_prescriptions[i].project[a])
  1528. }
  1529. }
  1530. //附加收费
  1531. // for (let a = 0; a < month_prescriptions[i].addition.length; a++) {
  1532. // let obj = {
  1533. // id: month_prescriptions[i].addition[a].item_id,
  1534. // price: month_prescriptions[i].addition[a].price
  1535. //
  1536. // }
  1537. // additions_ids.push(obj)
  1538. // addition_month_prescriptions.addition.push(month_prescriptions[i].addition[a])
  1539. // }
  1540. }
  1541. const obj = {}
  1542. const obj1 = {}
  1543. const obj2 = {}
  1544. drug_ids = drug_ids.reduce((cur, next) => {
  1545. obj[next.price] ? '' : obj[next.price] = true && cur.push(next)
  1546. return cur
  1547. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  1548. project_ids = project_ids.reduce((cur, next) => {
  1549. obj[next.price] ? '' : obj[next.price] = true && cur.push(next)
  1550. return cur
  1551. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  1552. additions_ids = additions_ids.reduce((cur, next) => {
  1553. obj[next.price] ? '' : obj[next.price] = true && cur.push(next)
  1554. return cur
  1555. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  1556. let drugs = []
  1557. let projects = []
  1558. let additions = []
  1559. for (let i = 0; i < drug_ids.length; i++) {
  1560. let obj = {}
  1561. let count = 0
  1562. for (let a = 0; a < drug_month_prescriptions.advices.length; a++) {
  1563. if (drug_ids[i].price == drug_month_prescriptions.advices[a].price) {
  1564. obj['drug_name'] = drug_month_prescriptions.advices[a].advice_name
  1565. obj['single_dose'] = drug_month_prescriptions.advices[a].single_dose
  1566. obj['delivery_way'] = drug_month_prescriptions.advices[a].delivery_way
  1567. obj['execution_frequency'] = drug_month_prescriptions.advices[a].execution_frequency
  1568. obj['day'] = drug_month_prescriptions.advices[a].day
  1569. // obj['prescribing_number'] = obj['prescribing_number'] + drug_month_prescriptions.advices[a].prescribing_number
  1570. obj['prescribing_number_unit'] = drug_month_prescriptions.advices[a].prescribing_number_unit
  1571. obj['medical_insurance_number'] = drug_month_prescriptions.advices[a].drug.medical_insurance_number
  1572. obj['id'] = drug_month_prescriptions.advices[a].drug_id
  1573. // obj['retail_price'] = obj['retail_price'] + drug_month_prescriptions.advices[a].drug.retail_price
  1574. obj['retail_price'] = parseFloat(drug_month_prescriptions.advices[a].price)
  1575. obj['drug'] = drug_month_prescriptions.advices[a].drug
  1576. obj['single_dose_unit'] = drug_month_prescriptions.advices[a].single_dose_unit
  1577. count = count + drug_month_prescriptions.advices[a].prescribing_number
  1578. }
  1579. }
  1580. obj['prescribing_number'] = count
  1581. drugs.push(obj)
  1582. }
  1583. for (let i = 0; i < project_ids.length; i++) {
  1584. let obj = {}
  1585. let count = 0
  1586. for (let a = 0; a < project_month_prescriptions.project.length; a++) {
  1587. if (project_ids[i].price == project_month_prescriptions.project[a].price) {
  1588. if (project_month_prescriptions.project[a].type == 2) {
  1589. obj['statistical_classification'] = ''
  1590. obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code
  1591. obj['project_name'] = project_month_prescriptions.project[a].project.project_name
  1592. obj['project'] = project_month_prescriptions.project[a].project
  1593. } else if (project_month_prescriptions.project[a].type == 3) {
  1594. obj['statistical_classification'] = ''
  1595. obj['medical_code'] = project_month_prescriptions.project[a].good_info.medical_insurance_number
  1596. obj['project_name'] = project_month_prescriptions.project[a].good_info.good_name
  1597. obj['good_info'] = project_month_prescriptions.project[a].good_info
  1598. }
  1599. // obj['project_name'] = project_month_prescriptions.project[a].project.project_name
  1600. // obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification
  1601. obj['single_dose'] = project_month_prescriptions.project[a].single_dose
  1602. obj['type'] = project_month_prescriptions.project[a].type
  1603. obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way
  1604. obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency
  1605. obj['number_days'] = project_month_prescriptions.project[a].day
  1606. // obj['medical_c/**/ode'] = project_month_prescriptions.project[a].project.medical_code
  1607. obj['unit'] = project_month_prescriptions.project[a].unit
  1608. obj['project_id'] = project_month_prescriptions.project[a].project_id
  1609. if(project_month_prescriptions.project[a].project_id == 12302){
  1610. console.log("--======---====")
  1611. console.log("--======---====")
  1612. console.log(count)
  1613. }
  1614. count = count + parseFloat(project_month_prescriptions.project[a].count)
  1615. // price = price + project_month_prescriptions.project[a].price
  1616. obj['price'] = parseFloat(project_month_prescriptions.project[a].price)
  1617. }
  1618. }
  1619. obj['total'] = count
  1620. projects.push(obj)
  1621. }
  1622. for (let i = 0; i < additions_ids.length; i++) {
  1623. let obj = {}
  1624. let count = 0
  1625. if (addition_month_prescriptions.addition) {
  1626. for (let a = 0; a < addition_month_prescriptions.addition.length; a++) {
  1627. if (project_ids[i].price == addition_month_prescriptions.addition[a].price) {
  1628. obj['item_name'] = addition_month_prescriptions.addition[a].item_name
  1629. obj['id'] = addition_month_prescriptions.addition[a].id
  1630. obj['item_id'] = addition_month_prescriptions.addition[a].item_id
  1631. count = count + addition_month_prescriptions.addition[a].count
  1632. obj['price'] = parseFloat(addition_month_prescriptions.addition[a].price)
  1633. }
  1634. }
  1635. obj['count'] = count
  1636. additions.push(obj)
  1637. }
  1638. }
  1639. let p1 = {
  1640. name: '处方' + 1,
  1641. advices: drugs,
  1642. project: [],
  1643. type: 1,
  1644. addition: additions
  1645. }
  1646. let p2 = {
  1647. name: '处方' + 2,
  1648. type: 2,
  1649. project: projects,
  1650. advices: [],
  1651. addition: []
  1652. }
  1653. this.month_prescriptions.push(p1)
  1654. this.month_prescriptions.push(p2)
  1655. },
  1656. // setMonthPrescription(month_prescriptions){
  1657. // let drug_month_prescriptions = {
  1658. // advices:[],
  1659. // }
  1660. // let drug_ids=[]
  1661. // let project_month_prescriptions ={
  1662. // project:[],
  1663. //
  1664. // }
  1665. // let project_ids=[]
  1666. //
  1667. // let addition_month_prescriptions ={
  1668. // addtions:[],
  1669. //
  1670. // }
  1671. // let additions_ids=[]
  1672. //
  1673. //
  1674. // for (let i = 0; i < month_prescriptions.length; i++){
  1675. // if(month_prescriptions[i].type == 1){ //药品
  1676. // for (let a = 0; a < month_prescriptions[i].advices.length; a++){
  1677. // drug_ids.push(month_prescriptions[i].advices[a].drug_id)
  1678. // drug_month_prescriptions.advices.push(month_prescriptions[i].advices[a])
  1679. // }
  1680. //
  1681. // }else if(month_prescriptions[i].type == 2){ //项目
  1682. // for (let a = 0; a < month_prescriptions[i].project.length; a++){
  1683. // project_ids.push(month_prescriptions[i].project[a].project_id)
  1684. // project_month_prescriptions.project.push(month_prescriptions[i].project[a])
  1685. // }
  1686. // }
  1687. // //附加收费
  1688. // for (let a = 0; a < month_prescriptions[i].addition.length; a++) {
  1689. // additions_ids.push(month_prescriptions[i].addition[a].item_id)
  1690. // addition_month_prescriptions.addtions.push(month_prescriptions[i].addition[a])
  1691. // }
  1692. //
  1693. // }
  1694. //
  1695. //
  1696. //
  1697. //
  1698. // const obj = {}
  1699. // const obj1 = {}
  1700. // const obj2 = {}
  1701. //
  1702. // drug_ids = drug_ids.reduce((cur, next) => {
  1703. // obj[next] ? '' : obj[next] = true && cur.push(next)
  1704. // return cur
  1705. // }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  1706. // project_ids = project_ids.reduce((cur, next) => {
  1707. // obj1[next] ? '' : obj1[next] = true && cur.push(next)
  1708. // return cur
  1709. // }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  1710. // additions_ids = additions_ids.reduce((cur, next) => {
  1711. // obj2[next] ? '' : obj2[next] = true && cur.push(next)
  1712. // return cur
  1713. // }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  1714. //
  1715. //
  1716. //
  1717. //
  1718. //
  1719. // let drugs =[]
  1720. // let projects =[]
  1721. // let additions =[]
  1722. //
  1723. //
  1724. // for (let i = 0; i < drug_ids.length; i++){
  1725. // let obj = {}
  1726. // let price = 0
  1727. // let count = 0
  1728. // for (let a = 0; a < drug_month_prescriptions.advices.length; a++){
  1729. // if(drug_ids[i] == drug_month_prescriptions.advices[a].drug_id){
  1730. // obj['drug_name'] = drug_month_prescriptions.advices[a].advice_name
  1731. // obj['single_dose'] = drug_month_prescriptions.advices[a].single_dose
  1732. // obj['delivery_way'] = drug_month_prescriptions.advices[a].delivery_way
  1733. // obj['execution_frequency'] = drug_month_prescriptions.advices[a].execution_frequency
  1734. // obj['day'] = drug_month_prescriptions.advices[a].day
  1735. // // obj['prescribing_number'] = obj['prescribing_number'] + drug_month_prescriptions.advices[a].prescribing_number
  1736. // obj['prescribing_number_unit'] = drug_month_prescriptions.advices[a].prescribing_number_unit
  1737. // obj['medical_insurance_number'] = drug_month_prescriptions.advices[a].drug.medical_insurance_number
  1738. // obj['id'] = drug_month_prescriptions.advices[a].drug_id
  1739. // // obj['retail_price'] = obj['retail_price'] + drug_month_prescriptions.advices[a].drug.retail_price
  1740. //
  1741. //
  1742. // count = count + drug_month_prescriptions.advices[a].prescribing_number
  1743. // price = price + drug_month_prescriptions.advices[a].price
  1744. //
  1745. // }
  1746. // }
  1747. // obj['retail_price'] = price
  1748. // obj['prescribing_number'] = count
  1749. // drugs.push(obj)
  1750. // }
  1751. //
  1752. //
  1753. //
  1754. //
  1755. // for (let i = 0; i < project_ids.length; i++){
  1756. // let obj = {}
  1757. // let price = 0
  1758. // let count = 0
  1759. // for (let a = 0; a < project_month_prescriptions.project.length; a++){
  1760. // if(project_ids[i] == project_month_prescriptions.project[a].project_id){
  1761. // obj['project_name'] = project_month_prescriptions.project[a].project.project_name
  1762. // obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification
  1763. // obj['single_dose'] = project_month_prescriptions.project[a].single_dose
  1764. // obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way
  1765. // obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency
  1766. // obj['number_days'] = project_month_prescriptions.project[a].day
  1767. // obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code
  1768. // obj['unit'] = project_month_prescriptions.project[a].unit
  1769. // obj['project_id'] = project_month_prescriptions.project[a].project_id
  1770. // count = count + project_month_prescriptions.project[a].count
  1771. // price = price + project_month_prescriptions.project[a].price
  1772. // }
  1773. // }
  1774. // obj['price'] = price
  1775. // obj['total'] = count
  1776. // projects.push(obj)
  1777. // }
  1778. //
  1779. //
  1780. // for (let i = 0; i < additions_ids.length; i++){
  1781. // let obj = {}
  1782. // let price = 0
  1783. // let count = 0
  1784. // for (let a = 0; a < addition_month_prescriptions.addition.length; a++){
  1785. // if(project_ids[i] == addition_month_prescriptions.addition[a].item_id){
  1786. // obj['item_name'] = addition_month_prescriptions.addition[a].item_name
  1787. // obj['id'] = addition_month_prescriptions.addition[a].id
  1788. // obj['item_id'] = addition_month_prescriptions.addition[a].item_id
  1789. // count = count + addition_month_prescriptions.addition[a].count
  1790. // price = price + addition_month_prescriptions.addition[a].price
  1791. // }
  1792. // }
  1793. // obj['price'] = price
  1794. // obj['count'] = count
  1795. // additions.push(obj)
  1796. // }
  1797. //
  1798. //
  1799. // let p1 = {
  1800. // name: '处方' + 1,
  1801. // advices: drugs,
  1802. // project: [],
  1803. // type:1,
  1804. // addition: additions,
  1805. // }
  1806. // let p2 = {
  1807. // name: '处方' + 2,
  1808. // type:2,
  1809. // project: projects,
  1810. // advices: [],
  1811. // }
  1812. // this.month_prescriptions.push(p1)
  1813. // this.month_prescriptions.push(p2)
  1814. //
  1815. // },
  1816. getInitData() {
  1817. getInitData().then(response => {
  1818. if (response.data.state == 0) {
  1819. this.$message.error(response.data.msg)
  1820. return false
  1821. } else {
  1822. var drugs = response.data.data.drugs
  1823. console.log('232323322323332', drugs)
  1824. // for (let i = 0; i < drugs.length; i++) {
  1825. // drugs[i].count = 0
  1826. // if (drugs[i].stock_in != null) {
  1827. // if (drugs[i].stock_in.length > 0) {
  1828. // for (let j = 0; j < drugs[i].stock_in.length; j++) {
  1829. // drugs[i].count += (drugs[i].stock_in[j].stock_max_number * drugs[i].min_number + drugs[i].stock_in[j].stock_min_number)
  1830. // }
  1831. // }
  1832. // }
  1833. // }
  1834. this.drugs = drugs
  1835. this.allDrugs = response.data.data.drugs
  1836. this.advices_template = response.data.data.advices_template
  1837. this.department = response.data.data.department
  1838. this.sick = response.data.data.sick
  1839. var diagnoses = response.data.data.diagnose
  1840. console.log('hhhhhshshsh', diagnoses.sort(this.compare('sort')))
  1841. if (diagnoses != null && diagnoses.length > 0) {
  1842. this.diagnoses = diagnoses.sort(this.compare('sort'))
  1843. } else {
  1844. this.diagnoses = []
  1845. }
  1846. var patientDiagnose = response.data.data.patientDiagnose
  1847. if (patientDiagnose != null && patientDiagnose.length > 0) {
  1848. this.patient_diagnoses = []
  1849. this.patient_diagnoses = patientDiagnose.sort(this.compare('sort'))
  1850. } else {
  1851. this.patient_diagnoses = []
  1852. }
  1853. this.additions = response.data.data.additions
  1854. }
  1855. })
  1856. },
  1857. compare(p) { //这是比较函数
  1858. return function(m, n) {
  1859. var a = m[p]
  1860. var b = n[p]
  1861. return a - b //升序
  1862. }
  1863. },
  1864. getList() {
  1865. let params = {
  1866. 'record_date': this.record_date,
  1867. 'type': this.radio,
  1868. 'sch_type': this.schedule_type
  1869. }
  1870. this.un_cure_data = []
  1871. this.cure_data = []
  1872. this.all_data = []
  1873. getSchedulePatientList(params).then(response => {
  1874. if (response.data.state == 0) {
  1875. this.$message.error(response.data.msg)
  1876. return false
  1877. } else {
  1878. console.log('getSchedulePatientList', response.data.data)
  1879. //排班
  1880. for (let i = 0; i < response.data.data.list_two.length; i++) {
  1881. //未就诊
  1882. if (response.data.data.list_two[i].prescription.length == 0 && response.data.data.list_two[i].his_patient.id == 0) {
  1883. let obj = {
  1884. name: response.data.data.list_two[i].name,
  1885. number: response.data.data.list_two[i].his_patient.number,
  1886. id: response.data.data.list_two[i].id,
  1887. his_patient_id: response.data.data.list_two[i].his_patient.id,
  1888. first_letter: response.data.data.list_two[i].first_letter,
  1889. patient_type: response.data.data.list_two[i].patient_type
  1890. }
  1891. this.un_cure_data.push(obj)
  1892. }
  1893. //已就诊
  1894. if (response.data.data.list_two[i].prescription.length > 0 && response.data.data.list_two[i].his_patient.id == 0) {
  1895. let obj = {
  1896. name: response.data.data.list_two[i].name,
  1897. number: response.data.data.list_two[i].his_patient.number,
  1898. id: response.data.data.list_two[i].id,
  1899. his_patient_id: response.data.data.list_two[i].his_patient.id,
  1900. first_letter: response.data.data.list_two[i].first_letter,
  1901. patient_type: response.data.data.list_two[i].patient_type
  1902. }
  1903. this.cure_data.push(obj)
  1904. }
  1905. }
  1906. //挂号
  1907. for (let i = 0; i < response.data.data.list.length; i++) {
  1908. for (let b = 0; b < response.data.data.list[i].his_patient.length; b++) {
  1909. //未就诊
  1910. if (response.data.data.list[i].his_patient[b].prescription.length == 0) {
  1911. let obj = {
  1912. name: response.data.data.list[i].his_patient[b].name,
  1913. number: response.data.data.list[i].his_patient[b].number,
  1914. id: response.data.data.list[i].id,
  1915. his_patient_id: response.data.data.list[i].his_patient[b].id,
  1916. first_letter: response.data.data.list[i].first_letter,
  1917. patient_type: response.data.data.list[i].patient_type
  1918. }
  1919. // console.log('8888',obj);
  1920. this.un_cure_data.push(obj)
  1921. }
  1922. //已就诊
  1923. if (response.data.data.list[i].his_patient[b].prescription.length > 0) {
  1924. let obj = {
  1925. name: response.data.data.list[i].his_patient[b].name,
  1926. number: response.data.data.list[i].his_patient[b].number,
  1927. id: response.data.data.list[i].id,
  1928. his_patient_id: response.data.data.list[i].his_patient[b].id,
  1929. first_letter: response.data.data.list[i].first_letter,
  1930. patient_type: response.data.data.list[i].patient_type
  1931. }
  1932. this.cure_data.push(obj)
  1933. }
  1934. }
  1935. }
  1936. this.all_data = this.all_data.concat(this.cure_data)
  1937. this.all_data = this.all_data.concat(this.un_cure_data)
  1938. this.cure_data_two = this.cure_data
  1939. this.un_cure_data_two = this.un_cure_data
  1940. this.all_data_two = this.all_data
  1941. this.cal_one = this.un_cure_data.length
  1942. this.cal_two = this.cure_data.length
  1943. this.admin_info = response.data.data.info
  1944. if (this.un_cure_data.length > 0) {
  1945. this.$refs.tab.setCurrentRow(this.un_cure_data[0])
  1946. this.oldCurrentRow = this.un_cure_data[0]
  1947. this.getPatientInfo(this.un_cure_data[0])
  1948. }
  1949. console.log('1111111this.all_data',this.cure_data);
  1950. }
  1951. })
  1952. },
  1953. getPatientInfo(val) {
  1954. var nowDate = new Date()
  1955. var nowYear = nowDate.getFullYear()
  1956. var nowMonth = nowDate.getMonth() + 1
  1957. var nowDay = nowDate.getDate()
  1958. var hours = nowDate.getHours()
  1959. var min = nowDate.getMinutes()
  1960. var nowTime =
  1961. nowYear +
  1962. '-' +
  1963. (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
  1964. '-' +
  1965. (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (hours < 10 ? '0' + hours : hours) +
  1966. ':' + (min < 10 ? '0' + min : min)
  1967. let params = {
  1968. 'record_date': this.record_date,
  1969. 'patient_id': val.id,
  1970. 'his_patient_id': val.his_patient_id,
  1971. 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
  1972. 'end_time': moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
  1973. 'p_type': 2
  1974. }
  1975. this.isloading = true
  1976. getPatientInfo(params).then(response => {
  1977. if (response.data.state == 0) {
  1978. this.$message.error(response.data.msg)
  1979. this.isloading = false
  1980. return false
  1981. } else {
  1982. if (this.$store.getters.xt_user.org_id != 10215) {
  1983. if (response.data.data.sch_prescriptions == null) {
  1984. response.data.data.sch_prescriptions = []
  1985. }
  1986. } else {
  1987. response.data.data.sch_prescriptions = []
  1988. }
  1989. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  1990. if (response.data.data.sch_prescriptions[i].advices == null) {
  1991. response.data.data.sch_prescriptions[i].advices = []
  1992. }
  1993. if (response.data.data.sch_prescriptions[i].project == null) {
  1994. response.data.data.sch_prescriptions[i].project = []
  1995. }
  1996. }
  1997. this.patientid = val.id
  1998. this.isloading = false
  1999. this.prescriptions = []
  2000. this.month_prescriptions = []
  2001. this.patientInfo = response.data.data.xt_info
  2002. this.hisPatientInfo = response.data.data.his_info
  2003. this.case_history = response.data.data.case_history
  2004. this.info = response.data.data.info
  2005. this.last_info = response.data.data.last_info
  2006. this.schedule = response.data.data.schedule
  2007. this.doctors = response.data.data.doctors
  2008. this.department = response.data.data.department
  2009. this.befor = response.data.data.befor
  2010. this.LastCaseHistory= response.data.data.LastCaseHistory
  2011. for (let i = 0; i < this.doctors.length; i++) {
  2012. if (this.doctors[i].user_type == 1) {
  2013. this.doctors.splice(i, 1)
  2014. }
  2015. }
  2016. // var month_prescriptions = response.data.data.month_prescriptions
  2017. // this.setMonthPrescription(month_prescriptions)
  2018. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  2019. if (this.case_history.temperature <= 0) {
  2020. this.case_history.temperature = ''
  2021. }
  2022. if (this.case_history.blood_sugar <= 0) {
  2023. this.case_history.blood_sugar = ''
  2024. }
  2025. if (this.case_history.pulse <= 0) {
  2026. this.case_history.pulse = ''
  2027. }
  2028. if (this.case_history.sbp <= 0) {
  2029. this.case_history.sbp = ''
  2030. }
  2031. if (this.case_history.dbp <= 0) {
  2032. this.case_history.dbp = ''
  2033. }
  2034. if (this.case_history.height <= 0) {
  2035. this.case_history.height = ''
  2036. }
  2037. if (this.case_history.blood_fat <= 0) {
  2038. this.case_history.blood_fat = ''
  2039. }
  2040. if (this.case_history.sick_type <= 0) {
  2041. this.case_history.sick_type = ''
  2042. }
  2043. if (this.case_history.sick <= 0) {
  2044. this.case_history.sick = ''
  2045. }
  2046. if (this.case_history.diagnose <= 0) {
  2047. this.case_history.diagnose = ''
  2048. }
  2049. this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
  2050. if (this.case_history.is_infect == 1) {
  2051. this.case_history.is_infect = true
  2052. } else {
  2053. this.case_history.is_infect = false
  2054. }
  2055. this.case_history.allergic_history = this.case_history.allergic_history
  2056. this.case_history.primary_disease = this.case_history.primary_disease
  2057. this.case_history.confirm_failure_date = uParseTime(this.case_history.confirm_failure_date, '{y}-{m}-{d}')
  2058. this.case_history.drug_allergy_history = this.case_history.drug_allergy_history
  2059. this.case_history.physical_examination = this.case_history.physical_examination
  2060. this.case_history.special_inspection = this.case_history.special_inspection
  2061. this.case_history.lab_apparatus = this.case_history.lab_apparatus
  2062. //处方相关
  2063. this.prescriptionList = response.data.data.prescription
  2064. var prescriptionInfo = response.data.data.prescriptionInfo
  2065. console.log("prescriptionInfo-----------------",prescriptionInfo)
  2066. this.prescriptionInfo = prescriptionInfo
  2067. let is_medicine = false
  2068. if (response.data.data.prescription.length > 0) {
  2069. for (let i = 0; i < response.data.data.prescription.length; i++) {
  2070. var prescription = response.data.data.prescription[i]
  2071. let tempAdvice = []
  2072. let tempProject = []
  2073. let tempAddition = []
  2074. //药品
  2075. for (let b = 0; b < prescription.advices.length; b++) {
  2076. let obj = {
  2077. advice_id: prescription.advices[b].id,
  2078. drug_name: prescription.advices[b].advice_name,
  2079. single_dose: prescription.advices[b].single_dose,
  2080. delivery_way: prescription.advices[b].delivery_way,
  2081. execution_frequency: prescription.advices[b].execution_frequency,
  2082. retail_price: prescription.advices[b].price.toString(),
  2083. remark: prescription.advices[b].remark,
  2084. day: prescription.advices[b].day,
  2085. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  2086. single_dose_unit: prescription.advices[b].single_dose_unit,
  2087. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  2088. medical_insurance_number: prescription.advices[b].med_list_codg,
  2089. id: prescription.advices[b].drug_id,
  2090. drug: prescription.advices[b].drug,
  2091. groupno: prescription.advices[b].groupno,
  2092. hosp_appr_flag: prescription.advices[b].hosp_appr_flag.toString(),
  2093. execution_state: prescription.advices[b].execution_state,
  2094. is_medicine: prescription.advices[b].is_medicine,
  2095. is_self_drug: prescription.advices[b].is_self_drug.toString(),
  2096. drug_way_count: prescription.advices[b].drug_way_count
  2097. }
  2098. tempAdvice.push(obj)
  2099. console.log(prescription.advices[b].is_medicine)
  2100. if (prescription.advices[b].is_medicine == 1) {
  2101. console.log('~~~~~~~')
  2102. is_medicine = true
  2103. }
  2104. }
  2105. //项目
  2106. for (let b = 0; b < prescription.project.length; b++) {
  2107. let obj = {
  2108. id: prescription.project[b].id,
  2109. project_id: prescription.project[b].project_id,
  2110. project_name: prescription.project[b].project.project_name,
  2111. // statistical_classification: prescription.project[b].project.statistical_classification,
  2112. single_dose: prescription.project[b].single_dose,
  2113. delivery_way: prescription.project[b].delivery_way,
  2114. execution_frequency: prescription.project[b].execution_frequency,
  2115. number_days: prescription.project[b].day,
  2116. total: prescription.project[b].count.toString(),
  2117. price: prescription.project[b].price,
  2118. remark: prescription.project[b].remark,
  2119. medical_code: prescription.project[b].project.medical_code,
  2120. unit: prescription.project[b].unit,
  2121. type: prescription.project[b].type,
  2122. execution_state: prescription.project[b].execution_state
  2123. }
  2124. if (prescription.project[b].type == 2) {
  2125. obj['statistical_classification'] = prescription.project[b].team.project_team
  2126. obj['medical_code'] = prescription.project[b].project.medical_code
  2127. obj['project_name'] = prescription.project[b].project.project_name
  2128. obj['project'] = prescription.project[b].project
  2129. } else if (prescription.project[b].type == 3) {
  2130. obj['statistical_classification'] = ''
  2131. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  2132. obj['project_name'] = prescription.project[b].good_info.good_name
  2133. obj['good_info'] = prescription.project[b].good_info
  2134. }
  2135. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  2136. obj['single_dose'] = "1"
  2137. }
  2138. tempProject.push(obj)
  2139. }
  2140. //附加收费
  2141. // for (let b = 0; b < prescription.addition.length; b++) {
  2142. // let obj = {
  2143. // id: prescription.addition[b].id,
  2144. // item_name: prescription.addition[b].item_name,
  2145. // price: prescription.addition[b].price,
  2146. // count: prescription.addition[b].count,
  2147. // item_id: prescription.addition[b].item_id
  2148. // }
  2149. // tempAddition.push(obj)
  2150. // }
  2151. console.log("test2")
  2152. var preTime = nowTime
  2153. if ( this.$store.getters.xt_user.org.id != 9919 && this.$store.getters.xt_user.org.id != 10485 && this.$store.getters.xt_user.org.id != 10191 && this.$store.getters.xt_user.org.id != 10375 ) {
  2154. if (prescription.pre_time == 0) {
  2155. if (this.schedule.schedule_type == 1) {
  2156. if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 10633) {
  2157. preTime = this.record_date + ' ' + '6:30'
  2158. } else if(this.org_id == 10206 || this.org_id == 10598){
  2159. preTime = this.record_date + ' ' + '6:00'
  2160. }else if(this.org_id == 10721){
  2161. preTime = this.record_date + ' ' + '05:30'
  2162. } else {
  2163. preTime = this.record_date + ' ' + '7:00'
  2164. }
  2165. } else if (this.schedule.schedule_type == 2) {
  2166. if(this.org_id == 10206 || this.org_id == 0 ){
  2167. preTime = this.record_date + ' ' + '10:30'
  2168. }else if(this.org_id == 10598){
  2169. preTime = this.record_date + ' ' + '09:00'
  2170. }else if(this.org_id == 10721){
  2171. preTime = this.record_date + ' ' + '10:00'
  2172. }else{
  2173. preTime = this.record_date + ' ' + '11:00'
  2174. }
  2175. } else if (this.schedule.schedule_type == 3) {
  2176. preTime = this.record_date + ' ' + '17:00'
  2177. }
  2178. // preTime = nowTime
  2179. if(this.org_id == 10510 || this.org_id == 0){
  2180. preTime = nowTime
  2181. }
  2182. } else {
  2183. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  2184. }
  2185. } else {
  2186. if (prescription.pre_time == 0) {
  2187. if(nowTime.split(" ")[0] != this.record_date){
  2188. // preTime = this.record_date
  2189. if(this.schedule.schedule_type == 1){
  2190. if(this.org_id == 10206 || this.org_id == 10598) {
  2191. preTime = this.record_date+ ' ' + '6:00'
  2192. } else if(this.org_id == 10721){
  2193. preTime = this.record_date + ' ' + '05:30'
  2194. }else {
  2195. preTime = this.record_date + ' ' + '7:00'
  2196. }
  2197. }else if(this.schedule.schedule_type == 2){
  2198. if(this.org_id == 10206 || this.org_id == 0){
  2199. preTime = this.record_date + ' ' + '10:30'
  2200. }else if(this.org_id == 10721){
  2201. preTime = this.record_date + ' ' + '10:00'
  2202. }else if(this.org_id == 10598){
  2203. preTime = this.record_date + ' ' + '09:00'
  2204. }else {
  2205. preTime = this.record_date + ' ' + '11:00'
  2206. }
  2207. }else{
  2208. preTime = this.record_date + ' ' + '17:00'
  2209. }
  2210. if(this.org_id == 10510 || this.org_id == 0){
  2211. preTime = nowTime
  2212. }
  2213. }
  2214. } else {
  2215. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  2216. }
  2217. }
  2218. let diass = []
  2219. if(prescription.diagnose.length > 0) {
  2220. for (let i = 0; i < prescription.diagnose.split(",").length; i++) {
  2221. diass.push(parseInt(prescription.diagnose.split(",")[i]))
  2222. }
  2223. }
  2224. let index = i + 1
  2225. let obj = {
  2226. id: prescription.id,
  2227. name: '处方' + index,
  2228. advices: tempAdvice,
  2229. project: tempProject,
  2230. addition: tempAddition,
  2231. diagnose: diass,
  2232. order_status: prescription.order_status,
  2233. pre_time: preTime,
  2234. med_type: parseInt(prescription.med_type),
  2235. is_medicine_status: is_medicine
  2236. }
  2237. this.prescriptions.push(obj)
  2238. }
  2239. } else {
  2240. console.log("00000000000000")
  2241. if (response.data.data.count <= 1 && response.data.data.schedule.id > 0 && response.data.data.sch_prescriptions.length > 0) {
  2242. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  2243. var prescription = response.data.data.sch_prescriptions[i]
  2244. for (let b = 0; b < prescription.advices.length; b++) {
  2245. console.log(prescription.advices[b].drug.is_special_diseases)
  2246. if (prescription.med_type == '14' && prescription.advices[b].drug.is_special_diseases != 1) {
  2247. prescription.advices.splice(b--, 1)
  2248. }
  2249. }
  2250. for (let b = 0; b < prescription.project.length; b++) {
  2251. if (prescription.project[b].type == 2) {
  2252. if (prescription.med_type == '14' && prescription.project[b].project.disease_directory != 1) {
  2253. prescription.project.splice(b--, 1)
  2254. }
  2255. } else if (prescription.project[b].type == 3) {
  2256. if (prescription.med_type == '14' && prescription.project[b].good_info.is_special_diseases != 1) {
  2257. prescription.project.splice(b--, 1)
  2258. }
  2259. }
  2260. }
  2261. }
  2262. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  2263. var prescription = response.data.data.sch_prescriptions[i]
  2264. console.log("-----======-0-----------")
  2265. console.log(prescription)
  2266. console.log("-----======-0-----------")
  2267. let tempAdvice = []
  2268. let tempProject = []
  2269. let tempAddition = []
  2270. //药品
  2271. for (let b = 0; b < prescription.advices.length; b++) {
  2272. let obj = {
  2273. advice_id: 0,
  2274. drug_name: prescription.advices[b].advice_name,
  2275. single_dose: prescription.advices[b].single_dose,
  2276. delivery_way: prescription.advices[b].delivery_way,
  2277. execution_frequency: prescription.advices[b].execution_frequency,
  2278. // retail_price: prescription.advices[b].price.toString(),
  2279. remark: prescription.advices[b].remark,
  2280. day: prescription.advices[b].day,
  2281. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  2282. single_dose_unit: prescription.advices[b].single_dose_unit,
  2283. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  2284. medical_insurance_number: prescription.advices[b].med_list_codg,
  2285. id: prescription.advices[b].drug_id,
  2286. drug: prescription.advices[b].drug,
  2287. groupno: prescription.advices[b].groupno,
  2288. hosp_appr_flag: '1',
  2289. execution_state: 2,
  2290. is_self_drug: '',
  2291. drug_way_count: '1',
  2292. }
  2293. console.log('看看数据6:')
  2294. console.log(obj.prescribing_number_unit)
  2295. console.log(prescription.advices[b].drug.min_unit)
  2296. console.log(prescription.advices[b].drug.max_unit)
  2297. if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit) {
  2298. obj['retail_price'] = prescription.advices[b].drug.min_price
  2299. console.log('1')
  2300. console.log(obj.retail_price)
  2301. } else if (obj.prescribing_number_unit == prescription.advices[b].drug.max_unit) {
  2302. obj['retail_price'] = prescription.advices[b].drug.retail_price
  2303. console.log('2')
  2304. console.log(obj.retail_price)
  2305. } else {
  2306. console.log('3')
  2307. obj['retail_price'] = prescription.advices[b].drug.min_price
  2308. console.log(obj.retail_price)
  2309. }
  2310. tempAdvice.push(obj)
  2311. }
  2312. //项目
  2313. for (let b = 0; b < prescription.project.length; b++) {
  2314. let obj = {
  2315. id: 0,
  2316. project_id: prescription.project[b].project_id,
  2317. project_name: prescription.project[b].project.project_name,
  2318. // statistical_classification: prescription.project[b].team.project_team,
  2319. single_dose: prescription.project[b].single_dose,
  2320. delivery_way: prescription.project[b].delivery_way,
  2321. execution_frequency: prescription.project[b].execution_frequency,
  2322. number_days: prescription.project[b].day,
  2323. total: prescription.project[b].count.toString(),
  2324. remark: prescription.project[b].remark,
  2325. medical_code: prescription.project[b].project.medical_code,
  2326. unit: prescription.project[b].unit,
  2327. type: prescription.project[b].type,
  2328. execution_state: 2
  2329. }
  2330. if (prescription.project[b].type == 2) {
  2331. obj['statistical_classification'] = ''
  2332. obj['medical_code'] = prescription.project[b].project.medical_code
  2333. obj['project_name'] = prescription.project[b].project.project_name
  2334. obj['price'] = prescription.project[b].project.price
  2335. obj['project'] = prescription.project[b].project
  2336. } else if (prescription.project[b].type == 3) {
  2337. obj['statistical_classification'] = ''
  2338. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  2339. obj['project_name'] = prescription.project[b].good_info.good_name
  2340. obj['price'] = prescription.project[b].good_info.packing_price
  2341. obj['good_info'] = prescription.project[b].good_info
  2342. }
  2343. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  2344. obj['single_dose'] = "1"
  2345. }
  2346. tempProject.push(obj)
  2347. }
  2348. var preTime = nowTime
  2349. if (this.$store.getters.xt_user.org.id != 9919 && this.$store.getters.xt_user.org.id != 10485 && this.$store.getters.xt_user.org.id != 10191 && this.$store.getters.xt_user.org.id != 10375 ) {
  2350. if (this.schedule.schedule_type == 1) {
  2351. if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 10633) {
  2352. preTime = this.record_date + ' ' + '6:30'
  2353. } else if(this.org_id == 10206 || this.org_id == 10598) {
  2354. preTime = this.record_date+ ' ' + '6:00'
  2355. } else if(this.org_id == 10721 ) {
  2356. preTime = this.record_date+ ' ' + '05:30'
  2357. } else {
  2358. preTime = this.record_date + ' ' + '7:00'
  2359. }
  2360. // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
  2361. } else if (this.schedule.schedule_type == 2) {
  2362. if(this.org_id == 10206 || this.org_id == 0){
  2363. preTime = this.record_date + ' ' + '10:30'
  2364. }else if(this.org_id == 10598){
  2365. preTime = this.record_date + ' ' + '09:00'
  2366. } else if(this.org_id == 10721 ) {
  2367. preTime = this.record_date+ ' ' + '10:00'
  2368. }else {
  2369. preTime = this.record_date + ' ' + '11:00'
  2370. }
  2371. } else if (this.schedule.schedule_type == 3) {
  2372. preTime = this.record_date + ' ' + '17:00'
  2373. }
  2374. if(this.org_id == 10510 || this.org_id == 0){
  2375. preTime = nowTime
  2376. }
  2377. }
  2378. if(nowTime.split(" ")[0] != this.record_date){
  2379. if(this.schedule.schedule_type == 1){
  2380. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  2381. preTime = this.record_date+ ' ' + '6:00'
  2382. } else if(this.org_id == 10721 ) {
  2383. preTime = this.record_date+ ' ' + '05:30'
  2384. }else {
  2385. preTime = this.record_date + ' ' + '7:00'
  2386. }
  2387. }else if(this.schedule.schedule_type == 2){
  2388. if(this.org_id == 10206 || this.org_id == 0){
  2389. preTime = this.record_date + ' ' + '10:30'
  2390. }else if(this.org_id == 10598){
  2391. preTime = this.record_date + ' ' + '09:00'
  2392. }else if(this.org_id == 10721 ) {
  2393. preTime = this.record_date+ ' ' + '10:00'
  2394. } else {
  2395. preTime = this.record_date + ' ' + '11:00'
  2396. }
  2397. }else{
  2398. preTime = this.record_date + ' ' + '17:00'
  2399. }
  2400. }
  2401. let index = i + 1
  2402. let obj = {
  2403. id: 0,
  2404. name: '处方' + index,
  2405. advices: tempAdvice,
  2406. project: tempProject,
  2407. addition: tempAddition,
  2408. order_status: 1,
  2409. diagnose:[],
  2410. pre_time: preTime,
  2411. med_type: '',
  2412. is_medicine_status: false
  2413. }
  2414. if (prescription.med_type == 0 || prescription.med_type == '') {
  2415. obj.med_type = ''
  2416. } else {
  2417. obj.med_type = parseInt(prescription.med_type)
  2418. }
  2419. if (obj.med_type == 0 || obj.med_type == '') {
  2420. if (this.org_id != 10206) {
  2421. obj.med_type = 14
  2422. if (this.org_id == 10721 || this.org_id == 0){
  2423. obj.med_type = 992102
  2424. }
  2425. } else {
  2426. obj.med_type = 1
  2427. }
  2428. }else{
  2429. if (this.org_id == 10721 || this.org_id == 0){
  2430. obj.med_type = 992102
  2431. }
  2432. }
  2433. obj.diagnose = []
  2434. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  2435. // obj.diagnose = 2465
  2436. obj.diagnose.push(2465)
  2437. }
  2438. this.prescriptions.push(obj)
  2439. }
  2440. } else {
  2441. if(nowTime.split(" ")[0] != this.record_date){
  2442. // preTime = this.record_date
  2443. if(this.schedule.schedule_type == 1){
  2444. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  2445. preTime = this.record_date+ ' ' + '6:00'
  2446. }else if(this.org_id == 10721 ) {
  2447. preTime = this.record_date+ ' ' + '05:30'
  2448. }else {
  2449. preTime = this.record_date + ' ' + '7:00'
  2450. }
  2451. }else if(this.schedule.schedule_type == 2){
  2452. if(this.org_id == 10206 || this.org_id == 0){
  2453. preTime = this.record_date + ' ' + '10:30'
  2454. }else if(this.org_id == 10721 ) {
  2455. preTime = this.record_date+ ' ' + '10:00'
  2456. }else if(this.org_id == 10598){
  2457. preTime = this.record_date + ' ' + '09:00'
  2458. }else {
  2459. preTime = this.record_date + ' ' + '11:00'
  2460. }
  2461. }else{
  2462. preTime = this.record_date + ' ' + '17:00'
  2463. }
  2464. }else{
  2465. preTime = nowTime
  2466. }
  2467. let obj = {
  2468. id: 0,
  2469. name: '处方' + 1,
  2470. advices: [],
  2471. project: [],
  2472. addition: [],
  2473. diagnose:[],
  2474. order_status: 0,
  2475. pre_time: preTime,
  2476. med_type: '',
  2477. is_medicine_status: false
  2478. }
  2479. if (this.org_id != 10206) {
  2480. obj.med_type = 14
  2481. if (this.org_id == 10721 || this.org_id == 0){
  2482. obj.med_type = 992102
  2483. }
  2484. }else{
  2485. obj.med_type = 1
  2486. }
  2487. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  2488. // obj.diagnose = 2465
  2489. obj.diagnose.push(2465)
  2490. }
  2491. this.prescriptions.push(obj)
  2492. }
  2493. }
  2494. this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis, this.patient_diagnoses)
  2495. }
  2496. })
  2497. },
  2498. choosePatient(val) {
  2499. if (this.titleType == '电子病历') {
  2500. if (this.$refs.child != undefined && this.$refs.child.watchSign > 2) {
  2501. this.$confirm('是否保存当前病例', '保存', {
  2502. confirmButtonText: '确 定',
  2503. cancelButtonText: '取 消',
  2504. type: 'warning'
  2505. }).then(() => {
  2506. this.$refs.child.createCaseHistory(this.newPatientId)
  2507. this.patientid = val.id
  2508. let params = {
  2509. 'record_date': this.record_date,
  2510. 'patient_id': val.id,
  2511. 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
  2512. 'end_time': moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
  2513. 'p_type': 2
  2514. }
  2515. var nowDate = new Date()
  2516. var nowYear = nowDate.getFullYear()
  2517. var nowMonth = nowDate.getMonth() + 1
  2518. var nowDay = nowDate.getDate()
  2519. var hours = nowDate.getHours()
  2520. var min = nowDate.getMinutes()
  2521. var nowTime =
  2522. nowYear +
  2523. '-' +
  2524. (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
  2525. '-' +
  2526. (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (hours < 10 ? '0' + hours : hours) +
  2527. ':' + (min < 10 ? '0' + min : min)
  2528. getPatientInfo(params).then(response => {
  2529. if (response.data.state == 0) {
  2530. this.$message.error(response.data.msg)
  2531. return false
  2532. } else {
  2533. if (this.$store.getters.xt_user.org_id != 10215) {
  2534. if (response.data.data.sch_prescriptions == null) {
  2535. response.data.data.sch_prescriptions = []
  2536. }
  2537. } else {
  2538. response.data.data.sch_prescriptions = []
  2539. }
  2540. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  2541. if (response.data.data.sch_prescriptions[i].advices == null) {
  2542. response.data.data.sch_prescriptions[i].advices = []
  2543. }
  2544. if (response.data.data.sch_prescriptions[i].project == null) {
  2545. response.data.data.sch_prescriptions[i].project = []
  2546. }
  2547. }
  2548. this.prescriptions = []
  2549. this.month_prescriptions = []
  2550. // var month_prescriptions = response.data.data.month_prescriptions
  2551. // this.setMonthPrescription(month_prescriptions)
  2552. this.patientInfo = response.data.data.xt_info
  2553. this.hisPatientInfo = response.data.data.his_info
  2554. this.case_history = response.data.data.case_history
  2555. if (this.case_history.primary_disease == '') {
  2556. this.case_history.primary_disease = ''
  2557. } else {
  2558. this.case_history.primary_disease = this.case_history.primary_disease
  2559. }
  2560. if (this.case_history.confirm_failure_date <= 0) {
  2561. this.case_history.confirm_failure_date = ''
  2562. } else {
  2563. this.case_history.confirm_failure_date = uParseTime(this.case_history.confirm_failure_date, '{y}-{m}-{d}')
  2564. }
  2565. if (this.case_history.drug_allergy_history == '') {
  2566. this.case_history.drug_allergy_history = ''
  2567. } else {
  2568. this.case_history.drug_allergy_history = this.case_history.drug_allergy_history
  2569. }
  2570. if (this.case_history.physical_examination == '') {
  2571. this.case_history.physical_examination = ''
  2572. } else {
  2573. this.case_history.physical_examination = this.case_history.physical_examination
  2574. }
  2575. if (this.case_history.special_inspection == '') {
  2576. this.case_history.special_inspection = ''
  2577. } else {
  2578. this.case_history.special_inspection = this.case_history.special_inspection
  2579. }
  2580. if (this.case_history.lab_apparatus == '') {
  2581. this.case_history.lab_apparatus = ''
  2582. } else {
  2583. this.case_history.lab_apparatus = this.case_history.lab_apparatus
  2584. }
  2585. this.info = response.data.data.info
  2586. this.last_info = response.data.data.last_info
  2587. this.schedule = response.data.data.schedule
  2588. this.doctors = response.data.data.doctors
  2589. this.department = response.data.data.department
  2590. for (let i = 0; i < this.doctors.length; i++) {
  2591. if (this.doctors[i].user_type == 1) {
  2592. this.doctors.splice(i, 1)
  2593. }
  2594. }
  2595. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  2596. if (this.case_history.breathing <= 0) {
  2597. this.case_history.breathing = ''
  2598. }
  2599. if (this.case_history.sick <= 0) {
  2600. this.case_history.sick = ''
  2601. }
  2602. if (this.case_history.diagnose <= 0) {
  2603. this.case_history.diagnose = ''
  2604. }
  2605. if (this.case_history.temperature <= 0) {
  2606. this.case_history.temperature = ''
  2607. }
  2608. if (this.case_history.blood_sugar <= 0) {
  2609. this.case_history.blood_sugar = ''
  2610. }
  2611. if (this.case_history.pulse <= 0) {
  2612. this.case_history.pulse = ''
  2613. }
  2614. if (this.case_history.sbp <= 0) {
  2615. this.case_history.sbp = ''
  2616. }
  2617. if (this.case_history.dbp <= 0) {
  2618. this.case_history.dbp = ''
  2619. }
  2620. if (this.case_history.height <= 0) {
  2621. this.case_history.height = ''
  2622. }
  2623. if (this.case_history.blood_fat <= 0) {
  2624. this.case_history.blood_fat = ''
  2625. }
  2626. if (this.case_history.sick_type <= 0) {
  2627. this.case_history.sick_type = ''
  2628. }
  2629. this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
  2630. if (this.case_history.is_infect == 1) {
  2631. this.case_history.is_infect = true
  2632. } else {
  2633. this.case_history.is_infect = false
  2634. }
  2635. this.prescriptionList = response.data.data.prescription
  2636. if (response.data.data.prescription.length > 0) {
  2637. for (let i = 0; i < response.data.data.prescription.length; i++) {
  2638. var prescription = response.data.data.prescription[i]
  2639. let tempAdvice = []
  2640. let tempProject = []
  2641. let tempAddition = []
  2642. var is_medicine = false
  2643. //药品
  2644. for (let b = 0; b < prescription.advices.length; b++) {
  2645. let obj = {
  2646. advice_id: prescription.advices[b].id,
  2647. drug_name: prescription.advices[b].advice_name,
  2648. single_dose: prescription.advices[b].single_dose,
  2649. delivery_way: prescription.advices[b].delivery_way,
  2650. execution_frequency: prescription.advices[b].execution_frequency,
  2651. retail_price: prescription.advices[b].price.toString(),
  2652. remark: prescription.advices[b].remark,
  2653. day: prescription.advices[b].day,
  2654. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  2655. single_dose_unit: prescription.advices[b].single_dose_unit,
  2656. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  2657. medical_insurance_number: prescription.advices[b].med_list_codg,
  2658. id: prescription.advices[b].drug_id,
  2659. drug: prescription.advices[b].drug,
  2660. groupno: prescription.advices[b].groupno,
  2661. hosp_appr_flag: prescription.advices[b].hosp_appr_flag.toString(),
  2662. execution_state: prescription.advices[b].execution_state,
  2663. is_medicine: prescription.advices[b].is_medicine,
  2664. is_self_drug: prescription.advices[b].is_self_drug.toString(),
  2665. drug_way_count: prescription.advices[b].drug_way_count,
  2666. }
  2667. tempAdvice.push(obj)
  2668. if (prescription.advices[b].is_medicine == 1) {
  2669. is_medicine = true
  2670. }
  2671. }
  2672. //项目
  2673. for (let b = 0; b < prescription.project.length; b++) {
  2674. let obj = {
  2675. id: prescription.project[b].id,
  2676. project_id: prescription.project[b].project_id,
  2677. project_name: prescription.project[b].project.project_name,
  2678. // statistical_classification: prescription.project[b].project.statistical_classification,
  2679. single_dose: prescription.project[b].single_dose,
  2680. delivery_way: prescription.project[b].delivery_way,
  2681. execution_frequency: prescription.project[b].execution_frequency,
  2682. number_days: prescription.project[b].day,
  2683. total: prescription.project[b].count.toString(),
  2684. price: prescription.project[b].price,
  2685. remark: prescription.project[b].remark,
  2686. medical_code: prescription.project[b].project.medical_code,
  2687. unit: prescription.project[b].unit,
  2688. type: prescription.project[b].type,
  2689. execution_state: prescription.project[b].execution_state
  2690. }
  2691. if (prescription.project[b].type == 2) {
  2692. obj['statistical_classification'] = prescription.project[b].team.project_team
  2693. obj['medical_code'] = prescription.project[b].project.medical_code
  2694. obj['project_name'] = prescription.project[b].project.project_name
  2695. obj['project'] = prescription.project[b].project
  2696. } else if (prescription.project[b].type == 3) {
  2697. obj['statistical_classification'] = ''
  2698. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  2699. obj['project_name'] = prescription.project[b].good_info.good_name
  2700. obj['good_info'] = prescription.project[b].good_info
  2701. }
  2702. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  2703. obj['single_dose'] = "1"
  2704. }
  2705. tempProject.push(obj)
  2706. }
  2707. //附加收费
  2708. // for (let b = 0; b < prescription.addition.length; b++) {
  2709. // let obj = {
  2710. // id: prescription.addition[b].id,
  2711. // item_name: prescription.addition[b].item_name,
  2712. // price: prescription.addition[b].price,
  2713. // count: prescription.addition[b].count,
  2714. // item_id: prescription.addition[b].item_id
  2715. // }
  2716. // tempAddition.push(obj)
  2717. // }
  2718. var preTime = nowTime
  2719. if ( this.$store.getters.xt_user.org.id != 9919 && this.$store.getters.xt_user.org.id != 10485 && this.$store.getters.xt_user.org.id != 10191 && this.$store.getters.xt_user.org.id != 10375) {
  2720. if (prescription.pre_time == 0) {
  2721. if (this.schedule.schedule_type == 1) {
  2722. if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 10633) {
  2723. preTime = this.record_date + ' ' + '6:30'
  2724. } else if(this.org_id == 10206 || this.org_id == 10598){
  2725. preTime = this.record_date + ' ' + '6:00'
  2726. } else if(this.org_id == 10721 ){
  2727. preTime = this.record_date + ' ' + '05:30'
  2728. } else {
  2729. preTime = this.record_date + ' ' + '7:00'
  2730. }
  2731. // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
  2732. } else if (this.schedule.schedule_type == 2) {
  2733. if(this.org_id == 10206 || this.org_id == 0){
  2734. preTime = this.record_date + ' ' + '10:30'
  2735. }else if(this.org_id == 10721 ){
  2736. preTime = this.record_date + ' ' + '10:00'
  2737. } else if(this.org_id == 10598){
  2738. preTime = this.record_date + ' ' + '09:00'
  2739. }else{
  2740. preTime = this.record_date + ' ' + '11:00'
  2741. }
  2742. } else if (this.schedule.schedule_type == 3) {
  2743. preTime = this.record_date + ' ' + '17:00'
  2744. }
  2745. if(this.org_id == 10510 || this.org_id == 0 ){
  2746. preTime = nowTime
  2747. }
  2748. } else {
  2749. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  2750. }
  2751. } else {
  2752. if (prescription.pre_time == 0) {
  2753. if(nowTime.split(" ")[0] != this.record_date){
  2754. if(this.schedule.schedule_type == 1){
  2755. if(this.org_id == 10206 || this.org_id == 10598) {
  2756. preTime = this.record_date+ ' ' + '6:00'
  2757. } else if(this.org_id == 10721) {
  2758. preTime = this.record_date+ ' ' + '05:30'
  2759. }else {
  2760. preTime = this.record_date + ' ' + '7:00'
  2761. }
  2762. }else if(this.schedule.schedule_type == 2){
  2763. if(this.org_id == 10206 || this.org_id == 0){
  2764. preTime = this.record_date + ' ' + '10:30'
  2765. } else if(this.org_id == 10721) {
  2766. preTime = this.record_date+ ' ' + '10:00'
  2767. }else if(this.org_id == 10598){
  2768. preTime = this.record_date + ' ' + '09:00'
  2769. }else {
  2770. preTime = this.record_date + ' ' + '11:00'
  2771. }
  2772. }else{
  2773. preTime = this.record_date + ' ' + '17:00'
  2774. }
  2775. }
  2776. if(this.org_id == 10510 || this.org_id == 0){
  2777. preTime = nowTime
  2778. }
  2779. // preTime = nowTime
  2780. } else {
  2781. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  2782. }
  2783. }
  2784. let diass = []
  2785. if(prescription.diagnose.length > 0) {
  2786. for (let i = 0; i < prescription.diagnose.split(",").length; i++) {
  2787. diass.push(parseInt(prescription.diagnose.split(",")[i]))
  2788. }
  2789. }
  2790. let index = i + 1
  2791. let obj = {
  2792. id: prescription.id,
  2793. name: '处方' + index,
  2794. advices: tempAdvice,
  2795. project: tempProject,
  2796. addition: tempAddition,
  2797. order_status: prescription.order_status,
  2798. pre_time: preTime,
  2799. diagnose:diass,
  2800. med_type: parseInt(prescription.med_type),
  2801. is_medicine_status: is_medicine
  2802. }
  2803. this.prescriptions.push(obj)
  2804. }
  2805. } else {
  2806. if (response.data.data.count <= 1 && response.data.data.schedule.id > 0 && response.data.data.sch_prescriptions.length > 0) {
  2807. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  2808. var prescription = response.data.data.sch_prescriptions[i]
  2809. for (let b = 0; b < prescription.advices.length; b++) {
  2810. if (prescription.med_type == '14' && prescription.advices[b].drug.is_special_diseases != 1) {
  2811. prescription.advices.splice(b--, 1)
  2812. }
  2813. }
  2814. for (let b = 0; b < prescription.project.length; b++) {
  2815. if (prescription.project[b].type == 2) {
  2816. if (prescription.med_type == '14' && prescription.project[b].project.disease_directory != 1) {
  2817. prescription.project.splice(b--, 1)
  2818. }
  2819. } else if (prescription.project[b].type == 3) {
  2820. if (prescription.med_type == '14' && prescription.project[b].good_info.is_special_diseases != 1) {
  2821. prescription.project.splice(b--, 1)
  2822. }
  2823. }
  2824. }
  2825. }
  2826. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  2827. var prescription = response.data.data.sch_prescriptions[i]
  2828. let tempAdvice = []
  2829. let tempProject = []
  2830. let tempAddition = []
  2831. //药品
  2832. for (let b = 0; b < prescription.advices.length; b++) {
  2833. let obj = {
  2834. advice_id: 0,
  2835. drug_name: prescription.advices[b].advice_name,
  2836. single_dose: prescription.advices[b].single_dose,
  2837. delivery_way: prescription.advices[b].delivery_way,
  2838. execution_frequency: prescription.advices[b].execution_frequency,
  2839. // retail_price: prescription.advices[b].price.toString(),
  2840. remark: prescription.advices[b].remark,
  2841. day: prescription.advices[b].day,
  2842. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  2843. single_dose_unit: prescription.advices[b].single_dose_unit,
  2844. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  2845. medical_insurance_number: prescription.advices[b].med_list_codg,
  2846. id: prescription.advices[b].drug_id,
  2847. drug: prescription.advices[b].drug,
  2848. groupno: prescription.advices[b].groupno,
  2849. hosp_appr_flag: '1',
  2850. is_self_drug: '',
  2851. execution_state: 2,
  2852. drug_way_count: '1'
  2853. }
  2854. if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit) {
  2855. obj['retail_price'] = prescription.advices[b].drug.min_price
  2856. } else if (obj.prescribing_number_unit == prescription.advices[b].drug.max_unit) {
  2857. obj['retail_price'] = prescription.advices[b].drug.retail_price
  2858. } else {
  2859. obj['retail_price'] = prescription.advices[b].drug.min_price
  2860. }
  2861. tempAdvice.push(obj)
  2862. }
  2863. //项目
  2864. for (let b = 0; b < prescription.project.length; b++) {
  2865. let obj = {
  2866. id: 0,
  2867. project_id: prescription.project[b].project_id,
  2868. project_name: prescription.project[b].project.project_name,
  2869. single_dose: prescription.project[b].single_dose,
  2870. delivery_way: prescription.project[b].delivery_way,
  2871. execution_frequency: prescription.project[b].execution_frequency,
  2872. number_days: prescription.project[b].day,
  2873. total: prescription.project[b].count.toString(),
  2874. remark: prescription.project[b].remark,
  2875. medical_code: prescription.project[b].project.medical_code,
  2876. unit: prescription.project[b].unit,
  2877. type: prescription.project[b].type,
  2878. execution_state: 2
  2879. }
  2880. if (prescription.project[b].type == 2) {
  2881. obj['statistical_classification'] = ''
  2882. obj['medical_code'] = prescription.project[b].project.medical_code
  2883. obj['project_name'] = prescription.project[b].project.project_name
  2884. obj['price'] = prescription.project[b].project.price
  2885. obj['project'] = prescription.project[b].project
  2886. } else if (prescription.project[b].type == 3) {
  2887. obj['statistical_classification'] = ''
  2888. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  2889. obj['project_name'] = prescription.project[b].good_info.good_name
  2890. obj['price'] = prescription.project[b].good_info.packing_price
  2891. obj['good_info'] = prescription.project[b].good_info
  2892. }
  2893. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  2894. obj['single_dose'] = "1"
  2895. }
  2896. tempProject.push(obj)
  2897. }
  2898. var preTime = nowTime
  2899. // var preTime = ''
  2900. if ( this.org_id != 9919 && this.org_id != 10485 && this.org_id != 10191 && this.$store.getters.xt_user.org.id != 10375) {
  2901. if (this.schedule.schedule_type == 1) {
  2902. if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 10633) {
  2903. preTime = this.record_date + ' ' + '6:30'
  2904. } else if(this.org_id == 10206 || this.org_id == 10598){
  2905. preTime = this.record_date + ' ' + '6:00'
  2906. } else if(this.org_id == 10721){
  2907. preTime = this.record_date + ' ' + '05:30'
  2908. } else {
  2909. preTime = this.record_date + ' ' + '7:00'
  2910. }
  2911. // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
  2912. } else if (this.schedule.schedule_type == 2) {
  2913. if(this.org_id == 10206 ){
  2914. preTime =this.record_date + ' ' + '10:30'
  2915. }else if(this.org_id == 10598){
  2916. preTime = this.record_date + ' ' + '09:00'
  2917. }else if(this.org_id == 10721){
  2918. preTime = this.record_date + ' ' + '10:00'
  2919. }else{
  2920. preTime = this.record_date + ' ' + '11:00'
  2921. }
  2922. } else if (this.schedule.schedule_type == 3) {
  2923. preTime = this.record_date + ' ' + '17:00'
  2924. }
  2925. if(this.org_id == 10510 || this.org_id == 0){
  2926. preTime = nowTime
  2927. }
  2928. }
  2929. if(nowTime.split(" ")[0] != this.record_date){
  2930. if(this.schedule.schedule_type == 1){
  2931. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  2932. preTime = this.record_date+ ' ' + '6:00'
  2933. } else if(this.org_id == 10721) {
  2934. preTime = this.record_date+ ' ' + '05:30'
  2935. }else {
  2936. preTime = this.record_date + ' ' + '7:00'
  2937. }
  2938. }else if(this.schedule.schedule_type == 2){
  2939. if(this.org_id == 10206 || this.org_id == 0){
  2940. preTime = this.record_date + ' ' + '10:30'
  2941. }else if(this.org_id == 10598){
  2942. preTime = this.record_date + ' ' + '09:00'
  2943. }else if(this.org_id == 10721){
  2944. preTime = this.record_date + ' ' + '10:00'
  2945. }else {
  2946. preTime = this.record_date + ' ' + '11:00'
  2947. }
  2948. }else{
  2949. preTime = this.record_date + ' ' + '17:00'
  2950. }
  2951. }
  2952. let index = i + 1
  2953. let obj = {
  2954. id: 0,
  2955. name: '处方' + index,
  2956. advices: tempAdvice,
  2957. project: tempProject,
  2958. addition: tempAddition,
  2959. order_status: 1,
  2960. pre_time: preTime,
  2961. diagnose:[],
  2962. med_type: ''
  2963. }
  2964. if (this.org_id != 10206) {
  2965. if (prescription.med_type == 0 || prescription.med_type == '') {
  2966. obj.med_type = ''
  2967. } else {
  2968. obj.med_type = parseInt(prescription.med_type)
  2969. }
  2970. if (obj.med_type == 0 || obj.med_type == '') {
  2971. obj.med_type = 14
  2972. }
  2973. if (this.org_id == 10721 || this.org_id == 0){
  2974. obj.med_type = 992102
  2975. }
  2976. }
  2977. obj.diagnose = []
  2978. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  2979. // obj.diagnose = 2465
  2980. obj.diagnose.push(2465)
  2981. }
  2982. this.prescriptions.push(obj)
  2983. }
  2984. } else {
  2985. if(nowTime.split(" ")[0] != this.record_date){
  2986. if(this.schedule.schedule_type == 1){
  2987. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  2988. preTime = this.record_date+ ' ' + '6:00'
  2989. }else if(this.org_id == 10721) {
  2990. preTime = this.record_date+ ' ' + '05:30'
  2991. }else {
  2992. preTime = this.record_date + ' ' + '7:00'
  2993. }
  2994. }else if(this.schedule.schedule_type == 2){
  2995. if(this.org_id == 10206 || this.org_id == 0){
  2996. preTime = this.record_date + ' ' + '10:30'
  2997. } else if(this.org_id == 10598){
  2998. preTime = this.record_date + ' ' + '09:00'
  2999. } else if(this.org_id == 10721){
  3000. preTime = this.record_date + ' ' + '10:00'
  3001. }else {
  3002. preTime = this.record_date + ' ' + '11:00'
  3003. }
  3004. }else{
  3005. preTime = this.record_date + ' ' + '17:00'
  3006. }
  3007. }else{
  3008. preTime = nowTime
  3009. }
  3010. let obj = {
  3011. id: 0,
  3012. name: '处方' + 1,
  3013. advices: [],
  3014. project: [],
  3015. addition: [],
  3016. order_status: 0,
  3017. diagnose:[],
  3018. pre_time: preTime,
  3019. med_type: ''
  3020. }
  3021. if (this.org_id != 10206) {
  3022. obj.med_type = 14
  3023. if (this.org_id == 10721 || this.org_id == 0){
  3024. obj.med_type = 992102
  3025. }
  3026. }
  3027. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  3028. // obj.diagnose = 2465
  3029. obj.diagnose.push(2465)
  3030. }
  3031. this.prescriptions.push(obj)
  3032. // if(response.data.data.count <= 1 ){
  3033. // if(response.data.data.last_prescriptions.length == 0){
  3034. // let obj = {
  3035. // id: 0,
  3036. // name: '处方' + 1,
  3037. // advices: [],
  3038. // project: [],
  3039. // addition: [],
  3040. // order_status: 0,
  3041. // pre_time: nowTime,
  3042. //
  3043. // };
  3044. // this.prescriptions.push(obj)
  3045. //
  3046. //
  3047. // }else {
  3048. // for (let i = 0; i < response.data.data.last_prescriptions.length; i++) {
  3049. // var prescription = response.data.data.last_prescriptions[i];
  3050. // let tempAdvice = [];
  3051. // let tempProject = [];
  3052. // let tempAddition = [];
  3053. //
  3054. // //药品
  3055. // for (let b = 0; b < prescription.advices.length; b++) {
  3056. // let obj = {
  3057. // advice_id:0,
  3058. // drug_name: prescription.advices[b].advice_name,
  3059. // single_dose: prescription.advices[b].single_dose,
  3060. // delivery_way: prescription.advices[b].delivery_way,
  3061. // execution_frequency: prescription.advices[b].execution_frequency,
  3062. // retail_price: prescription.advices[b].price.toString(),
  3063. // remark: prescription.advices[b].remark,
  3064. // day: prescription.advices[b].day,
  3065. // prescribing_number: prescription.advices[b].prescribing_number.toString(),
  3066. // single_dose_unit: prescription.advices[b].single_dose_unit,
  3067. // prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  3068. // medical_insurance_number: prescription.advices[b].med_list_codg,
  3069. // id: prescription.advices[b].drug_id,
  3070. // drug:prescription.advices[b].drug
  3071. //
  3072. // };
  3073. // tempAdvice.push(obj)
  3074. // }
  3075. //
  3076. // //项目
  3077. // for (let b = 0; b < prescription.project.length; b++) {
  3078. // let obj = {
  3079. // id:0,
  3080. // project_id: prescription.project[b].project_id,
  3081. // project_name: prescription.project[b].project.project_name,
  3082. // statistical_classification: prescription.project[b].project.statistical_classification,
  3083. // single_dose: prescription.project[b].single_dose,
  3084. // delivery_way: prescription.project[b].delivery_way,
  3085. // execution_frequency: prescription.project[b].execution_frequency,
  3086. // number_days: prescription.project[b].day,
  3087. // total: prescription.project[b].count.toString(),
  3088. // price: prescription.project[b].price,
  3089. // remark: prescription.project[b].remark,
  3090. // medical_code: prescription.project[b].project.medical_code,
  3091. // unit: prescription.project[b].project.unit,
  3092. // type: prescription.project[b].type
  3093. // };
  3094. //
  3095. // if (prescription.project[b].type == 2) {
  3096. // obj['statistical_classification'] = prescription.project[b].project.statistical_classification
  3097. // obj['medical_code'] = prescription.project[b].project.medical_code
  3098. // obj['project_name'] = prescription.project[b].project.project_name
  3099. //
  3100. // } else if (prescription.project[b].type == 3) {
  3101. // obj['statistical_classification'] = ""
  3102. // obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  3103. // obj['project_name'] = prescription.project[b].good_info.good_name
  3104. // }
  3105. // tempProject.push(obj)
  3106. // }
  3107. //
  3108. // //附加收费
  3109. // for (let b = 0; b < prescription.addition.length; b++) {
  3110. // let obj = {
  3111. // item_name: prescription.addition[b].item_name,
  3112. // price: prescription.addition[b].price,
  3113. // count: prescription.addition[b].count,
  3114. // item_id: prescription.addition[b].item_id,
  3115. // };
  3116. // tempAddition.push(obj)
  3117. // }
  3118. //
  3119. // var preTime = nowTime
  3120. //
  3121. // let index = i + 1;
  3122. // let obj = {
  3123. // id: 0,
  3124. // name: '处方' + index,
  3125. // advices: tempAdvice,
  3126. // project: tempProject,
  3127. // addition: tempAddition,
  3128. // order_status: 1,
  3129. // pre_time: preTime
  3130. // };
  3131. // this.prescriptions.push(obj)
  3132. // }
  3133. // }
  3134. // }
  3135. // else{
  3136. // let obj = {
  3137. // id: 0,
  3138. // name: '处方' + 1,
  3139. // advices: [],
  3140. // project: [],
  3141. // addition: [],
  3142. // order_status: 0,
  3143. // pre_time: nowTime,
  3144. //
  3145. // };
  3146. // this.prescriptions.push(obj)
  3147. // }
  3148. }
  3149. }
  3150. this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis, this.patient_diagnoses)
  3151. this.$refs.child.watchSign = 0
  3152. }
  3153. })
  3154. this.$refs.child.watchSign = 0
  3155. }).catch(() => {
  3156. this.patientid = val.id
  3157. let params = {
  3158. 'record_date': this.record_date,
  3159. 'patient_id': val.id,
  3160. 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
  3161. 'end_time': moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
  3162. 'p_type': 2
  3163. }
  3164. getPatientInfo(params).then(response => {
  3165. if (response.data.state == 0) {
  3166. this.$message.error(response.data.msg)
  3167. return false
  3168. } else {
  3169. if (this.$store.getters.xt_user.org_id != 10215) {
  3170. if (response.data.data.sch_prescriptions == null) {
  3171. response.data.data.sch_prescriptions = []
  3172. }
  3173. } else {
  3174. response.data.data.sch_prescriptions = []
  3175. }
  3176. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  3177. if (response.data.data.sch_prescriptions[i].advices == null) {
  3178. response.data.data.sch_prescriptions[i].advices = []
  3179. }
  3180. if (response.data.data.sch_prescriptions[i].project == null) {
  3181. response.data.data.sch_prescriptions[i].project = []
  3182. }
  3183. }
  3184. this.prescriptions = []
  3185. this.month_prescriptions = []
  3186. // var month_prescriptions = response.data.data.month_prescriptions
  3187. // this.setMonthPrescription(month_prescriptions)
  3188. this.patientInfo = response.data.data.xt_info
  3189. this.hisPatientInfo = response.data.data.his_info
  3190. this.case_history = response.data.data.case_history
  3191. this.info = response.data.data.info
  3192. this.last_info = response.data.data.last_info
  3193. this.doctors = response.data.data.doctors
  3194. this.department = response.data.data.department
  3195. for (let i = 0; i < this.doctors.length; i++) {
  3196. if (this.doctors[i].user_type == 1) {
  3197. this.doctors.splice(i, 1)
  3198. }
  3199. }
  3200. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  3201. if (this.case_history.breathing <= 0) {
  3202. this.case_history.breathing = ''
  3203. }
  3204. if (this.case_history.sick <= 0) {
  3205. this.case_history.sick = ''
  3206. }
  3207. if (this.case_history.diagnose <= 0) {
  3208. this.case_history.diagnose = ''
  3209. }
  3210. if (this.case_history.temperature <= 0) {
  3211. this.case_history.temperature = ''
  3212. }
  3213. if (this.case_history.blood_sugar <= 0) {
  3214. this.case_history.blood_sugar = ''
  3215. }
  3216. if (this.case_history.pulse <= 0) {
  3217. this.case_history.pulse = ''
  3218. }
  3219. if (this.case_history.sbp <= 0) {
  3220. this.case_history.sbp = ''
  3221. }
  3222. if (this.case_history.dbp <= 0) {
  3223. this.case_history.dbp = ''
  3224. }
  3225. if (this.case_history.height <= 0) {
  3226. this.case_history.height = ''
  3227. }
  3228. if (this.case_history.blood_fat <= 0) {
  3229. this.case_history.blood_fat = ''
  3230. }
  3231. if (this.case_history.sick_type <= 0) {
  3232. this.case_history.sick_type = ''
  3233. }
  3234. this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
  3235. if (this.case_history.is_infect == 1) {
  3236. this.case_history.is_infect = true
  3237. } else {
  3238. this.case_history.is_infect = false
  3239. }
  3240. if (this.case_history.primary_disease == '') {
  3241. this.case_history.primary_disease = ''
  3242. } else {
  3243. this.case_history.primary_disease = this.case_history.primary_disease
  3244. }
  3245. if (this.case_history.confirm_failure_date <= 0) {
  3246. this.case_history.confirm_failure_date = ''
  3247. } else {
  3248. this.case_history.confirm_failure_date = uParseTime(this.case_history.confirm_failure_date, '{y}-{m}-{d}')
  3249. }
  3250. if (this.case_history.drug_allergy_history == '') {
  3251. this.case_history.drug_allergy_history = ''
  3252. } else {
  3253. this.case_history.drug_allergy_history = this.case_history.drug_allergy_history
  3254. }
  3255. if (this.case_history.physical_examination == '') {
  3256. this.case_history.physical_examination = ''
  3257. } else {
  3258. this.case_history.physical_examination = this.case_history.physical_examination
  3259. }
  3260. if (this.case_history.special_inspection == '') {
  3261. this.case_history.special_inspection = ''
  3262. } else {
  3263. this.case_history.special_inspection = this.case_history.special_inspection
  3264. }
  3265. if (this.case_history.lab_apparatus == '') {
  3266. this.case_history.lab_apparatus = ''
  3267. } else {
  3268. this.case_history.lab_apparatus = this.case_history.lab_apparatus
  3269. }
  3270. this.prescriptionList = response.data.data.prescription
  3271. if (response.data.data.prescription.length > 0) {
  3272. for (let i = 0; i < response.data.data.prescription.length; i++) {
  3273. var prescription = response.data.data.prescription[i]
  3274. let tempAdvice = []
  3275. let tempProject = []
  3276. let tempAddition = []
  3277. //药品
  3278. for (let b = 0; b < prescription.advices.length; b++) {
  3279. let obj = {
  3280. advice_id: prescription.advices[b].id,
  3281. drug_name: prescription.advices[b].advice_name,
  3282. single_dose: prescription.advices[b].single_dose,
  3283. delivery_way: prescription.advices[b].delivery_way,
  3284. execution_frequency: prescription.advices[b].execution_frequency,
  3285. retail_price: prescription.advices[b].price.toString(),
  3286. remark: prescription.advices[b].remark,
  3287. day: prescription.advices[b].day,
  3288. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  3289. single_dose_unit: prescription.advices[b].single_dose_unit,
  3290. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  3291. medical_insurance_number: prescription.advices[b].med_list_codg,
  3292. id: prescription.advices[b].drug_id,
  3293. drug: prescription.advices[b].drug,
  3294. groupno: prescription.advices[b].groupno,
  3295. hosp_appr_flag: prescription.advices[b].hosp_appr_flag.toString(),
  3296. execution_state: prescription.advices[b].execution_state,
  3297. is_self_drug: prescription.advices[b].is_self_drug.toString(),
  3298. drug_way_count: prescription.advices[b].drug_way_count
  3299. }
  3300. tempAdvice.push(obj)
  3301. }
  3302. //项目
  3303. for (let b = 0; b < prescription.project.length; b++) {
  3304. let obj = {
  3305. id: prescription.project[b].id,
  3306. project_id: prescription.project[b].project_id,
  3307. project_name: prescription.project[b].project.project_name,
  3308. single_dose: prescription.project[b].single_dose,
  3309. delivery_way: prescription.project[b].delivery_way,
  3310. execution_frequency: prescription.project[b].execution_frequency,
  3311. number_days: prescription.project[b].day,
  3312. total: prescription.project[b].count.toString(),
  3313. price: prescription.project[b].price,
  3314. remark: prescription.project[b].remark,
  3315. medical_code: prescription.project[b].project.medical_code,
  3316. unit: prescription.project[b].unit,
  3317. type: prescription.project[b].type,
  3318. execution_state: prescription.project[b].execution_state
  3319. }
  3320. if (prescription.project[b].type == 2) {
  3321. obj['statistical_classification'] = prescription.project[b].team.project_team
  3322. obj['medical_code'] = prescription.project[b].project.medical_code
  3323. obj['project_name'] = prescription.project[b].project.project_name
  3324. obj['project'] = prescription.project[b].project
  3325. } else if (prescription.project[b].type == 3) {
  3326. if (prescription.project[b].team_id > 0) {
  3327. obj['statistical_classification'] = prescription.project[b].team.project_team
  3328. }
  3329. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  3330. obj['project_name'] = prescription.project[b].good_info.good_name
  3331. obj['good_info'] = prescription.project[b].good_info
  3332. }
  3333. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  3334. obj['single_dose'] = "1"
  3335. }
  3336. tempProject.push(obj)
  3337. }
  3338. //附加收费
  3339. // for (let b = 0; b < prescription.addition.length; b++) {
  3340. // let obj = {
  3341. // id: prescription.addition[b].id,
  3342. // item_name: prescription.addition[b].item_name,
  3343. // price: prescription.addition[b].price,
  3344. // count: prescription.addition[b].count,
  3345. // item_id: prescription.addition[b].item_id
  3346. // }
  3347. // tempAddition.push(obj)
  3348. // }
  3349. var preTime = ''
  3350. if (prescription.pre_time == 0) {
  3351. // preTime = nowTime
  3352. if(nowTime.split(" ")[0] != this.record_date){
  3353. if(this.schedule.schedule_type == 1){
  3354. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  3355. preTime = this.record_date+ ' ' + '6:00'
  3356. }else if(this.org_id == 10721) {
  3357. preTime = this.record_date+ ' ' + '05:30'
  3358. }else {
  3359. preTime = this.record_date + ' ' + '7:00'
  3360. }
  3361. }else if(this.schedule.schedule_type == 2){
  3362. if(this.org_id == 10206 || this.org_id == 0){
  3363. preTime = this.record_date + ' ' + '10:30'
  3364. }else if(this.org_id == 10721) {
  3365. preTime = this.record_date+ ' ' + '10:00'
  3366. }else if(this.org_id == 10598){
  3367. preTime = this.record_date + ' ' + '09:00'
  3368. }else {
  3369. preTime = this.record_date + ' ' + '11:00'
  3370. }
  3371. }else{
  3372. preTime = this.record_date + ' ' + '17:00'
  3373. }
  3374. }
  3375. if(this.org_id == 10510 || this.org_id == 0){
  3376. preTime = nowTime
  3377. }
  3378. } else {
  3379. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  3380. }
  3381. let diass = []
  3382. if(prescription.diagnose.length > 0) {
  3383. for (let i = 0; i < prescription.diagnose.split(",").length; i++) {
  3384. diass.push(parseInt(prescription.diagnose.split(",")[i]))
  3385. }
  3386. }
  3387. let index = i + 1
  3388. let obj = {
  3389. id: prescription.id,
  3390. name: '处方' + index,
  3391. advices: tempAdvice,
  3392. project: tempProject,
  3393. addition: tempAddition,
  3394. diagnose:diass,
  3395. order_status: prescription.order_status,
  3396. pre_time: preTime,
  3397. med_type: parseInt(prescription.med_type)
  3398. }
  3399. this.prescriptions.push(obj)
  3400. }
  3401. } else {
  3402. if (response.data.data.count <= 1 && response.data.data.schedule.id > 0 && response.data.data.sch_prescriptions.length > 0) {
  3403. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  3404. var prescription = response.data.data.sch_prescriptions[i]
  3405. for (let b = 0; b < prescription.advices.length; b++) {
  3406. if (prescription.med_type == '14' && prescription.advices[b].drug.is_special_diseases != 1) {
  3407. prescription.advices.splice(b--, 1)
  3408. }
  3409. }
  3410. for (let b = 0; b < prescription.project.length; b++) {
  3411. if (prescription.project[b].type == 2) {
  3412. if (prescription.med_type == '14' && prescription.project[b].project.disease_directory != 1) {
  3413. prescription.project.splice(b--, 1)
  3414. }
  3415. } else if (prescription.project[b].type == 3) {
  3416. if (prescription.med_type == '14' && prescription.project[b].good_info.is_special_diseases != 1) {
  3417. prescription.project.splice(b--, 1)
  3418. }
  3419. }
  3420. }
  3421. }
  3422. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  3423. var prescription = response.data.data.sch_prescriptions[i]
  3424. let tempAdvice = []
  3425. let tempProject = []
  3426. let tempAddition = []
  3427. //药品
  3428. for (let b = 0; b < prescription.advices.length; b++) {
  3429. let obj = {
  3430. advice_id: 0,
  3431. drug_name: prescription.advices[b].advice_name,
  3432. single_dose: prescription.advices[b].single_dose,
  3433. delivery_way: prescription.advices[b].delivery_way,
  3434. execution_frequency: prescription.advices[b].execution_frequency,
  3435. // retail_price: prescription.advices[b].price.toString(),
  3436. remark: prescription.advices[b].remark,
  3437. day: prescription.advices[b].day,
  3438. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  3439. single_dose_unit: prescription.advices[b].single_dose_unit,
  3440. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  3441. medical_insurance_number: prescription.advices[b].med_list_codg,
  3442. id: prescription.advices[b].drug_id,
  3443. drug: prescription.advices[b].drug,
  3444. groupno: prescription.advices[b].groupno,
  3445. hosp_appr_flag: '1',
  3446. is_self_drug: '',
  3447. drug_way_count: '1',
  3448. execution_state: 2
  3449. }
  3450. if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit) {
  3451. obj['retail_price'] = prescription.advices[b].drug.min_price
  3452. } else if (obj.prescribing_number_unit == prescription.advices[b].drug.max_unit) {
  3453. obj['retail_price'] = prescription.advices[b].drug.retail_price
  3454. } else {
  3455. obj['retail_price'] = prescription.advices[b].drug.min_price
  3456. }
  3457. tempAdvice.push(obj)
  3458. }
  3459. //项目
  3460. for (let b = 0; b < prescription.project.length; b++) {
  3461. let obj = {
  3462. id: 0,
  3463. project_id: prescription.project[b].project_id,
  3464. project_name: prescription.project[b].project.project_name,
  3465. single_dose: prescription.project[b].single_dose,
  3466. delivery_way: prescription.project[b].delivery_way,
  3467. execution_frequency: prescription.project[b].execution_frequency,
  3468. number_days: prescription.project[b].day,
  3469. total: prescription.project[b].count.toString(),
  3470. remark: prescription.project[b].remark,
  3471. medical_code: prescription.project[b].project.medical_code,
  3472. unit: prescription.project[b].unit,
  3473. type: prescription.project[b].type,
  3474. execution_state: 2
  3475. }
  3476. if (prescription.project[b].type == 2) {
  3477. obj['statistical_classification'] = ''
  3478. obj['medical_code'] = prescription.project[b].project.medical_code
  3479. obj['project_name'] = prescription.project[b].project.project_name
  3480. obj['price'] = prescription.project[b].project.price
  3481. obj['project'] = prescription.project[b].project
  3482. } else if (prescription.project[b].type == 3) {
  3483. obj['statistical_classification'] = ''
  3484. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  3485. obj['project_name'] = prescription.project[b].good_info.good_name
  3486. obj['price'] = prescription.project[b].good_info.packing_price
  3487. obj['good_info'] = prescription.project[b].good_info
  3488. }
  3489. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  3490. obj['single_dose'] = "1"
  3491. }
  3492. tempProject.push(obj)
  3493. }
  3494. var preTime = nowTime
  3495. if(nowTime.split(" ")[0] != this.record_date){
  3496. if(this.schedule.schedule_type == 1){
  3497. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  3498. preTime = this.record_date+ ' ' + '6:00'
  3499. }else if (this.org_id == 10721){
  3500. preTime = this.record_date+ ' ' + '05:30'
  3501. }else {
  3502. preTime = this.record_date + ' ' + '7:00'
  3503. }
  3504. }else if(this.schedule.schedule_type == 2){
  3505. if(this.org_id == 10206 || this.org_id == 0){
  3506. preTime = this.record_date + ' ' + '10:30'
  3507. }else if (this.org_id == 10721){
  3508. preTime = this.record_date+ ' ' + '10:00'
  3509. }else if(this.org_id == 10598){
  3510. preTime = this.record_date + ' ' + '09:00'
  3511. }else {
  3512. preTime = this.record_date + ' ' + '11:00'
  3513. }
  3514. }else{
  3515. preTime = this.record_date + ' ' + '17:00'
  3516. }
  3517. }
  3518. let index = i + 1
  3519. let obj = {
  3520. id: 0,
  3521. name: '处方' + index,
  3522. advices: tempAdvice,
  3523. project: tempProject,
  3524. addition: tempAddition,
  3525. order_status: 1,
  3526. diagnose:[],
  3527. pre_time: preTime,
  3528. med_type: ''
  3529. }
  3530. if (this.org_id != 10206) {
  3531. if (prescription.med_type == 0 || prescription.med_type == '') {
  3532. obj.med_type = ''
  3533. } else {
  3534. obj.med_type = parseInt(prescription.med_type)
  3535. }
  3536. if (obj.med_type == 0 || obj.med_type == '') {
  3537. obj.med_type = 14
  3538. }
  3539. if (this.org_id == 10721 || this.org_id == 0){
  3540. obj.med_type = 992102
  3541. }
  3542. }
  3543. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  3544. // obj.diagnose = 2465
  3545. obj.diagnose.push(2465)
  3546. }
  3547. this.prescriptions.push(obj)
  3548. }
  3549. } else {
  3550. if(nowTime.split(" ")[0] != this.record_date){
  3551. if(this.schedule.schedule_type == 1){
  3552. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  3553. preTime = this.record_date+ ' ' + '6:00'
  3554. }else if(this.org_id == 10721) {
  3555. preTime = this.record_date+ ' ' + '05:30'
  3556. }else {
  3557. preTime = this.record_date + ' ' + '7:00'
  3558. }
  3559. }else if(this.schedule.schedule_type == 2){
  3560. if(this.org_id == 10206 || this.org_id == 0){
  3561. preTime = this.record_date + ' ' + '10:30'
  3562. }else if(this.org_id == 10721) {
  3563. preTime = this.record_date+ ' ' + '10:00'
  3564. }else if(this.org_id == 10598){
  3565. preTime = this.record_date + ' ' + '09:00'
  3566. }else {
  3567. preTime = this.record_date + ' ' + '11:00'
  3568. }
  3569. }else{
  3570. preTime = this.record_date + ' ' + '17:00'
  3571. }
  3572. }else{
  3573. preTime = nowTime
  3574. }
  3575. let obj = {
  3576. id: 0,
  3577. name: '处方' + 1,
  3578. advices: [],
  3579. project: [],
  3580. addition: [],
  3581. order_status: 0,
  3582. pre_time: preTime,
  3583. med_type: '',
  3584. diagnose:[],
  3585. }
  3586. if (this.org_id != 10206) {
  3587. obj.med_type = 14
  3588. if (this.org_id == 10721 || this.org_id == 0){
  3589. obj.med_type = 992102
  3590. }
  3591. }
  3592. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  3593. // obj.diagnose = 2465
  3594. obj.diagnose.push(2465)
  3595. }
  3596. this.prescriptions.push(obj)
  3597. // if(response.data.data.count <= 1 ){
  3598. // if(response.data.data.last_prescriptions.length == 0){
  3599. // let obj = {
  3600. // id: 0,
  3601. // name: '处方' + 1,
  3602. // advices: [],
  3603. // project: [],
  3604. // addition: [],
  3605. // order_status: 0,
  3606. // pre_time: nowTime,
  3607. //
  3608. // };
  3609. // this.prescriptions.push(obj)
  3610. //
  3611. //
  3612. // }else {
  3613. // for (let i = 0; i < response.data.data.last_prescriptions.length; i++) {
  3614. // var prescription = response.data.data.last_prescriptions[i];
  3615. // let tempAdvice = [];
  3616. // let tempProject = [];
  3617. // let tempAddition = [];
  3618. //
  3619. // //药品
  3620. // for (let b = 0; b < prescription.advices.length; b++) {
  3621. // let obj = {
  3622. // advice_id:0,
  3623. // drug_name: prescription.advices[b].advice_name,
  3624. // single_dose: prescription.advices[b].single_dose,
  3625. // delivery_way: prescription.advices[b].delivery_way,
  3626. // execution_frequency: prescription.advices[b].execution_frequency,
  3627. // retail_price: prescription.advices[b].price.toString(),
  3628. // remark: prescription.advices[b].remark,
  3629. // day: prescription.advices[b].day,
  3630. // prescribing_number: prescription.advices[b].prescribing_number.toString(),
  3631. // single_dose_unit: prescription.advices[b].single_dose_unit,
  3632. // prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  3633. // medical_insurance_number: prescription.advices[b].med_list_codg,
  3634. // id: prescription.advices[b].drug_id,
  3635. // drug:prescription.advices[b].drug
  3636. //
  3637. // };
  3638. // tempAdvice.push(obj)
  3639. // }
  3640. //
  3641. // //项目
  3642. // for (let b = 0; b < prescription.project.length; b++) {
  3643. // let obj = {
  3644. // id:0,
  3645. // project_id: prescription.project[b].project_id,
  3646. // project_name: prescription.project[b].project.project_name,
  3647. // statistical_classification: prescription.project[b].project.statistical_classification,
  3648. // single_dose: prescription.project[b].single_dose,
  3649. // delivery_way: prescription.project[b].delivery_way,
  3650. // execution_frequency: prescription.project[b].execution_frequency,
  3651. // number_days: prescription.project[b].day,
  3652. // total: prescription.project[b].count.toString(),
  3653. // price: prescription.project[b].price,
  3654. // remark: prescription.project[b].remark,
  3655. // medical_code: prescription.project[b].project.medical_code,
  3656. // unit: prescription.project[b].project.unit,
  3657. // type: prescription.project[b].type
  3658. // };
  3659. //
  3660. // if (prescription.project[b].type == 2) {
  3661. // obj['statistical_classification'] = prescription.project[b].project.statistical_classification
  3662. // obj['medical_code'] = prescription.project[b].project.medical_code
  3663. // obj['project_name'] = prescription.project[b].project.project_name
  3664. //
  3665. // } else if (prescription.project[b].type == 3) {
  3666. // obj['statistical_classification'] = ""
  3667. // obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  3668. // obj['project_name'] = prescription.project[b].good_info.good_name
  3669. // }
  3670. // tempProject.push(obj)
  3671. // }
  3672. //
  3673. // //附加收费
  3674. // for (let b = 0; b < prescription.addition.length; b++) {
  3675. // let obj = {
  3676. // item_name: prescription.addition[b].item_name,
  3677. // price: prescription.addition[b].price,
  3678. // count: prescription.addition[b].count,
  3679. // item_id: prescription.addition[b].item_id,
  3680. // };
  3681. // tempAddition.push(obj)
  3682. // }
  3683. //
  3684. // var preTime = nowTime
  3685. //
  3686. // let index = i + 1;
  3687. // let obj = {
  3688. // id: 0,
  3689. // name: '处方' + index,
  3690. // advices: tempAdvice,
  3691. // project: tempProject,
  3692. // addition: tempAddition,
  3693. // order_status: 1,
  3694. // pre_time: preTime
  3695. // };
  3696. // this.prescriptions.push(obj)
  3697. // }
  3698. // }
  3699. // }else{
  3700. // let obj = {
  3701. // id: 0,
  3702. // name: '处方' + 1,
  3703. // advices: [],
  3704. // project: [],
  3705. // addition: [],
  3706. // order_status: 0,
  3707. // pre_time: nowTime,
  3708. //
  3709. // };
  3710. // this.prescriptions.push(obj)
  3711. // }
  3712. }
  3713. }
  3714. this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis, this.patient_diagnoses)
  3715. this.$refs.child.watchSign = 0
  3716. }
  3717. })
  3718. })
  3719. this.$refs.child.watchSign = 0
  3720. } else {
  3721. this.patientid = val.id
  3722. let params = {
  3723. 'record_date': this.record_date,
  3724. 'patient_id': val.id,
  3725. 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
  3726. 'end_time': moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
  3727. 'p_type': 2
  3728. }
  3729. getPatientInfo(params).then(response => {
  3730. if (response.data.state == 0) {
  3731. this.$message.error(response.data.msg)
  3732. return false
  3733. } else {
  3734. if (this.$store.getters.xt_user.org_id != 10215) {
  3735. if (response.data.data.sch_prescriptions == null) {
  3736. response.data.data.sch_prescriptions = []
  3737. }
  3738. } else {
  3739. response.data.data.sch_prescriptions = []
  3740. }
  3741. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  3742. if (response.data.data.sch_prescriptions[i].advices == null) {
  3743. response.data.data.sch_prescriptions[i].advices = []
  3744. }
  3745. if (response.data.data.sch_prescriptions[i].project == null) {
  3746. response.data.data.sch_prescriptions[i].project = []
  3747. }
  3748. }
  3749. this.prescriptions = []
  3750. this.month_prescriptions = []
  3751. // var month_prescriptions = response.data.data.month_prescriptions
  3752. // this.setMonthPrescription(month_prescriptions)
  3753. this.patientInfo = response.data.data.xt_info
  3754. this.hisPatientInfo = response.data.data.his_info
  3755. this.case_history = response.data.data.case_history
  3756. this.info = response.data.data.info
  3757. this.last_info = response.data.data.last_info
  3758. this.doctors = response.data.data.doctors
  3759. this.department = response.data.data.department
  3760. for (let i = 0; i < this.doctors.length; i++) {
  3761. if (this.doctors[i].user_type == 1) {
  3762. this.doctors.splice(i, 1)
  3763. }
  3764. }
  3765. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  3766. if (this.case_history.breathing <= 0) {
  3767. this.case_history.breathing = ''
  3768. }
  3769. if (this.case_history.sick <= 0) {
  3770. this.case_history.sick = ''
  3771. }
  3772. if (this.case_history.diagnose <= 0) {
  3773. this.case_history.diagnose = ''
  3774. }
  3775. if (this.case_history.temperature <= 0) {
  3776. this.case_history.temperature = ''
  3777. }
  3778. if (this.case_history.blood_sugar <= 0) {
  3779. this.case_history.blood_sugar = ''
  3780. }
  3781. if (this.case_history.pulse <= 0) {
  3782. this.case_history.pulse = ''
  3783. }
  3784. if (this.case_history.sbp <= 0) {
  3785. this.case_history.sbp = ''
  3786. }
  3787. if (this.case_history.dbp <= 0) {
  3788. this.case_history.dbp = ''
  3789. }
  3790. if (this.case_history.height <= 0) {
  3791. this.case_history.height = ''
  3792. }
  3793. if (this.case_history.blood_fat <= 0) {
  3794. this.case_history.blood_fat = ''
  3795. }
  3796. if (this.case_history.sick_type <= 0) {
  3797. this.case_history.sick_type = ''
  3798. }
  3799. this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
  3800. if (this.case_history.is_infect == 1) {
  3801. this.case_history.is_infect = true
  3802. } else {
  3803. this.case_history.is_infect = false
  3804. }
  3805. if (this.case_history.primary_disease == '') {
  3806. this.case_history.primary_disease = ''
  3807. }
  3808. this.case_history.confirm_failure_date = uParseTime(this.case_history.confirm_failure_date, '{y}-{m}-{d}')
  3809. if (this.case_history.drug_allergy_history == '') {
  3810. this.case_history.drug_allergy_history = ''
  3811. }
  3812. if (this.case_history.physical_examination == '') {
  3813. this.case_history.physical_examination = ''
  3814. }
  3815. if (this.case_history.special_inspection == '') {
  3816. this.case_history.special_inspection = ''
  3817. }
  3818. if (this.case_history.lab_apparatus == '') {
  3819. this.case_history.lab_apparatus = ''
  3820. }
  3821. this.prescriptionList = response.data.data.prescription
  3822. if (response.data.data.prescription.length > 0) {
  3823. for (let i = 0; i < response.data.data.prescription.length; i++) {
  3824. var prescription = response.data.data.prescription[i]
  3825. let tempAdvice = []
  3826. let tempProject = []
  3827. let tempAddition = []
  3828. //药品
  3829. for (let b = 0; b < prescription.advices.length; b++) {
  3830. let obj = {
  3831. advice_id: prescription.advices[b].id,
  3832. drug_name: prescription.advices[b].advice_name,
  3833. single_dose: prescription.advices[b].single_dose,
  3834. delivery_way: prescription.advices[b].delivery_way,
  3835. execution_frequency: prescription.advices[b].execution_frequency,
  3836. retail_price: prescription.advices[b].price.toString(),
  3837. remark: prescription.advices[b].remark,
  3838. day: prescription.advices[b].day,
  3839. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  3840. single_dose_unit: prescription.advices[b].single_dose_unit,
  3841. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  3842. medical_insurance_number: prescription.advices[b].med_list_codg,
  3843. id: prescription.advices[b].drug_id,
  3844. drug: prescription.advices[b].drug,
  3845. groupno: prescription.advices[b].groupno,
  3846. hosp_appr_flag: prescription.advices[b].hosp_appr_flag.toString(),
  3847. is_self_drug: prescription.advices[b].is_self_drug.toString(),
  3848. drug_way_count: prescription.advices[b].drug_way_count,
  3849. execution_state: prescription.advices[b].execution_state
  3850. }
  3851. tempAdvice.push(obj)
  3852. }
  3853. //项目
  3854. for (let b = 0; b < prescription.project.length; b++) {
  3855. let obj = {
  3856. id: prescription.project[b].id,
  3857. project_id: prescription.project[b].project_id,
  3858. project_name: prescription.project[b].project.project_name,
  3859. single_dose: prescription.project[b].single_dose,
  3860. delivery_way: prescription.project[b].delivery_way,
  3861. execution_frequency: prescription.project[b].execution_frequency,
  3862. number_days: prescription.project[b].day,
  3863. total: prescription.project[b].count.toString(),
  3864. price: prescription.project[b].price,
  3865. remark: prescription.project[b].remark,
  3866. medical_code: prescription.project[b].project.medical_code,
  3867. unit: prescription.project[b].unit,
  3868. type: prescription.project[b].type,
  3869. execution_state: prescription.project[b].execution_state
  3870. }
  3871. if (prescription.project[b].type == 2) {
  3872. obj['statistical_classification'] = prescription.project[b].team.project_team
  3873. obj['medical_code'] = prescription.project[b].project.medical_code
  3874. obj['project_name'] = prescription.project[b].project.project_name
  3875. obj['project'] = prescription.project[b].project
  3876. } else if (prescription.project[b].type == 3) {
  3877. if (prescription.project[b].team_id > 0) {
  3878. obj['statistical_classification'] = prescription.project[b].team.project_team
  3879. }
  3880. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  3881. obj['project_name'] = prescription.project[b].good_info.good_name
  3882. obj['good_info'] = prescription.project[b].good_info
  3883. }
  3884. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  3885. obj['single_dose'] = "1"
  3886. }
  3887. tempProject.push(obj)
  3888. }
  3889. //附加收费
  3890. // for (let b = 0; b < prescription.addition.length; b++) {
  3891. // let obj = {
  3892. // id: prescription.addition[b].id,
  3893. // item_name: prescription.addition[b].item_name,
  3894. // price: prescription.addition[b].price,
  3895. // count: prescription.addition[b].count,
  3896. // item_id: prescription.addition[b].item_id
  3897. // }
  3898. // tempAddition.push(obj)
  3899. // }
  3900. var preTime = ''
  3901. if (prescription.pre_time == 0) {
  3902. // preTime = nowTime
  3903. if(nowTime.split(" ")[0] != this.record_date){
  3904. if(this.schedule.schedule_type == 1){
  3905. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  3906. preTime = this.record_date+ ' ' + '6:00'
  3907. }else if(this.org_id == 10721){
  3908. preTime = this.record_date+ ' ' + '05:30'
  3909. }else {
  3910. preTime = this.record_date + ' ' + '7:00'
  3911. }
  3912. }else if(this.schedule.schedule_type == 2){
  3913. if(this.org_id == 10206 || this.org_id == 0){
  3914. preTime = this.record_date + ' ' + '10:30'
  3915. }else if(this.org_id == 10721){
  3916. preTime = this.record_date+ ' ' + '10:00'
  3917. }else if(this.org_id == 10598){
  3918. preTime = this.record_date + ' ' + '09:00'
  3919. }else {
  3920. preTime = this.record_date + ' ' + '11:00'
  3921. }
  3922. }else{
  3923. preTime = this.record_date + ' ' + '17:00'
  3924. }
  3925. }
  3926. if(this.org_id == 10510 || this.org_id == 0){
  3927. preTime = nowTime
  3928. }
  3929. } else {
  3930. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  3931. }
  3932. let diass = []
  3933. if(prescription.diagnose.length > 0) {
  3934. for (let i = 0; i < prescription.diagnose.split(",").length; i++) {
  3935. diass.push(parseInt(prescription.diagnose.split(",")[i]))
  3936. }
  3937. }
  3938. let index = i + 1
  3939. let obj = {
  3940. id: prescription.id,
  3941. name: '处方' + index,
  3942. advices: tempAdvice,
  3943. project: tempProject,
  3944. addition: tempAddition,
  3945. order_status: prescription.order_status,
  3946. diagnose:diass,
  3947. pre_time: preTime,
  3948. med_type: parseInt(prescription.med_type)
  3949. }
  3950. this.prescriptions.push(obj)
  3951. }
  3952. } else {
  3953. if (response.data.data.count <= 1 && response.data.data.schedule.id > 0 && response.data.data.sch_prescriptions.length > 0) {
  3954. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  3955. var prescription = response.data.data.sch_prescriptions[i]
  3956. for (let b = 0; b < prescription.advices.length; b++) {
  3957. if (prescription.med_type == '14' && prescription.advices[b].drug.is_special_diseases != 1) {
  3958. prescription.advices.splice(b--, 1)
  3959. }
  3960. }
  3961. for (let b = 0; b < prescription.project.length; b++) {
  3962. if (prescription.project[b].type == 2) {
  3963. if (prescription.med_type == '14' && prescription.project[b].project.disease_directory != 1) {
  3964. prescription.project.splice(b--, 1)
  3965. }
  3966. } else if (prescription.project[b].type == 3) {
  3967. if (prescription.med_type == '14' && prescription.project[b].good_info.is_special_diseases != 1) {
  3968. prescription.project.splice(b--, 1)
  3969. }
  3970. }
  3971. }
  3972. }
  3973. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  3974. var prescription = response.data.data.sch_prescriptions[i]
  3975. let tempAdvice = []
  3976. let tempProject = []
  3977. let tempAddition = []
  3978. //药品
  3979. for (let b = 0; b < prescription.advices.length; b++) {
  3980. let index = b + 1
  3981. let obj = {
  3982. advice_id: 0,
  3983. drug_name: prescription.advices[b].advice_name,
  3984. single_dose: prescription.advices[b].single_dose,
  3985. delivery_way: prescription.advices[b].delivery_way,
  3986. execution_frequency: prescription.advices[b].execution_frequency,
  3987. // retail_price: prescription.advices[b].price.toString(),
  3988. remark: prescription.advices[b].remark,
  3989. day: prescription.advices[b].day,
  3990. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  3991. single_dose_unit: prescription.advices[b].single_dose_unit,
  3992. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  3993. medical_insurance_number: prescription.advices[b].med_list_codg,
  3994. id: prescription.advices[b].drug_id,
  3995. drug: prescription.advices[b].drug,
  3996. groupno: prescription.advices[b].groupno,
  3997. hosp_appr_flag: '1',
  3998. is_self_drug: '',
  3999. execution_state: 2,
  4000. drug_way_count: '1'
  4001. }
  4002. if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit) {
  4003. obj['retail_price'] = prescription.advices[b].drug.min_price
  4004. } else if (obj.prescribing_number_unit == prescription.advices[b].drug.max_unit) {
  4005. obj['retail_price'] = prescription.advices[b].drug.retail_price
  4006. } else {
  4007. obj['retail_price'] = prescription.advices[b].drug.min_price
  4008. }
  4009. tempAdvice.push(obj)
  4010. }
  4011. //项目
  4012. for (let b = 0; b < prescription.project.length; b++) {
  4013. let obj = {
  4014. id: 0,
  4015. project_id: prescription.project[b].project_id,
  4016. project_name: prescription.project[b].project.project_name,
  4017. single_dose: prescription.project[b].single_dose,
  4018. delivery_way: prescription.project[b].delivery_way,
  4019. execution_frequency: prescription.project[b].execution_frequency,
  4020. number_days: prescription.project[b].day,
  4021. total: prescription.project[b].count.toString(),
  4022. remark: prescription.project[b].remark,
  4023. medical_code: prescription.project[b].project.medical_code,
  4024. unit: prescription.project[b].unit,
  4025. type: prescription.project[b].type,
  4026. execution_state: 2
  4027. }
  4028. if (prescription.project[b].type == 2) {
  4029. obj['statistical_classification'] = ''
  4030. obj['medical_code'] = prescription.project[b].project.medical_code
  4031. obj['project_name'] = prescription.project[b].project.project_name
  4032. obj['price'] = prescription.project[b].project.price
  4033. obj['project'] = prescription.project[b].project
  4034. } else if (prescription.project[b].type == 3) {
  4035. obj['statistical_classification'] = ''
  4036. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  4037. obj['project_name'] = prescription.project[b].good_info.good_name
  4038. obj['price'] = prescription.project[b].good_info.packing_price
  4039. obj['good_info'] = prescription.project[b].good_info
  4040. }
  4041. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  4042. obj['single_dose'] = "1"
  4043. }
  4044. tempProject.push(obj)
  4045. }
  4046. var preTime = nowTime
  4047. if(nowTime.split(" ")[0] != this.record_date){
  4048. if(this.schedule.schedule_type == 1){
  4049. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  4050. preTime = this.record_date+ ' ' + '6:00'
  4051. }else if(this.org_id == 10721) {
  4052. preTime = this.record_date+ ' ' + '05:30'
  4053. }else {
  4054. preTime = this.record_date + ' ' + '7:00'
  4055. }
  4056. }else if(this.schedule.schedule_type == 2){
  4057. if(this.org_id == 10206 || this.org_id == 0){
  4058. preTime = this.record_date + ' ' + '10:30'
  4059. }else if(this.org_id == 10721) {
  4060. preTime = this.record_date+ ' ' + '10:00'
  4061. }else if(this.org_id == 10598){
  4062. preTime = this.record_date + ' ' + '09:00'
  4063. }else {
  4064. preTime = this.record_date + ' ' + '11:00'
  4065. }
  4066. }else{
  4067. preTime = this.record_date + ' ' + '17:00'
  4068. }
  4069. }
  4070. let index = i + 1
  4071. let obj = {
  4072. id: 0,
  4073. name: '处方' + index,
  4074. advices: tempAdvice,
  4075. project: tempProject,
  4076. addition: tempAddition,
  4077. order_status: 1,
  4078. pre_time: preTime,
  4079. diagnose:[],
  4080. med_type: ''
  4081. }
  4082. if (this.org_id != 10206) {
  4083. if (prescription.med_type == 0 || prescription.med_type == '') {
  4084. obj.med_type = ''
  4085. } else {
  4086. obj.med_type = parseInt(prescription.med_type)
  4087. }
  4088. if (obj.med_type == 0 || obj.med_type == '') {
  4089. obj.med_type = 14
  4090. }
  4091. if (this.org_id == 10721 || this.org_id == 0){
  4092. obj.med_type = 992102
  4093. }
  4094. }
  4095. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  4096. obj.diagnose.push(2465)
  4097. }
  4098. this.prescriptions.push(obj)
  4099. }
  4100. } else {
  4101. if(nowTime.split(" ")[0] != this.record_date){
  4102. if(this.schedule.schedule_type == 1){
  4103. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  4104. preTime = this.record_date+ ' ' + '6:00'
  4105. }else if(this.org_id == 10721) {
  4106. preTime = this.record_date+ ' ' + '05:30'
  4107. }else {
  4108. preTime = this.record_date + ' ' + '7:00'
  4109. }
  4110. }else if(this.schedule.schedule_type == 2){
  4111. if(this.org_id == 10206 || this.org_id == 0){
  4112. preTime = this.record_date + ' ' + '10:30'
  4113. }else if(this.org_id == 10721) {
  4114. preTime = this.record_date+ ' ' + '10:00'
  4115. }else if(this.org_id == 10598){
  4116. preTime = this.record_date + ' ' + '09:00'
  4117. }else {
  4118. preTime = this.record_date + ' ' + '11:00'
  4119. }
  4120. }else{
  4121. preTime = this.record_date + ' ' + '17:00'
  4122. }
  4123. }else{
  4124. preTime = nowTime
  4125. }
  4126. let obj = {
  4127. id: 0,
  4128. name: '处方' + 1,
  4129. advices: [],
  4130. project: [],
  4131. addition: [],
  4132. order_status: 0,
  4133. pre_time: preTime,
  4134. med_type: '',
  4135. diagnose:[],
  4136. }
  4137. if (this.org_id != 10206) {
  4138. obj.med_type = 14
  4139. if (this.org_id == 10721 || this.org_id == 0){
  4140. obj.med_type = 992102
  4141. }
  4142. }
  4143. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  4144. obj.diagnose.push(2465)
  4145. }
  4146. this.prescriptions.push(obj)
  4147. // if(response.data.data.count <= 1 ){
  4148. // if(response.data.data.last_prescriptions.length == 0){
  4149. // let obj = {
  4150. // id: 0,
  4151. // name: '处方' + 1,
  4152. // advices: [],
  4153. // project: [],
  4154. // addition: [],
  4155. // order_status: 0,
  4156. // pre_time: nowTime,
  4157. //
  4158. // };
  4159. // this.prescriptions.push(obj)
  4160. //
  4161. //
  4162. // }else {
  4163. // for (let i = 0; i < response.data.data.last_prescriptions.length; i++) {
  4164. // var prescription = response.data.data.last_prescriptions[i];
  4165. // let tempAdvice = [];
  4166. // let tempProject = [];
  4167. // let tempAddition = [];
  4168. //
  4169. // //药品
  4170. // for (let b = 0; b < prescription.advices.length; b++) {
  4171. // let obj = {
  4172. // advice_id:0,
  4173. // drug_name: prescription.advices[b].advice_name,
  4174. // single_dose: prescription.advices[b].single_dose,
  4175. // delivery_way: prescription.advices[b].delivery_way,
  4176. // execution_frequency: prescription.advices[b].execution_frequency,
  4177. // retail_price: prescription.advices[b].price.toString(),
  4178. // remark: prescription.advices[b].remark,
  4179. // day: prescription.advices[b].day,
  4180. // prescribing_number: prescription.advices[b].prescribing_number.toString(),
  4181. // single_dose_unit: prescription.advices[b].single_dose_unit,
  4182. // prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  4183. // medical_insurance_number: prescription.advices[b].med_list_codg,
  4184. // id: prescription.advices[b].drug_id,
  4185. // drug:prescription.advices[b].drug
  4186. //
  4187. // };
  4188. // tempAdvice.push(obj)
  4189. // }
  4190. //
  4191. // //项目
  4192. // for (let b = 0; b < prescription.project.length; b++) {
  4193. // let obj = {
  4194. // id:0,
  4195. // project_id: prescription.project[b].project_id,
  4196. // project_name: prescription.project[b].project.project_name,
  4197. // statistical_classification: prescription.project[b].project.statistical_classification,
  4198. // single_dose: prescription.project[b].single_dose,
  4199. // delivery_way: prescription.project[b].delivery_way,
  4200. // execution_frequency: prescription.project[b].execution_frequency,
  4201. // number_days: prescription.project[b].day,
  4202. // total: prescription.project[b].count.toString(),
  4203. // price: prescription.project[b].price,
  4204. // remark: prescription.project[b].remark,
  4205. // medical_code: prescription.project[b].project.medical_code,
  4206. // unit: prescription.project[b].project.unit,
  4207. // type: prescription.project[b].type
  4208. // };
  4209. //
  4210. // if (prescription.project[b].type == 2) {
  4211. // obj['statistical_classification'] = prescription.project[b].project.statistical_classification
  4212. // obj['medical_code'] = prescription.project[b].project.medical_code
  4213. // obj['project_name'] = prescription.project[b].project.project_name
  4214. //
  4215. // } else if (prescription.project[b].type == 3) {
  4216. // obj['statistical_classification'] = ""
  4217. // obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  4218. // obj['project_name'] = prescription.project[b].good_info.good_name
  4219. // }
  4220. // tempProject.push(obj)
  4221. // }
  4222. //
  4223. // //附加收费
  4224. // for (let b = 0; b < prescription.addition.length; b++) {
  4225. // let obj = {
  4226. // item_name: prescription.addition[b].item_name,
  4227. // price: prescription.addition[b].price,
  4228. // count: prescription.addition[b].count,
  4229. // item_id: prescription.addition[b].item_id,
  4230. // };
  4231. // tempAddition.push(obj)
  4232. // }
  4233. //
  4234. // var preTime = nowTime
  4235. //
  4236. // let index = i + 1;
  4237. // let obj = {
  4238. // id: 0,
  4239. // name: '处方' + index,
  4240. // advices: tempAdvice,
  4241. // project: tempProject,
  4242. // addition: tempAddition,
  4243. // order_status: 1,
  4244. // pre_time: preTime
  4245. // };
  4246. // this.prescriptions.push(obj)
  4247. // }
  4248. // }
  4249. // }else{
  4250. // let obj = {
  4251. // id: 0,
  4252. // name: '处方' + 1,
  4253. // advices: [],
  4254. // project: [],
  4255. // addition: [],
  4256. // order_status: 0,
  4257. // pre_time: nowTime,
  4258. //
  4259. // };
  4260. // this.prescriptions.push(obj)
  4261. // }
  4262. }
  4263. }
  4264. this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis, this.patient_diagnoses)
  4265. this.$refs.child.watchSign = 0
  4266. }
  4267. })
  4268. this.$refs.child.watchSign = 0
  4269. }
  4270. }else if(this.titleType == '透析历史'){
  4271. this.$refs.childOne.show(this.patientid)
  4272. } else {
  4273. this.patientid = val.id
  4274. var nowDate = new Date()
  4275. var nowYear = nowDate.getFullYear()
  4276. var nowMonth = nowDate.getMonth() + 1
  4277. var nowDay = nowDate.getDate()
  4278. var hours = nowDate.getHours()
  4279. var min = nowDate.getMinutes()
  4280. var nowTime =
  4281. nowYear +
  4282. '-' +
  4283. (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
  4284. '-' +
  4285. (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (hours < 10 ? '0' + hours : hours) +
  4286. ':' + (min < 10 ? '0' + min : min)
  4287. var last_month = nowDate.getMonth() < 10 ? '0' + nowDate.getMonth().toString() : nowDate.getMonth() //获取当前月份(0-11,0代表1月)
  4288. var endTime =
  4289. nowYear +
  4290. '-' +
  4291. last_month +
  4292. '-' +
  4293. (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (hours < 10 ? '0' + hours : hours) +
  4294. ':' + (min < 10 ? '0' + min : min)
  4295. let isShowDailog = false
  4296. for (let i = 0; i < this.prescriptions.length; i++) {
  4297. if ((this.prescriptions[i].id == 0 && this.prescriptions[i].advices.length > 0) || (this.prescriptions[i].id == 0 && this.prescriptions[i].project.length > 0)) {
  4298. isShowDailog = true
  4299. }
  4300. }
  4301. if (isShowDailog) {
  4302. console.log("日志333333")
  4303. this.all_data.map((item, index) => {
  4304. if (item.id == this.oldCurrentRow.id) {
  4305. this.$refs.tab.setCurrentRow(this.all_data[index])
  4306. return
  4307. }
  4308. })
  4309. // this.$confirm('是否保存当前处方', '保存', {
  4310. // confirmButtonText: '确 定',
  4311. // cancelButtonText: '取 消',
  4312. // type: 'warning'
  4313. // }).then(() => {
  4314. // this.open(1)
  4315. // }).catch(() => {
  4316. for (let i = 0; i < this.all_data.length; i++) {
  4317. if (this.all_data[i].id == val.id) {
  4318. this.$refs.tab.setCurrentRow(this.all_data[i])
  4319. }
  4320. }
  4321. this.patientid = val.id
  4322. let params = {
  4323. 'record_date': this.record_date,
  4324. 'patient_id': val.id,
  4325. 'his_patient_id': val.his_patient_id,
  4326. 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
  4327. 'end_time': moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
  4328. 'p_type': 2
  4329. }
  4330. if (this.current_tab == 'day') {
  4331. getPatientInfo(params).then(response => {
  4332. if (response.data.state == 0) {
  4333. this.$message.error(response.data.msg)
  4334. return false
  4335. } else {
  4336. if (this.$store.getters.xt_user.org_id != 10215) {
  4337. if (response.data.data.sch_prescriptions == null) {
  4338. response.data.data.sch_prescriptions = []
  4339. }
  4340. } else {
  4341. response.data.data.sch_prescriptions = []
  4342. }
  4343. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  4344. if (response.data.data.sch_prescriptions[i].advices == null) {
  4345. response.data.data.sch_prescriptions[i].advices = []
  4346. }
  4347. if (response.data.data.sch_prescriptions[i].project == null) {
  4348. response.data.data.sch_prescriptions[i].project = []
  4349. }
  4350. }
  4351. for (let i = 0; i < this.all_data.length; i++) {
  4352. if (this.all_data[i].id == val.id) {
  4353. this.oldCurrentRow = this.all_data[i]
  4354. }
  4355. }
  4356. this.prescriptions = []
  4357. this.patientInfo = response.data.data.xt_info
  4358. this.hisPatientInfo = response.data.data.his_info
  4359. this.case_history = response.data.data.case_history
  4360. if (this.case_history.primary_disease == '') {
  4361. this.case_history.primary_disease = ''
  4362. } else {
  4363. this.case_history.primary_disease = this.case_history.primary_disease
  4364. }
  4365. if (this.case_history.confirm_failure_date <= 0) {
  4366. this.case_history.confirm_failure_date = ''
  4367. } else {
  4368. this.case_history.confirm_failure_date = uParseTime(this.case_history.confirm_failure_date, '{y}-{m}-{d}')
  4369. }
  4370. if (this.case_history.drug_allergy_history == '') {
  4371. this.case_history.drug_allergy_history = ''
  4372. } else {
  4373. this.case_history.drug_allergy_history = this.case_history.drug_allergy_history
  4374. }
  4375. if (this.case_history.physical_examination == '') {
  4376. this.case_history.physical_examination = ''
  4377. } else {
  4378. this.case_history.physical_examination = this.case_history.physical_examination
  4379. }
  4380. if (this.case_history.special_inspection == '') {
  4381. this.case_history.special_inspection = ''
  4382. } else {
  4383. this.case_history.special_inspection = this.case_history.special_inspection
  4384. }
  4385. if (this.case_history.lab_apparatus == '') {
  4386. this.case_history.lab_apparatus = ''
  4387. } else {
  4388. this.case_history.lab_apparatus = this.case_history.lab_apparatus
  4389. }
  4390. this.doctors = response.data.data.doctors
  4391. this.department = response.data.data.department
  4392. this.schedule = response.data.data.schedule
  4393. for (let i = 0; i < this.doctors.length; i++) {
  4394. if (this.doctors[i].user_type == 1) {
  4395. this.doctors.splice(i, 1)
  4396. }
  4397. }
  4398. this.info = response.data.data.info
  4399. this.last_info = response.data.data.last_info
  4400. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  4401. if (this.case_history.breathing <= 0) {
  4402. this.case_history.breathing = ''
  4403. }
  4404. if (this.case_history.sick <= 0) {
  4405. this.case_history.sick = ''
  4406. }
  4407. if (this.case_history.diagnose <= 0) {
  4408. this.case_history.diagnose = ''
  4409. }
  4410. if (this.case_history.temperature <= 0) {
  4411. this.case_history.temperature = ''
  4412. }
  4413. if (this.case_history.blood_sugar <= 0) {
  4414. this.case_history.blood_sugar = ''
  4415. }
  4416. if (this.case_history.pulse <= 0) {
  4417. this.case_history.pulse = ''
  4418. }
  4419. if (this.case_history.sbp <= 0) {
  4420. this.case_history.sbp = ''
  4421. }
  4422. if (this.case_history.dbp <= 0) {
  4423. this.case_history.dbp = ''
  4424. }
  4425. if (this.case_history.height <= 0) {
  4426. this.case_history.height = ''
  4427. }
  4428. if (this.case_history.blood_fat <= 0) {
  4429. this.case_history.blood_fat = ''
  4430. }
  4431. if (this.case_history.sick_type <= 0) {
  4432. this.case_history.sick_type = ''
  4433. }
  4434. this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
  4435. if (this.case_history.is_infect == 1) {
  4436. this.case_history.is_infect = true
  4437. } else {
  4438. this.case_history.is_infect = false
  4439. }
  4440. this.prescriptionList = response.data.data.prescription
  4441. if (response.data.data.prescription.length > 0) {
  4442. for (let i = 0; i < response.data.data.prescription.length; i++) {
  4443. var prescription = response.data.data.prescription[i]
  4444. let tempAdvice = []
  4445. let tempProject = []
  4446. let tempAddition = []
  4447. var is_medicine = false
  4448. //药品
  4449. for (let b = 0; b < prescription.advices.length; b++) {
  4450. let obj = {
  4451. advice_id: prescription.advices[b].id,
  4452. drug_name: prescription.advices[b].advice_name,
  4453. single_dose: prescription.advices[b].single_dose,
  4454. delivery_way: prescription.advices[b].delivery_way,
  4455. execution_frequency: prescription.advices[b].execution_frequency,
  4456. retail_price: prescription.advices[b].price.toString(),
  4457. remark: prescription.advices[b].remark,
  4458. day: prescription.advices[b].day,
  4459. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  4460. single_dose_unit: prescription.advices[b].single_dose_unit,
  4461. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  4462. medical_insurance_number: prescription.advices[b].med_list_codg,
  4463. id: prescription.advices[b].drug_id,
  4464. drug: prescription.advices[b].drug,
  4465. groupno: prescription.advices[b].groupno,
  4466. hosp_appr_flag: prescription.advices[b].hosp_appr_flag.toString(),
  4467. is_self_drug: prescription.advices[b].is_self_drug.toString(),
  4468. drug_way_count: prescription.advices[b].drug_way_count,
  4469. execution_state: prescription.advices[b].execution_state,
  4470. is_medicine: prescription.advices[b].is_medicine
  4471. }
  4472. tempAdvice.push(obj)
  4473. if (prescription.advices[b].is_medicine == 1) {
  4474. is_medicine = true
  4475. }
  4476. }
  4477. //项目
  4478. for (let b = 0; b < prescription.project.length; b++) {
  4479. let obj = {
  4480. id: prescription.project[b].id,
  4481. project_id: prescription.project[b].project_id,
  4482. project_name: prescription.project[b].project.project_name,
  4483. single_dose: prescription.project[b].single_dose,
  4484. delivery_way: prescription.project[b].delivery_way,
  4485. execution_frequency: prescription.project[b].execution_frequency,
  4486. number_days: prescription.project[b].day,
  4487. total: prescription.project[b].count.toString(),
  4488. price: prescription.project[b].price,
  4489. remark: prescription.project[b].remark,
  4490. medical_code: prescription.project[b].project.medical_code,
  4491. unit: prescription.project[b].unit,
  4492. type: prescription.project[b].type,
  4493. execution_state: prescription.project[b].execution_state
  4494. }
  4495. if (prescription.project[b].type == 2) {
  4496. obj['statistical_classification'] = prescription.project[b].team.project_team
  4497. obj['medical_code'] = prescription.project[b].project.medical_code
  4498. obj['project_name'] = prescription.project[b].project.project_name
  4499. obj['project'] = prescription.project[b].project
  4500. } else if (prescription.project[b].type == 3) {
  4501. if (prescription.project[b].team_id > 0) {
  4502. obj['statistical_classification'] = prescription.project[b].team.project_team
  4503. }
  4504. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  4505. obj['project_name'] = prescription.project[b].good_info.good_name
  4506. obj['good_info'] = prescription.project[b].good_info
  4507. }
  4508. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  4509. obj['single_dose'] = "1"
  4510. }
  4511. tempProject.push(obj)
  4512. }
  4513. //附加收费
  4514. // for (let b = 0; b < prescription.addition.length; b++) {
  4515. // let obj = {
  4516. // id: prescription.addition[b].id,
  4517. // item_name: prescription.addition[b].item_name,
  4518. // price: prescription.addition[b].price,
  4519. // count: prescription.addition[b].count,
  4520. // item_id: prescription.addition[b].item_id
  4521. // }
  4522. // tempAddition.push(obj)
  4523. // }
  4524. var preTime = nowTime
  4525. if (this.org_id != 9919 && this.org_id != 10485 && this.org_id != 10191 && this.$store.getters.xt_user.org.id != 10375 ) {
  4526. if (prescription.pre_time == 0) {
  4527. if (this.schedule.schedule_type == 1) {
  4528. if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 0 || this.org_id == 10633) {
  4529. preTime = this.record_date + ' ' + '6:30'
  4530. } else if(this.org_id == 10206 || this.org_id == 10598){
  4531. preTime = this.record_date + ' ' + '6:00'
  4532. } else if(this.org_id == 10721){
  4533. preTime = this.record_date + ' ' + '05:30'
  4534. } else {
  4535. preTime = this.record_date + ' ' + '7:00'
  4536. }
  4537. // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
  4538. } else if (this.schedule.schedule_type == 2) {
  4539. if(this.org_id == 10206 ){
  4540. preTime = this.record_date + ' ' + '10:30'
  4541. }else if(this.org_id == 10598){
  4542. preTime = this.record_date + ' ' + '09:00'
  4543. }else if(this.org_id == 10721){
  4544. preTime = this.record_date + ' ' + '10:00'
  4545. }else {
  4546. preTime = this.record_date + ' ' + '11:00'
  4547. }
  4548. } else if (this.schedule.schedule_type == 3) {
  4549. preTime = this.record_date + ' ' + '17:00'
  4550. }
  4551. if(this.org_id == 10510 || this.org_id == 0){
  4552. preTime = nowTime
  4553. }
  4554. } else {
  4555. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  4556. }
  4557. } else {
  4558. if (prescription.pre_time == 0) {
  4559. // preTime = nowTime
  4560. if(nowTime.split(" ")[0] != this.record_date){
  4561. if(this.schedule.schedule_type == 1){
  4562. if(this.org_id == 10206 || this.org_id == 10598) {
  4563. preTime = this.record_date+ ' ' + '6:00'
  4564. }else if(this.org_id == 10721){
  4565. preTime = this.record_date + ' ' + '05:30'
  4566. }else {
  4567. preTime = this.record_date + ' ' + '7:00'
  4568. }
  4569. }else if(this.schedule.schedule_type == 2){
  4570. if(this.org_id == 10206 || this.org_id == 0){
  4571. preTime = this.record_date + ' ' + '10:30'
  4572. }else if(this.org_id == 10721){
  4573. preTime = this.record_date + ' ' + '10:00'
  4574. }else if(this.org_id == 10598){
  4575. preTime = this.record_date + ' ' + '09:00'
  4576. }else {
  4577. preTime = this.record_date + ' ' + '11:00'
  4578. }
  4579. }else{
  4580. preTime = this.record_date + ' ' + '17:00'
  4581. }
  4582. }
  4583. if(this.org_id == 10510 || this.org_id == 0){
  4584. preTime = nowTime
  4585. }
  4586. } else {
  4587. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  4588. }
  4589. }
  4590. let diass = []
  4591. if(prescription.diagnose.length > 0) {
  4592. for (let i = 0; i < prescription.diagnose.split(",").length; i++) {
  4593. diass.push(parseInt(prescription.diagnose.split(",")[i]))
  4594. }
  4595. }
  4596. let index = i + 1
  4597. let obj = {
  4598. id: prescription.id,
  4599. name: '处方' + index,
  4600. advices: tempAdvice,
  4601. project: tempProject,
  4602. addition: tempAddition,
  4603. order_status: prescription.order_status,
  4604. pre_time: preTime,
  4605. med_type: parseInt(prescription.med_type),
  4606. is_medicine_status: is_medicine,
  4607. diagnose:diass,
  4608. }
  4609. this.prescriptions.push(obj)
  4610. }
  4611. } else {
  4612. if (response.data.data.count <= 1 && response.data.data.schedule.id > 0 && response.data.data.sch_prescriptions.length > 0) {
  4613. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  4614. var prescription = response.data.data.sch_prescriptions[i]
  4615. for (let b = 0; b < prescription.advices.length; b++) {
  4616. if (prescription.med_type == '14' && prescription.advices[b].drug.is_special_diseases != 1) {
  4617. prescription.advices.splice(b--, 1)
  4618. }
  4619. }
  4620. for (let b = 0; b < prescription.project.length; b++) {
  4621. if (prescription.project[b].type == 2) {
  4622. if (prescription.med_type == '14' && prescription.project[b].project.disease_directory != 1) {
  4623. prescription.project.splice(b--, 1)
  4624. }
  4625. } else if (prescription.project[b].type == 3) {
  4626. if (prescription.med_type == '14' && prescription.project[b].good_info.is_special_diseases != 1) {
  4627. prescription.project.splice(b--, 1)
  4628. }
  4629. }
  4630. }
  4631. }
  4632. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  4633. var prescription = response.data.data.sch_prescriptions[i]
  4634. let tempAdvice = []
  4635. let tempProject = []
  4636. let tempAddition = []
  4637. //药品
  4638. for (let b = 0; b < prescription.advices.length; b++) {
  4639. let index = b + 1
  4640. let obj = {
  4641. advice_id: 0,
  4642. drug_name: prescription.advices[b].advice_name,
  4643. single_dose: prescription.advices[b].single_dose,
  4644. delivery_way: prescription.advices[b].delivery_way,
  4645. execution_frequency: prescription.advices[b].execution_frequency,
  4646. // retail_price: prescription.advices[b].price.toString(),
  4647. remark: prescription.advices[b].remark,
  4648. day: prescription.advices[b].day,
  4649. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  4650. single_dose_unit: prescription.advices[b].single_dose_unit,
  4651. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  4652. medical_insurance_number: prescription.advices[b].med_list_codg,
  4653. id: prescription.advices[b].drug_id,
  4654. drug: prescription.advices[b].drug,
  4655. groupno: prescription.advices[b].groupno,
  4656. hosp_appr_flag: '1',
  4657. is_self_drug: '',
  4658. drug_way_count: '1',
  4659. execution_state: 2
  4660. }
  4661. if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit) {
  4662. obj['retail_price'] = prescription.advices[b].drug.min_price
  4663. } else if (obj.prescribing_number_unit == prescription.advices[b].drug.max_unit) {
  4664. obj['retail_price'] = prescription.advices[b].drug.retail_price
  4665. } else {
  4666. obj['retail_price'] = prescription.advices[b].drug.min_price
  4667. }
  4668. tempAdvice.push(obj)
  4669. }
  4670. //项目
  4671. for (let b = 0; b < prescription.project.length; b++) {
  4672. let obj = {
  4673. id: 0,
  4674. project_id: prescription.project[b].project_id,
  4675. project_name: prescription.project[b].project.project_name,
  4676. single_dose: prescription.project[b].single_dose,
  4677. delivery_way: prescription.project[b].delivery_way,
  4678. execution_frequency: prescription.project[b].execution_frequency,
  4679. number_days: prescription.project[b].day,
  4680. total: prescription.project[b].count.toString(),
  4681. remark: prescription.project[b].remark,
  4682. medical_code: prescription.project[b].project.medical_code,
  4683. unit: prescription.project[b].unit,
  4684. type: prescription.project[b].type,
  4685. execution_state: 2
  4686. }
  4687. if (prescription.project[b].type == 2) {
  4688. obj['statistical_classification'] = ''
  4689. obj['medical_code'] = prescription.project[b].project.medical_code
  4690. obj['project_name'] = prescription.project[b].project.project_name
  4691. obj['price'] = prescription.project[b].project.price
  4692. obj['project'] = prescription.project[b].project
  4693. } else if (prescription.project[b].type == 3) {
  4694. obj['statistical_classification'] = ''
  4695. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  4696. obj['project_name'] = prescription.project[b].good_info.good_name
  4697. obj['price'] = prescription.project[b].good_info.packing_price
  4698. obj['good_info'] = prescription.project[b].good_info
  4699. }
  4700. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  4701. obj['single_dose'] = "1"
  4702. }
  4703. tempProject.push(obj)
  4704. }
  4705. // var preTime = nowTime
  4706. var preTime = nowTime
  4707. if (this.org_id != 9919 && this.org_id != 10485 && this.org_id != 10191 && this.$store.getters.xt_user.org.id != 10375 ) {
  4708. if (this.schedule.schedule_type == 1) {
  4709. if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 10633) {
  4710. preTime = this.record_date + ' ' + '6:30'
  4711. } else if(this.org_id == 10206 || this.org_id == 10598){
  4712. preTime = this.record_date+ ' ' + '6:00'
  4713. } else if(this.org_id == 10721){
  4714. preTime = this.record_date+ ' ' + '05:30'
  4715. } else {
  4716. preTime = this.record_date + ' ' + '7:00'
  4717. }
  4718. // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
  4719. } else if (this.schedule.schedule_type == 2) {
  4720. if(this.org_id == 10206 || this.org_id == 0){
  4721. preTime = this.record_date + ' ' + '10:30'
  4722. }else if(this.org_id == 10598){
  4723. preTime = this.record_date + ' ' + '09:00'
  4724. }else if(this.org_id == 10721){
  4725. preTime = this.record_date+ ' ' + '10:00'
  4726. } else{
  4727. preTime = this.record_date + ' ' + '11:00'
  4728. }
  4729. } else if (this.schedule.schedule_type == 3) {
  4730. preTime = this.record_date + ' ' + '17:00'
  4731. }
  4732. if(this.org_id == 10510 || this.org_id == 0){
  4733. preTime = nowTime
  4734. }
  4735. }
  4736. if(nowTime.split(" ")[0] != this.record_date){
  4737. if(this.schedule.schedule_type == 1){
  4738. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  4739. preTime = this.record_date+ ' ' + '6:00'
  4740. } else if(this.org_id == 10721){
  4741. preTime = this.record_date+ ' ' + '05:30'
  4742. }else {
  4743. preTime = this.record_date + ' ' + '7:00'
  4744. }
  4745. }else if(this.schedule.schedule_type == 2){
  4746. if(this.org_id == 10206 || this.org_id == 0){
  4747. preTime = this.record_date + ' ' + '10:30'
  4748. }else if(this.org_id == 10598){
  4749. preTime = this.record_date + ' ' + '09:00'
  4750. }else if(this.org_id == 10721){
  4751. preTime = this.record_date+ ' ' + '10:00'
  4752. }else {
  4753. preTime = this.record_date + ' ' + '11:00'
  4754. }
  4755. }else{
  4756. preTime = this.record_date + ' ' + '17:00'
  4757. }
  4758. }
  4759. let index = i + 1
  4760. let obj = {
  4761. id: 0,
  4762. name: '处方' + index,
  4763. advices: tempAdvice,
  4764. project: tempProject,
  4765. addition: tempAddition,
  4766. order_status: 1,
  4767. diagnose:[],
  4768. pre_time: preTime,
  4769. med_type: ''
  4770. }
  4771. if (this.org_id != 10206) {
  4772. if (prescription.med_type == 0 || prescription.med_type == '') {
  4773. obj.med_type = ''
  4774. } else {
  4775. obj.med_type = parseInt(prescription.med_type)
  4776. }
  4777. if (obj.med_type == 0 || obj.med_type == '') {
  4778. obj.med_type = 14
  4779. }
  4780. if (this.org_id == 10721 || this.org_id == 0){
  4781. console.log("~~~~~~~")
  4782. obj.med_type = 992102
  4783. }
  4784. }else{
  4785. obj.med_type = parseInt(prescription.med_type)
  4786. if (obj.med_type == 0 || obj.med_type == '') {
  4787. obj.med_type = 1
  4788. }
  4789. }
  4790. obj.diagnose = []
  4791. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  4792. obj.diagnose.push(2465)
  4793. }
  4794. this.prescriptions.push(obj)
  4795. }
  4796. } else {
  4797. if(nowTime.split(" ")[0] != this.record_date){
  4798. if(this.schedule.schedule_type == 1){
  4799. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  4800. preTime = this.record_date+ ' ' + '6:00'
  4801. }else if(this.org_id == 10721){
  4802. preTime = this.record_date+ ' ' + '05:30'
  4803. }else {
  4804. preTime = this.record_date + ' ' + '7:00'
  4805. }
  4806. }else if(this.schedule.schedule_type == 2){
  4807. if(this.org_id == 10206 || this.org_id == 0){
  4808. preTime = this.record_date + ' ' + '10:30'
  4809. }else if(this.org_id == 10598){
  4810. preTime = this.record_date + ' ' + '09:00'
  4811. }else if(this.org_id == 10721){
  4812. preTime = this.record_date+ ' ' + '10:00'
  4813. }else {
  4814. preTime = this.record_date + ' ' + '11:00'
  4815. }
  4816. }else{
  4817. preTime = this.record_date + ' ' + '17:00'
  4818. }
  4819. }else{
  4820. preTime = nowTime
  4821. }
  4822. let obj = {
  4823. id: 0,
  4824. name: '处方' + 1,
  4825. advices: [],
  4826. project: [],
  4827. addition: [],
  4828. order_status: 0,
  4829. diagnose:[],
  4830. pre_time: preTime,
  4831. med_type: ''
  4832. }
  4833. if (this.org_id != 10206) {
  4834. obj.med_type = 14
  4835. if (this.org_id == 10721 || this.org_id == 0){
  4836. obj.med_type = 992102
  4837. }
  4838. }else{
  4839. obj.med_type = 1
  4840. }
  4841. obj.diagnose = []
  4842. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  4843. obj.diagnose.push(2465)
  4844. }
  4845. this.prescriptions.push(obj)
  4846. }
  4847. }
  4848. this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis, this.patient_diagnoses)
  4849. }
  4850. })
  4851. } else {
  4852. getMonthHisPateintInfo(params).then(response => {
  4853. if (response.data.state == 0) {
  4854. this.$message.error(response.data.msg)
  4855. return false
  4856. } else {
  4857. for (let i = 0; i < this.all_data.length; i++) {
  4858. if (this.all_data[i].id == val.id) {
  4859. this.oldCurrentRow = this.all_data[i]
  4860. }
  4861. }
  4862. this.patientInfo = response.data.data.xt_info
  4863. this.hisPatientInfo = response.data.data.his_info
  4864. this.case_history = response.data.data.case_history
  4865. this.case_history.primary_disease = this.case_history.primary_disease
  4866. this.case_history.confirm_failure_date = uParseTime(this.case_history.confirm_failure_date, '{y}-{m}-{d}')
  4867. this.case_history.drug_allergy_history = this.case_history.drug_allergy_history
  4868. this.case_history.physical_examination = this.case_history.physical_examination
  4869. this.case_history.special_inspection = this.case_history.special_inspection
  4870. this.case_history.lab_apparatus = this.case_history.lab_apparatus
  4871. var month_prescriptions = response.data.data.month_prescriptions
  4872. this.setMonthPrescription(month_prescriptions)
  4873. this.doctors = response.data.data.doctors
  4874. this.department = response.data.data.department
  4875. this.schedule = response.data.data.schedule
  4876. for (let i = 0; i < this.doctors.length; i++) {
  4877. if (this.doctors[i].user_type == 1) {
  4878. this.doctors.splice(i, 1)
  4879. }
  4880. }
  4881. this.info = response.data.data.info
  4882. this.last_info = response.data.data.last_info
  4883. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  4884. if (this.case_history.breathing <= 0) {
  4885. this.case_history.breathing = ''
  4886. }
  4887. if (this.case_history.sick <= 0) {
  4888. this.case_history.sick = ''
  4889. }
  4890. if (this.case_history.diagnose <= 0) {
  4891. this.case_history.diagnose = ''
  4892. }
  4893. if (this.case_history.temperature <= 0) {
  4894. this.case_history.temperature = ''
  4895. }
  4896. if (this.case_history.blood_sugar <= 0) {
  4897. this.case_history.blood_sugar = ''
  4898. }
  4899. if (this.case_history.pulse <= 0) {
  4900. this.case_history.pulse = ''
  4901. }
  4902. if (this.case_history.sbp <= 0) {
  4903. this.case_history.sbp = ''
  4904. }
  4905. if (this.case_history.dbp <= 0) {
  4906. this.case_history.dbp = ''
  4907. }
  4908. if (this.case_history.height <= 0) {
  4909. this.case_history.height = ''
  4910. }
  4911. if (this.case_history.blood_fat <= 0) {
  4912. this.case_history.blood_fat = ''
  4913. }
  4914. if (this.case_history.sick_type <= 0) {
  4915. this.case_history.sick_type = ''
  4916. }
  4917. this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
  4918. if (this.case_history.is_infect == 1) {
  4919. this.case_history.is_infect = true
  4920. } else {
  4921. this.case_history.is_infect = false
  4922. }
  4923. this.$refs.prescriptions.setMonthData(this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info)
  4924. }
  4925. })
  4926. }
  4927. } else {
  4928. console.log("日22222")
  4929. this.patientid = val.id
  4930. let params = {
  4931. 'record_date': this.record_date,
  4932. 'patient_id': val.id,
  4933. 'his_patient_id': val.his_patient_id,
  4934. 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
  4935. 'end_time': moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
  4936. 'p_type': 2
  4937. }
  4938. if (this.current_tab == 'day') {
  4939. console.log("日志111")
  4940. getPatientInfo(params).then(response => {
  4941. if (response.data.state == 0) {
  4942. this.$message.error(response.data.msg)
  4943. return false
  4944. } else {
  4945. if (this.$store.getters.xt_user.org_id != 10215) {
  4946. if (response.data.data.sch_prescriptions == null) {
  4947. response.data.data.sch_prescriptions = []
  4948. }
  4949. } else {
  4950. response.data.data.sch_prescriptions = []
  4951. }
  4952. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  4953. if (response.data.data.sch_prescriptions[i].advices == null) {
  4954. response.data.data.sch_prescriptions[i].advices = []
  4955. }
  4956. if (response.data.data.sch_prescriptions[i].project == null) {
  4957. response.data.data.sch_prescriptions[i].project = []
  4958. }
  4959. }
  4960. this.prescriptions = []
  4961. this.month_prescriptions = []
  4962. this.patientInfo = response.data.data.xt_info
  4963. this.hisPatientInfo = response.data.data.his_info
  4964. this.case_history = response.data.data.case_history
  4965. if (this.case_history.primary_disease == '') {
  4966. this.case_history.primary_disease = ''
  4967. } else {
  4968. this.case_history.primary_disease = this.case_history.primary_disease
  4969. }
  4970. if (this.case_history.confirm_failure_date <= 0) {
  4971. this.case_history.confirm_failure_date = ''
  4972. } else {
  4973. this.case_history.confirm_failure_date = uParseTime(this.case_history.confirm_failure_date, '{y}-{m}-{d}')
  4974. }
  4975. if (this.case_history.drug_allergy_history == '') {
  4976. this.case_history.drug_allergy_history = ''
  4977. } else {
  4978. this.case_history.drug_allergy_history = this.case_history.drug_allergy_history
  4979. }
  4980. if (this.case_history.physical_examination == '') {
  4981. this.case_history.physical_examination = ''
  4982. } else {
  4983. this.case_history.physical_examination = this.case_history.physical_examination
  4984. }
  4985. if (this.case_history.special_inspection == '') {
  4986. this.case_history.special_inspection = ''
  4987. } else {
  4988. this.case_history.special_inspection = this.case_history.special_inspection
  4989. }
  4990. if (this.case_history.lab_apparatus == '') {
  4991. this.case_history.lab_apparatus = ''
  4992. } else {
  4993. this.case_history.lab_apparatus = this.case_history.lab_apparatus
  4994. }
  4995. this.info = response.data.data.info
  4996. this.last_info = response.data.data.last_info
  4997. this.schedule = response.data.data.schedule
  4998. this.doctors = response.data.data.doctors
  4999. this.department = response.data.data.department
  5000. for (let i = 0; i < this.doctors.length; i++) {
  5001. if (this.doctors[i].user_type == 1) {
  5002. this.doctors.splice(i, 1)
  5003. }
  5004. }
  5005. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  5006. if (this.case_history.breathing <= 0) {
  5007. this.case_history.breathing = ''
  5008. }
  5009. if (this.case_history.sick <= 0) {
  5010. this.case_history.sick = ''
  5011. }
  5012. if (this.case_history.diagnose <= 0) {
  5013. this.case_history.diagnose = ''
  5014. }
  5015. if (this.case_history.temperature <= 0) {
  5016. this.case_history.temperature = ''
  5017. }
  5018. if (this.case_history.blood_sugar <= 0) {
  5019. this.case_history.blood_sugar = ''
  5020. }
  5021. if (this.case_history.pulse <= 0) {
  5022. this.case_history.pulse = ''
  5023. }
  5024. if (this.case_history.sbp <= 0) {
  5025. this.case_history.sbp = ''
  5026. }
  5027. if (this.case_history.dbp <= 0) {
  5028. this.case_history.dbp = ''
  5029. }
  5030. if (this.case_history.height <= 0) {
  5031. this.case_history.height = ''
  5032. }
  5033. if (this.case_history.blood_fat <= 0) {
  5034. this.case_history.blood_fat = ''
  5035. }
  5036. if (this.case_history.sick_type <= 0) {
  5037. this.case_history.sick_type = ''
  5038. }
  5039. this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
  5040. if (this.case_history.is_infect == 1) {
  5041. this.case_history.is_infect = true
  5042. } else {
  5043. this.case_history.is_infect = false
  5044. }
  5045. this.prescriptionList = response.data.data.prescription
  5046. if (response.data.data.prescription.length > 0) {
  5047. for (let i = 0; i < response.data.data.prescription.length; i++) {
  5048. var prescription = response.data.data.prescription[i]
  5049. let tempAdvice = []
  5050. let tempProject = []
  5051. let tempAddition = []
  5052. var is_medicine = false
  5053. //药品
  5054. for (let b = 0; b < prescription.advices.length; b++) {
  5055. let obj = {
  5056. advice_id: prescription.advices[b].id,
  5057. drug_name: prescription.advices[b].advice_name,
  5058. single_dose: prescription.advices[b].single_dose,
  5059. delivery_way: prescription.advices[b].delivery_way,
  5060. execution_frequency: prescription.advices[b].execution_frequency,
  5061. retail_price: prescription.advices[b].price.toString(),
  5062. remark: prescription.advices[b].remark,
  5063. day: prescription.advices[b].day,
  5064. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  5065. single_dose_unit: prescription.advices[b].single_dose_unit,
  5066. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  5067. medical_insurance_number: prescription.advices[b].med_list_codg,
  5068. id: prescription.advices[b].drug_id,
  5069. drug: prescription.advices[b].drug,
  5070. groupno: prescription.advices[b].groupno,
  5071. hosp_appr_flag: prescription.advices[b].hosp_appr_flag.toString(),
  5072. is_self_drug: prescription.advices[b].is_self_drug.toString(),
  5073. drug_way_count: prescription.advices[b].drug_way_count,
  5074. execution_state: prescription.advices[b].execution_state,
  5075. is_medicine: prescription.advices[b].is_medicine
  5076. }
  5077. tempAdvice.push(obj)
  5078. if (prescription.advices[b].is_medicine == 1) {
  5079. is_medicine = true
  5080. }
  5081. }
  5082. //项目
  5083. for (let b = 0; b < prescription.project.length; b++) {
  5084. let obj = {
  5085. id: prescription.project[b].id,
  5086. project_id: prescription.project[b].project_id,
  5087. project_name: prescription.project[b].project.project_name,
  5088. // statistical_classification: prescription.project[b].project.statistical_classification,
  5089. single_dose: prescription.project[b].single_dose,
  5090. delivery_way: prescription.project[b].delivery_way,
  5091. execution_frequency: prescription.project[b].execution_frequency,
  5092. number_days: prescription.project[b].day,
  5093. total: prescription.project[b].count.toString(),
  5094. price: prescription.project[b].price,
  5095. remark: prescription.project[b].remark,
  5096. medical_code: prescription.project[b].project.medical_code,
  5097. unit: prescription.project[b].unit,
  5098. type: prescription.project[b].type,
  5099. execution_state: prescription.project[b].execution_state
  5100. }
  5101. if (prescription.project[b].type == 2) {
  5102. obj['statistical_classification'] = prescription.project[b].team.project_team
  5103. obj['medical_code'] = prescription.project[b].project.medical_code
  5104. obj['project_name'] = prescription.project[b].project.project_name
  5105. obj['project'] = prescription.project[b].project
  5106. } else if (prescription.project[b].type == 3) {
  5107. if (prescription.project[b].team_id > 0) {
  5108. obj['statistical_classification'] = prescription.project[b].team.project_team
  5109. }
  5110. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  5111. obj['project_name'] = prescription.project[b].good_info.good_name
  5112. obj['good_info'] = prescription.project[b].good_info
  5113. }
  5114. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  5115. obj['single_dose'] = "1"
  5116. }
  5117. tempProject.push(obj)
  5118. }
  5119. //附加收费
  5120. // for (let b = 0; b < prescription.addition.length; b++) {
  5121. // let obj = {
  5122. // id: prescription.addition[b].id,
  5123. // item_name: prescription.addition[b].item_name,
  5124. // price: prescription.addition[b].price,
  5125. // count: prescription.addition[b].count,
  5126. // item_id: prescription.addition[b].item_id
  5127. // }
  5128. // tempAddition.push(obj)
  5129. // }
  5130. var preTime = nowTime
  5131. if ( this.org_id != 9919 && this.org_id != 10485 && this.org_id != 10191 && this.$store.getters.xt_user.org.id != 10375) {
  5132. if (prescription.pre_time == 0) {
  5133. // preTime = nowTime
  5134. if (this.schedule.schedule_type == 1) {
  5135. if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 0 || this.org_id == 10633) {
  5136. preTime = this.record_date + ' ' + '6:30'
  5137. } else if(this.org_id == 10206 || this.org_id == 10598){
  5138. preTime = this.record_date + ' ' + '6:00'
  5139. } else if(this.org_id == 10721){
  5140. preTime = this.record_date+ ' ' + '05:30'
  5141. }else {
  5142. preTime = this.record_date + ' ' + '7:00'
  5143. }
  5144. // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
  5145. } else if (this.schedule.schedule_type == 2) {
  5146. if(this.org_id == 10206 ){
  5147. preTime =this.record_date + ' ' + '10:30'
  5148. }else if(this.org_id == 10598){
  5149. preTime = this.record_date + ' ' + '09:00'
  5150. }else if(this.org_id == 10721){
  5151. preTime = this.record_date+ ' ' + '10:00'
  5152. }else{
  5153. preTime = this.record_date + ' ' + '11:00'
  5154. }
  5155. } else if (this.schedule.schedule_type == 3) {
  5156. preTime = this.record_date + ' ' + '17:00'
  5157. }
  5158. if(this.org_id == 10510 || this.org_id == 0){
  5159. preTime = nowTime
  5160. }
  5161. } else {
  5162. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  5163. }
  5164. } else {
  5165. if (prescription.pre_time == 0) {
  5166. preTime = nowTime
  5167. if(nowTime.split(" ")[0] != this.record_date){
  5168. if(this.schedule.schedule_type == 1){
  5169. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  5170. preTime = this.record_date+ ' ' + '6:00'
  5171. }else if(this.org_id == 10721){
  5172. preTime = this.record_date+ ' ' + '05:30'
  5173. }else {
  5174. preTime = this.record_date + ' ' + '7:00'
  5175. }
  5176. }else if(this.schedule.schedule_type == 2){
  5177. if(this.org_id == 10206 || this.org_id == 0){
  5178. preTime = this.record_date + ' ' + '10:30'
  5179. }else if(this.org_id == 10598){
  5180. preTime = this.record_date + ' ' + '09:00'
  5181. }else if(this.org_id == 10721){
  5182. preTime = this.record_date+ ' ' + '10:00'
  5183. }else {
  5184. preTime = this.record_date + ' ' + '11:00'
  5185. }
  5186. }else{
  5187. preTime = this.record_date + ' ' + '17:00'
  5188. }
  5189. }
  5190. if(this.org_id == 10510 || this.org_id == 0){
  5191. preTime = nowTime
  5192. }
  5193. } else {
  5194. preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
  5195. }
  5196. }
  5197. let diass = []
  5198. if(prescription.diagnose.length > 0) {
  5199. for (let i = 0; i < prescription.diagnose.split(",").length; i++) {
  5200. diass.push(parseInt(prescription.diagnose.split(",")[i]))
  5201. }
  5202. }
  5203. let index = i + 1
  5204. let obj = {
  5205. id: prescription.id,
  5206. name: '处方' + index,
  5207. advices: tempAdvice,
  5208. project: tempProject,
  5209. addition: tempAddition,
  5210. order_status: prescription.order_status,
  5211. pre_time: preTime,
  5212. diagnose:diass,
  5213. med_type: parseInt(prescription.med_type),
  5214. is_medicine_status: is_medicine
  5215. }
  5216. this.prescriptions.push(obj)
  5217. }
  5218. } else {
  5219. console.log("日志开始")
  5220. if (response.data.data.count <= 1 && response.data.data.schedule.id > 0 && response.data.data.sch_prescriptions.length > 0) {
  5221. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  5222. var prescription = response.data.data.sch_prescriptions[i]
  5223. for (let b = 0; b < prescription.advices.length; b++) {
  5224. if (prescription.med_type == '14' && prescription.advices[b].drug.is_special_diseases != 1) {
  5225. prescription.advices.splice(b--, 1)
  5226. }
  5227. }
  5228. for (let b = 0; b < prescription.project.length; b++) {
  5229. if (prescription.project[b].type == 2) {
  5230. if (prescription.med_type == '14' && prescription.project[b].project.disease_directory != 1) {
  5231. prescription.project.splice(b--, 1)
  5232. }
  5233. } else if (prescription.project[b].type == 3) {
  5234. if (prescription.med_type == '14' && prescription.project[b].good_info.is_special_diseases != 1) {
  5235. prescription.project.splice(b--, 1)
  5236. }
  5237. }
  5238. }
  5239. }
  5240. for (let i = 0; i < response.data.data.sch_prescriptions.length; i++) {
  5241. var prescription = response.data.data.sch_prescriptions[i]
  5242. let tempAdvice = []
  5243. let tempProject = []
  5244. let tempAddition = []
  5245. //药品
  5246. for (let b = 0; b < prescription.advices.length; b++) {
  5247. let index = b + 1
  5248. let obj = {
  5249. advice_id: 0,
  5250. drug_name: prescription.advices[b].advice_name,
  5251. single_dose: prescription.advices[b].single_dose,
  5252. delivery_way: prescription.advices[b].delivery_way,
  5253. execution_frequency: prescription.advices[b].execution_frequency,
  5254. // retail_price: prescription.advices[b].price.toString(),
  5255. remark: prescription.advices[b].remark,
  5256. day: prescription.advices[b].day,
  5257. prescribing_number: prescription.advices[b].prescribing_number.toString(),
  5258. single_dose_unit: prescription.advices[b].single_dose_unit,
  5259. prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
  5260. medical_insurance_number: prescription.advices[b].med_list_codg,
  5261. id: prescription.advices[b].drug_id,
  5262. drug: prescription.advices[b].drug,
  5263. groupno: prescription.advices[b].groupno,
  5264. hosp_appr_flag: '1',
  5265. is_self_drug: '',
  5266. drug_way_count: '1',
  5267. execution_state: 2
  5268. }
  5269. if (obj.prescribing_number_unit == prescription.advices[b].drug.min_unit) {
  5270. obj['retail_price'] = prescription.advices[b].drug.min_price
  5271. } else if (obj.prescribing_number_unit == prescription.advices[b].drug.max_unit) {
  5272. obj['retail_price'] = prescription.advices[b].drug.retail_price
  5273. } else {
  5274. obj['retail_price'] = prescription.advices[b].drug.min_price
  5275. }
  5276. tempAdvice.push(obj)
  5277. }
  5278. //项目
  5279. for (let b = 0; b < prescription.project.length; b++) {
  5280. let obj = {
  5281. id: 0,
  5282. project_id: prescription.project[b].project_id,
  5283. project_name: prescription.project[b].project.project_name,
  5284. // statistical_classification: prescription.project[b].project.statistical_classification,
  5285. single_dose: prescription.project[b].single_dose,
  5286. delivery_way: prescription.project[b].delivery_way,
  5287. execution_frequency: prescription.project[b].execution_frequency,
  5288. number_days: prescription.project[b].day,
  5289. total: prescription.project[b].count.toString(),
  5290. remark: prescription.project[b].remark,
  5291. medical_code: prescription.project[b].project.medical_code,
  5292. unit: prescription.project[b].unit,
  5293. type: prescription.project[b].type,
  5294. execution_state: 2
  5295. }
  5296. if (prescription.project[b].type == 2) {
  5297. obj['statistical_classification'] = ''
  5298. obj['medical_code'] = prescription.project[b].project.medical_code
  5299. obj['project_name'] = prescription.project[b].project.project_name
  5300. obj['price'] = prescription.project[b].project.price
  5301. obj['project'] = prescription.project[b].project
  5302. } else if (prescription.project[b].type == 3) {
  5303. obj['statistical_classification'] = ''
  5304. obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
  5305. obj['project_name'] = prescription.project[b].good_info.good_name
  5306. obj['price'] = prescription.project[b].good_info.packing_price
  5307. obj['good_info'] = prescription.project[b].good_info
  5308. }
  5309. if (prescription.project[b].single_dose == 0 || prescription.project[b].single_dose.length == 0) {
  5310. obj['single_dose'] = "1"
  5311. }
  5312. tempProject.push(obj)
  5313. }
  5314. var preTime = nowTime
  5315. // var preTime = ''
  5316. if ( this.org_id != 9919 && this.org_id != 10485 && this.org_id != 10191 && this.$store.getters.xt_user.org.id != 10375) {
  5317. if (this.schedule.schedule_type == 1) {
  5318. if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 0 || this.org_id == 10633) {
  5319. preTime = this.record_date + ' ' + '6:30'
  5320. } else if(this.org_id == 10206 || this.org_id == 10598){
  5321. preTime = this.record_date + ' ' + '6:00'
  5322. } else if(this.org_id == 10721){
  5323. preTime = this.record_date+ ' ' + '05:30'
  5324. }else {
  5325. preTime = this.record_date + ' ' + '7:00'
  5326. }
  5327. // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
  5328. } else if (this.schedule.schedule_type == 2) {
  5329. if(this.org_id == 10206 ){
  5330. preTime = this.record_date + ' ' + '10:30'
  5331. }else if(this.org_id == 10598){
  5332. preTime = this.record_date + ' ' + '09:00'
  5333. }else if(this.org_id == 10721){
  5334. preTime = this.record_date+ ' ' + '10:00'
  5335. }else{
  5336. preTime = this.record_date + ' ' + '11:00'
  5337. }
  5338. } else if (this.schedule.schedule_type == 3) {
  5339. preTime = this.record_date + ' ' + '17:00'
  5340. }
  5341. if(this.org_id == 10510 || this.org_id == 0){
  5342. preTime = nowTime
  5343. }
  5344. }
  5345. if(nowTime.split(" ")[0] != this.record_date){
  5346. if(this.schedule.schedule_type == 1){
  5347. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  5348. preTime = this.record_date+ ' ' + '6:00'
  5349. }else if(this.org_id == 10721){
  5350. preTime = this.record_date+ ' ' + '05:30'
  5351. }else {
  5352. preTime = this.record_date + ' ' + '7:00'
  5353. }
  5354. }else if(this.schedule.schedule_type == 2){
  5355. if(this.org_id == 10206 || this.org_id == 0){
  5356. preTime = this.record_date + ' ' + '10:30'
  5357. }else if(this.org_id == 10721){
  5358. preTime = this.record_date+ ' ' + '10:00'
  5359. }else if(this.org_id == 10598){
  5360. preTime = this.record_date + ' ' + '09:00'
  5361. }else {
  5362. preTime = this.record_date + ' ' + '11:00'
  5363. }
  5364. }else{
  5365. preTime = this.record_date + ' ' + '17:00'
  5366. }
  5367. }
  5368. let index = i + 1
  5369. let obj = {
  5370. id: 0,
  5371. name: '处方' + index,
  5372. advices: tempAdvice,
  5373. project: tempProject,
  5374. addition: tempAddition,
  5375. order_status: 1,
  5376. diagnose:[],
  5377. pre_time: preTime,
  5378. med_type: ''
  5379. }
  5380. if (this.org_id != 10206) {
  5381. if (prescription.med_type == 0 || prescription.med_type == '') {
  5382. obj.med_type = ''
  5383. } else {
  5384. obj.med_type = parseInt(prescription.med_type)
  5385. }
  5386. if (obj.med_type == 0 || obj.med_type == '') {
  5387. obj.med_type = 14
  5388. }
  5389. if (this.org_id == 10721 || this.org_id == 0){
  5390. obj.med_type = 992102
  5391. }
  5392. }else{
  5393. obj.med_type = parseInt(prescription.med_type)
  5394. if (obj.med_type == 0 || obj.med_type == '') {
  5395. obj.med_type = "1"
  5396. }
  5397. }
  5398. obj.diagnose = []
  5399. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  5400. obj.diagnose.push(2465)
  5401. }
  5402. console.log("111222222")
  5403. console.log( obj.diagnose)
  5404. console.log("111222222")
  5405. this.prescriptions.push(obj)
  5406. }
  5407. } else {
  5408. console.log("日志开始1")
  5409. if(nowTime.split(" ")[0] != this.record_date){
  5410. if(this.schedule.schedule_type == 1){
  5411. if(this.org_id == 10206 || this.org_id == 0 || this.org_id == 10598) {
  5412. preTime = this.record_date+ ' ' + '6:00'
  5413. }else if(this.org_id == 10721){
  5414. preTime = this.record_date + ' ' + '05:30'
  5415. }else {
  5416. preTime = this.record_date + ' ' + '7:00'
  5417. }
  5418. }else if(this.schedule.schedule_type == 2){
  5419. if(this.org_id == 10206 || this.org_id == 0){
  5420. preTime = this.record_date + ' ' + '10:30'
  5421. }else if(this.org_id == 10721){
  5422. preTime = this.record_date + ' ' + '10:00'
  5423. }else if(this.org_id == 10598){
  5424. preTime = this.record_date + ' ' + '09:00'
  5425. }else {
  5426. preTime = this.record_date + ' ' + '11:00'
  5427. }
  5428. }else{
  5429. preTime = this.record_date + ' ' + '17:00'
  5430. }
  5431. }else{
  5432. preTime = nowTime
  5433. }
  5434. let obj = {
  5435. id: 0,
  5436. name: '处方' + 1,
  5437. advices: [],
  5438. project: [],
  5439. addition: [],
  5440. order_status: 0,
  5441. pre_time: preTime,
  5442. med_type: '',
  5443. diagnose:[],
  5444. }
  5445. if (this.org_id != 10206) {
  5446. obj.med_type = 14
  5447. if (this.org_id == 10721 || this.org_id == 0){
  5448. obj.med_type = 992102
  5449. }
  5450. }else{
  5451. obj.med_type = 1
  5452. }
  5453. obj.diagnose = []
  5454. if (parseInt(obj.med_type) == 992102 && (this.org_id == 10721 || this.org_id == 0)){
  5455. // obj.diagnose = 2465
  5456. obj.diagnose.push(2465)
  5457. }
  5458. this.prescriptions.push(obj)
  5459. }
  5460. }
  5461. this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis, this.patient_diagnoses)
  5462. }
  5463. })
  5464. } else {
  5465. getMonthHisPateintInfo(params).then(response => {
  5466. if (response.data.state == 0) {
  5467. this.$message.error(response.data.msg)
  5468. return false
  5469. } else {
  5470. this.prescriptions = []
  5471. this.month_prescriptions = []
  5472. var month_prescriptions = response.data.data.month_prescriptions
  5473. this.setMonthPrescription(month_prescriptions)
  5474. this.patientInfo = response.data.data.xt_info
  5475. this.hisPatientInfo = response.data.data.his_info
  5476. this.case_history = response.data.data.case_history
  5477. if (this.case_history.primary_disease == '') {
  5478. this.case_history.primary_disease = ''
  5479. } else {
  5480. this.case_history.primary_disease = this.case_history.primary_disease
  5481. }
  5482. if (this.case_history.confirm_failure_date <= 0) {
  5483. this.case_history.confirm_failure_date = ''
  5484. } else {
  5485. this.case_history.confirm_failure_date = uParseTime(this.case_history.confirm_failure_date, '{y}-{m}-{d}')
  5486. }
  5487. if (this.case_history.drug_allergy_history == '') {
  5488. this.case_history.drug_allergy_history = ''
  5489. } else {
  5490. this.case_history.drug_allergy_history = this.case_history.drug_allergy_history
  5491. }
  5492. if (this.case_history.physical_examination == '') {
  5493. this.case_history.physical_examination = ''
  5494. } else {
  5495. this.case_history.physical_examination = this.case_history.physical_examination
  5496. }
  5497. if (this.case_history.special_inspection == '') {
  5498. this.case_history.special_inspection = ''
  5499. } else {
  5500. this.case_history.special_inspection = this.case_history.special_inspection
  5501. }
  5502. if (this.case_history.lab_apparatus == '') {
  5503. this.case_history.lab_apparatus = ''
  5504. } else {
  5505. this.case_history.lab_apparatus = this.case_history.lab_apparatus
  5506. }
  5507. this.info = response.data.data.info
  5508. this.last_info = response.data.data.last_info
  5509. this.schedule = response.data.data.schedule
  5510. this.doctors = response.data.data.doctors
  5511. this.department = response.data.data.department
  5512. for (let i = 0; i < this.doctors.length; i++) {
  5513. if (this.doctors[i].user_type == 1) {
  5514. this.doctors.splice(i, 1)
  5515. }
  5516. }
  5517. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  5518. if (this.case_history.breathing <= 0) {
  5519. this.case_history.breathing = ''
  5520. }
  5521. if (this.case_history.sick <= 0) {
  5522. this.case_history.sick = ''
  5523. }
  5524. if (this.case_history.diagnose <= 0) {
  5525. this.case_history.diagnose = ''
  5526. }
  5527. if (this.case_history.temperature <= 0) {
  5528. this.case_history.temperature = ''
  5529. }
  5530. if (this.case_history.blood_sugar <= 0) {
  5531. this.case_history.blood_sugar = ''
  5532. }
  5533. if (this.case_history.pulse <= 0) {
  5534. this.case_history.pulse = ''
  5535. }
  5536. if (this.case_history.sbp <= 0) {
  5537. this.case_history.sbp = ''
  5538. }
  5539. if (this.case_history.dbp <= 0) {
  5540. this.case_history.dbp = ''
  5541. }
  5542. if (this.case_history.height <= 0) {
  5543. this.case_history.height = ''
  5544. }
  5545. if (this.case_history.blood_fat <= 0) {
  5546. this.case_history.blood_fat = ''
  5547. }
  5548. if (this.case_history.sick_type <= 0) {
  5549. this.case_history.sick_type = ''
  5550. }
  5551. this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
  5552. if (this.case_history.is_infect == 1) {
  5553. this.case_history.is_infect = true
  5554. } else {
  5555. this.case_history.is_infect = false
  5556. }
  5557. this.$refs.prescriptions.setMonthData(this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info)
  5558. }
  5559. })
  5560. }
  5561. }
  5562. }
  5563. },
  5564. currentChange(currentRow, oldCurrentRow) {
  5565. if (oldCurrentRow) {
  5566. this.newPatientId = oldCurrentRow.id
  5567. this.patientid = oldCurrentRow.id
  5568. }
  5569. let isShowDailog = false
  5570. for (let i = 0; i < this.prescriptions.length; i++) {
  5571. if ((this.prescriptions[i].id == 0 && this.prescriptions[i].advices.length > 0) || (this.prescriptions[i].id == 0 && this.prescriptions[i].project.length > 0)) {
  5572. isShowDailog = true
  5573. }
  5574. }
  5575. if (!isShowDailog) {
  5576. this.oldCurrentRow = currentRow
  5577. return
  5578. }
  5579. }, open_two() {
  5580. this.$refs.prescriptions.open_two()
  5581. }, open_three() {
  5582. this.$refs.prescriptions.open_three()
  5583. },
  5584. open(index) {
  5585. console.log("index",index)
  5586. this.index = index
  5587. if (index == 1) {
  5588. this.$refs.prescriptions.open(1, this.saveLoading)
  5589. } else if (index == 2) {
  5590. this.getPrescriptionList(this.patientInfo.id, this.record_date, 1)
  5591. // this.$router.push("/outpatientDoctorStation/print?record="+this.record_date+"&prescription_id="+this.prescription_id)
  5592. } else if (index == 3) {
  5593. this.$refs.prescriptions.open(3)
  5594. } else if (index == 4) {
  5595. this.$refs.prescriptions.open(4)
  5596. } else if (index == 6) {
  5597. // this.$router.push("/outpatientDoctorStation/treatPrint?record="+this.record_date+"&prescription_id="+this.prescription_id)
  5598. this.getPrescriptionList(this.patientInfo.id, this.record_date, 2)
  5599. // this.$router.push("/outpatientDoctorStation/treatPrint?record="+this.record_date+"&prescription_id="+this.prescription_id)
  5600. } else if (index == 20) {
  5601. this.getPrescriptionList(this.patientInfo.id, this.record_date, 2, 3)
  5602. }
  5603. },
  5604. // changePatient(val){
  5605. // console.log("患者val",val)
  5606. // this.hisPatientInfo = val.hisPatientInfo
  5607. // console.log("333333",this.hisPatientInfo)
  5608. // }
  5609. getMsgFormSon(id) {
  5610. this.detalid = id
  5611. },
  5612. changetwo(data) {
  5613. this.prescription_id = data
  5614. },
  5615. getPrescriptionList(id, record_date, type, checkType) {
  5616. getPrescriptionList(id, 2, record_date).then(response => {
  5617. console.log('123456response.data.data',response.data.data,checkType);
  5618. if (response.data.state == 1) {
  5619. if (checkType != 3) {
  5620. this.centerDialogVisible = true
  5621. var list = response.data.data.list
  5622. let arr1 = []
  5623. let arr2 = []
  5624. let arr3 = []
  5625. let arr4 = []
  5626. for (var i = list.length - 1; i >= 0; i--) {
  5627. if (list[i].type == 1) {
  5628. list[i].prescription_number = list[i].prescription_number + i
  5629. arr1.push(list[i])
  5630. }
  5631. if (list[i].type == 2) {
  5632. list[i].prescription_number = list[i].prescription_number + i
  5633. arr2.push(list[i])
  5634. arr3.push(list[i])
  5635. arr4.push(list[i])
  5636. }
  5637. if (list[i].type == 2) {
  5638. let count = 0
  5639. list[i].project.map(item => {
  5640. if (item.type == 2) {
  5641. if (item.project.cost_classify == 3) {
  5642. count++
  5643. }
  5644. }
  5645. })
  5646. if (count == list[i].project.length) {
  5647. arr2.map((items, index) => {
  5648. if (items.id == list[i].id) {
  5649. arr2.splice(index, 1)
  5650. }
  5651. })
  5652. }
  5653. }
  5654. }
  5655. this.tableData1 = arr1
  5656. this.tableData2 = arr2
  5657. this.tableData4 = arr4
  5658. if (this.org_id == 10402 || this.org_id == 0) {
  5659. this.tableData3 = arr3
  5660. } else {
  5661. this.tableData3 = [arr3[0]]
  5662. }
  5663. } else {
  5664. var list = response.data.data.list
  5665. let arr = []
  5666. for (let i = 0; i < list.length; i++) {
  5667. if (list[i].type == type) {
  5668. list[i].prescription_number = list[i].prescription_number + i
  5669. arr.push(list[i])
  5670. }
  5671. }
  5672. console.log('arrrrrrrrrr', arr)
  5673. this.selecting_schs = arr
  5674. this.savePrint()
  5675. }
  5676. }
  5677. })
  5678. },
  5679. handleSelectionChange1(val) {
  5680. console.log('val', val)
  5681. this.selecting_schs1 = val
  5682. },
  5683. handleSelectionChange2(val) {
  5684. this.selecting_schs2 = val
  5685. },
  5686. handleSelectionChange3(val) {
  5687. console.log('检验',val)
  5688. if (val.length == 0) {
  5689. this.selecting_schs3 = []
  5690. } else {
  5691. if (this.org_id == 10402 ) {
  5692. this.selecting_schs3 = val
  5693. } else {
  5694. console.log('this.tableData4',this.tableData4);
  5695. this.selecting_schs3 = this.tableData4
  5696. }
  5697. }
  5698. },
  5699. handleClick() {
  5700. if (this.titleType == '电子处方' || this.titleType == '电子病历') {
  5701. if (this.radio == 1) {
  5702. this.un_cure_data.map(item => {
  5703. if (item.id == this.patientid) {
  5704. console.log('~~~~~~~~22222222')
  5705. this.getPatientInfo(item)
  5706. }
  5707. })
  5708. } else if (this.radio == 2) {
  5709. this.cure_data.map(item => {
  5710. if (item.id == this.patientid) {
  5711. this.getPatientInfo(item)
  5712. }
  5713. })
  5714. } else {
  5715. this.all_data.map(item => {
  5716. if (item.id == this.patientid) {
  5717. this.getPatientInfo(item)
  5718. }
  5719. })
  5720. }
  5721. }
  5722. },
  5723. savePrint() {
  5724. //处方
  5725. var arr1 = []
  5726. if (this.selecting_schs1.length > 0) {
  5727. for (let i = 0; i < this.selecting_schs1.length; i++) {
  5728. arr1.push(this.selecting_schs1[i].id)
  5729. }
  5730. var ids1 = arr1.join(',')
  5731. let obj1 = {
  5732. record: this.record_date,
  5733. prescription_id: this.prescription_id,
  5734. ids: ids1,
  5735. patient_id: this.patientid,
  5736. his_patient_id: this.hisPatientInfo.id
  5737. }
  5738. this.paramsObj = obj1
  5739. }
  5740. //治疗
  5741. var arr2 = []
  5742. if (this.selecting_schs2.length > 0) {
  5743. for (let i = 0; i < this.selecting_schs2.length; i++) {
  5744. arr2.push(this.selecting_schs2[i].id)
  5745. }
  5746. var ids2 = arr2.join(',')
  5747. let obj2 = {
  5748. record: this.record_date,
  5749. prescription_id: this.prescription_id,
  5750. ids: ids2,
  5751. patient_id: this.patientid,
  5752. his_patient_id: this.hisPatientInfo.id
  5753. }
  5754. this.paramsObj2 = obj2
  5755. }
  5756. // 检验
  5757. var arr3 = []
  5758. if (this.selecting_schs3.length > 0) {
  5759. for (let i = 0; i < this.selecting_schs3.length; i++) {
  5760. arr3.push(this.selecting_schs3[i].id)
  5761. }
  5762. console.log(arr3)
  5763. var ids2 = arr3.join(',')
  5764. console.log(ids2)
  5765. let obj3 = {
  5766. record: this.record_date,
  5767. prescription_id: this.prescription_id,
  5768. ids: ids2,
  5769. patient_id: this.patientid,
  5770. his_patient_id: this.hisPatientInfo.id
  5771. }
  5772. this.paramsObj3 = obj3
  5773. }
  5774. this.innerVisible = true
  5775. // if(this.index == 20){
  5776. // console.log('ids',ids)
  5777. // let obj = {
  5778. // record: this.record_date,
  5779. // prescription_id: this.prescription_id,
  5780. // ids: ids,
  5781. // patient_id: this.patientid
  5782. // };
  5783. // this.paramsObj = obj;
  5784. // this.checkVisible = true
  5785. // }
  5786. }, getTime(val, temp) {
  5787. if (val != 0) {
  5788. return uParseTime(val, temp)
  5789. } else {
  5790. return ''
  5791. }
  5792. }, getGoodUnit(id) {
  5793. var goodUnit = this.$store.getters.good_unit
  5794. for (let i = 0; i < goodUnit.length; i++) {
  5795. if (goodUnit[i].id == id) {
  5796. return goodUnit[i].name
  5797. }
  5798. }
  5799. }, changeDay() {
  5800. this.current_tab = 'day'
  5801. }, changeMonth(val) {
  5802. console.log('33333333')
  5803. this.current_tab = 'month'
  5804. var nowDate = new Date()
  5805. var nowYear = nowDate.getFullYear()
  5806. var nowMonth = nowDate.getMonth() + 1
  5807. var nowDay = nowDate.getDate()
  5808. var hours = nowDate.getHours()
  5809. var min = nowDate.getMinutes()
  5810. var nowTime =
  5811. nowYear +
  5812. '-' +
  5813. (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
  5814. '-' +
  5815. (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (hours < 10 ? '0' + hours : hours) +
  5816. ':' + (min < 10 ? '0' + min : min)
  5817. let params = {
  5818. 'record_date': this.record_date,
  5819. 'patient_id': val.id,
  5820. 'his_patient_id': val.his_patient_id,
  5821. 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
  5822. 'end_time': moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
  5823. 'p_type': 2
  5824. }
  5825. this.isloading = true
  5826. getMonthHisPateintInfo(params).then(response => {
  5827. if (response.data.state == 0) {
  5828. this.$message.error(response.data.msg)
  5829. this.isloading = false
  5830. return false
  5831. } else {
  5832. this.patientid = val.id
  5833. this.isloading = false
  5834. this.prescriptions = []
  5835. this.month_prescriptions = []
  5836. this.patientInfo = response.data.data.xt_info
  5837. this.hisPatientInfo = response.data.data.his_info
  5838. this.case_history = response.data.data.case_history
  5839. if (this.case_history.primary_disease == '') {
  5840. this.case_history.primary_disease = ''
  5841. } else {
  5842. this.case_history.primary_disease = this.case_history.primary_disease
  5843. }
  5844. if (this.case_history.confirm_failure_date <= 0) {
  5845. this.case_history.confirm_failure_date = ''
  5846. } else {
  5847. this.case_history.confirm_failure_date = uParseTime(this.case_history.confirm_failure_date, '{y}-{m}-{d}')
  5848. }
  5849. if (this.case_history.drug_allergy_history == '') {
  5850. this.case_history.drug_allergy_history = ''
  5851. } else {
  5852. this.case_history.drug_allergy_history = this.case_history.drug_allergy_history
  5853. }
  5854. if (this.case_history.physical_examination == '') {
  5855. this.case_history.physical_examination = ''
  5856. } else {
  5857. this.case_history.physical_examination = this.case_history.physical_examination
  5858. }
  5859. if (this.case_history.special_inspection == '') {
  5860. this.case_history.special_inspection = ''
  5861. } else {
  5862. this.case_history.special_inspection = this.case_history.special_inspection
  5863. }
  5864. if (this.case_history.lab_apparatus == '') {
  5865. this.case_history.lab_apparatus = ''
  5866. } else {
  5867. this.case_history.lab_apparatus = this.case_history.lab_apparatus
  5868. }
  5869. this.info = response.data.data.info
  5870. this.last_info = response.data.data.last_info
  5871. this.schedule = response.data.data.schedule
  5872. this.doctors = response.data.data.doctors
  5873. this.department = response.data.data.department
  5874. for (let i = 0; i < this.doctors.length; i++) {
  5875. if (this.doctors[i].user_type == 1) {
  5876. this.doctors.splice(i, 1)
  5877. }
  5878. }
  5879. var month_prescriptions = response.data.data.month_prescriptions
  5880. this.setMonthPrescription(month_prescriptions)
  5881. this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
  5882. if (this.case_history.temperature <= 0) {
  5883. this.case_history.temperature = ''
  5884. }
  5885. if (this.case_history.blood_sugar <= 0) {
  5886. this.case_history.blood_sugar = ''
  5887. }
  5888. if (this.case_history.pulse <= 0) {
  5889. this.case_history.pulse = ''
  5890. }
  5891. if (this.case_history.sbp <= 0) {
  5892. this.case_history.sbp = ''
  5893. }
  5894. if (this.case_history.dbp <= 0) {
  5895. this.case_history.dbp = ''
  5896. }
  5897. if (this.case_history.height <= 0) {
  5898. this.case_history.height = ''
  5899. }
  5900. if (this.case_history.blood_fat <= 0) {
  5901. this.case_history.blood_fat = ''
  5902. }
  5903. if (this.case_history.sick_type <= 0) {
  5904. this.case_history.sick_type = ''
  5905. }
  5906. if (this.case_history.sick <= 0) {
  5907. this.case_history.sick = ''
  5908. }
  5909. if (this.case_history.diagnose <= 0) {
  5910. this.case_history.diagnose = ''
  5911. }
  5912. this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
  5913. if (this.case_history.is_infect == 1) {
  5914. this.case_history.is_infect = true
  5915. } else {
  5916. this.case_history.is_infect = false
  5917. }
  5918. this.$refs.prescriptions.setMonthData(this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info)
  5919. }
  5920. })
  5921. },
  5922. getInitDataOne(val) {
  5923. this.prescriptions = val
  5924. },
  5925. printOrderOne() {
  5926. this.getInitPrintData()
  5927. },
  5928. getInitPrintData() {
  5929. const loading = this.$loading({
  5930. lock: true,
  5931. text: 'Loading',
  5932. spinner: 'el-icon-loading',
  5933. background: 'rgba(0, 0, 0, 0.7)'
  5934. })
  5935. var params = {
  5936. patient_id: this.patientInfo.id,
  5937. record_date: this.record_date
  5938. }
  5939. console.log('param2332323233232222wode', params)
  5940. getInitPrintDataOne(params).then(response => {
  5941. if (response.data.state == 1) {
  5942. var list = response.data.data.list
  5943. var assessmentAfterDislysis = response.data.data.assessmentAfterDislysis
  5944. console.log('list2332322332', list)
  5945. this.printList = list
  5946. this.assessmentAfterDislysis = assessmentAfterDislysis
  5947. this.startVisibility = true
  5948. loading.close()
  5949. }
  5950. })
  5951. },
  5952. printAction: function() {
  5953. const style = '@media print {.signPrint{margin-left:30px;} .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 20px; padding: 15px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 18px; padding: 10px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } .printCell span{display: inline-block;width: 180px;} @page {margin-top:10px;}}'
  5954. const style1 = '@page {margin-top:10px;} @media print{}'
  5955. printJS({
  5956. printable: 'print_content',
  5957. type: 'html',
  5958. documentTitle: '',
  5959. style: style1,
  5960. scanStyles: false
  5961. })
  5962. },
  5963. getNewAge(UUserCard) {
  5964. if (UUserCard != null && UUserCard != '') {
  5965. // 获取年龄
  5966. var myDate = new Date()
  5967. var month = myDate.getMonth() + 1
  5968. var day = myDate.getDate()
  5969. var age = myDate.getFullYear() - UUserCard.substring(6, 10) - 1
  5970. if (UUserCard.substring(10, 12) < month || UUserCard.substring(10, 12) == month && UUserCard.substring(12, 14) <= day) {
  5971. age++
  5972. }
  5973. return age
  5974. }
  5975. },
  5976. getModeName(id){
  5977. var name = ""
  5978. if(id == 1){
  5979. name = "HD"
  5980. }
  5981. if(id == 2){
  5982. name = "HDF"
  5983. }
  5984. if(id == 3){
  5985. name = "HD+HP"
  5986. }
  5987. if(id == 4){
  5988. name = "HP"
  5989. }
  5990. if(id == 5){
  5991. name = "HF"
  5992. }
  5993. if(id == 6){
  5994. name = "SCUF"
  5995. }
  5996. if(id == 7){
  5997. name = "IUF"
  5998. }
  5999. if(id == 8){
  6000. name = "HFHD"
  6001. }
  6002. if(id == 9){
  6003. name = "HFHD+HP"
  6004. }
  6005. if(id == 10){
  6006. name = "PHF"
  6007. }
  6008. if(id == 11){
  6009. name = "HFR"
  6010. }
  6011. if(id == 12){
  6012. name = "HDF+HP"
  6013. }
  6014. if(id == 13){
  6015. name = "CRRT"
  6016. }
  6017. if(id == 14){
  6018. name = "腹水回输"
  6019. }
  6020. if(id == 19){
  6021. name = "IUF+HD"
  6022. }
  6023. if(id == 20){
  6024. name = "UF"
  6025. }
  6026. if(id == 21){
  6027. name = "HD+"
  6028. }
  6029. if(id == 22){
  6030. name = "血浆胆红素吸附+HDF"
  6031. }
  6032. if(id == 23){
  6033. name = "血浆胆红素吸附"
  6034. }
  6035. if(id == 24){
  6036. name = "I-HDF"
  6037. }
  6038. if(id == 25){
  6039. name = "HD高通"
  6040. }
  6041. if(id == 26){
  6042. name = "CVVH"
  6043. }
  6044. if(id == 27){
  6045. name = "CVVHD"
  6046. }
  6047. if(id == 28){
  6048. name = "CVVHDF"
  6049. }
  6050. if(id == 29){
  6051. name = "PE"
  6052. }
  6053. if(id == 30){
  6054. name = "血浆胆红素吸附+HP"
  6055. }
  6056. if(id == 31){
  6057. name = "HPD"
  6058. }
  6059. if(id == 32){
  6060. name = "HDP"
  6061. }
  6062. return name
  6063. },
  6064. },
  6065. created() {
  6066. this.displaceLiquiPartOptions = this.$store.getters.displace_liqui;
  6067. this.anticoagulants_confit = this.$store.getters.anticoagulants_confit
  6068. this.printDate = moment().format('YYYY-MM-DD HH:mm:ss')
  6069. this.$nextTick(() => {
  6070. })
  6071. this.org_id = this.$store.getters.xt_user.template_info.org_id
  6072. this.getInitData()
  6073. var nowDate = new Date()
  6074. var nowYear = nowDate.getFullYear()
  6075. var nowMonth = nowDate.getMonth() + 1
  6076. var nowDay = nowDate.getDate()
  6077. this.record_date =
  6078. nowYear +
  6079. '-' +
  6080. (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
  6081. '-' +
  6082. (nowDay < 10 ? '0' + nowDay : nowDay)
  6083. this.getList()
  6084. // this.diagnoses = this.getDictionaryDataConfig('system', 'diagnose')
  6085. // this.other_sick = this.getDictionaryDataConfig('system', 'other_sick_history')
  6086. let tableHeight = document.body.clientHeight - 263
  6087. this.tableHeight = tableHeight
  6088. },
  6089. mounted() {
  6090. const that = this
  6091. window.onresize = () => {
  6092. return (() => {
  6093. window.fullHeight = document.documentElement.clientHeight
  6094. that.fullHeight = window.fullHeight
  6095. })()
  6096. }
  6097. },
  6098. watch: {
  6099. fullHeight(val) {
  6100. if (!this.timer) {
  6101. this.fullHeight = val
  6102. let tableHeight = val - 263
  6103. this.tableHeight = tableHeight
  6104. this.timer = true
  6105. let that = this
  6106. setTimeout(function() {
  6107. that.timer = false
  6108. }, 400)
  6109. }
  6110. },
  6111. patientid: function(val) {
  6112. console.log('val22332323', val)
  6113. }
  6114. }
  6115. }
  6116. </script>
  6117. <style lang="scss" scoped>
  6118. .new-main-contain {
  6119. height: 100%;
  6120. display: flex;
  6121. flex-direction: column;
  6122. }
  6123. .app-container {
  6124. height: 100%;
  6125. }
  6126. .mainCell {
  6127. height: 36px;
  6128. display: flex;
  6129. align-items: center;
  6130. }
  6131. .mainLeft {
  6132. width: 200px;
  6133. height: 100%;
  6134. display: flex;
  6135. flex-direction: column;
  6136. .el-radio {
  6137. margin-right: 5px;
  6138. }
  6139. }
  6140. .mainRight {
  6141. margin-left: 10px;
  6142. flex: 1;
  6143. height: 100%;
  6144. display: flex;
  6145. flex-direction: column;
  6146. overflow-y: auto;
  6147. .cellSpan {
  6148. min-width: 80px;
  6149. display: inline-block;
  6150. margin-right: 10px;
  6151. }
  6152. }
  6153. .mainCenter {
  6154. display: flex;
  6155. flex: 1;
  6156. }
  6157. .centerLeft {
  6158. flex: 1;
  6159. display: flex;
  6160. flex-direction: column;
  6161. position: relative;
  6162. .el-form-item {
  6163. width: 32%;
  6164. margin-right: 1%;
  6165. float: left;
  6166. }
  6167. .el-form-item__label {
  6168. text-align: left;
  6169. }
  6170. }
  6171. .backColor {
  6172. background: #f6f8f9;
  6173. height: 5px;
  6174. margin-bottom: 5px;
  6175. }
  6176. .tabsBox {
  6177. position: relative;
  6178. height: 76%;
  6179. overflow-y: auto;
  6180. margin-bottom: 60px;
  6181. .el-tabs__item {
  6182. padding: 0 10px;
  6183. }
  6184. }
  6185. .preTabs {
  6186. height: 100%;
  6187. display: flex;
  6188. flex-direction: column;
  6189. .el-tabs__content {
  6190. flex: 1;
  6191. overflow-y: auto;
  6192. }
  6193. }
  6194. .costBox {
  6195. width: 100%;
  6196. height: 60px;
  6197. background: #fff;
  6198. position: absolute;
  6199. bottom: 0;
  6200. display: flex;
  6201. align-items: center;
  6202. }
  6203. .addTab {
  6204. position: absolute;
  6205. right: 0;
  6206. top: 14px;
  6207. z-index: 20;
  6208. }
  6209. .centerRight {
  6210. width: 300px;
  6211. margin-left: 10px;
  6212. display: flex;
  6213. flex-direction: column;
  6214. position: relative;
  6215. }
  6216. .rightTab {
  6217. height: 40px;
  6218. width: 100%;
  6219. border: 1px solid #d2d2d2;
  6220. box-sizing: border-box;
  6221. p {
  6222. width: 50%;
  6223. height: 40px;
  6224. line-height: 40px;
  6225. text-align: center;
  6226. background: #eee;
  6227. float: left;
  6228. }
  6229. > p:last-child {
  6230. border-left: 1px solid #d2d2d2;
  6231. float: right;
  6232. }
  6233. .activeP {
  6234. background: #409EFF;
  6235. color: #fff;
  6236. }
  6237. }
  6238. .comfirmBox {
  6239. width: 100%;
  6240. height: 60px;
  6241. background: #fff;
  6242. position: absolute;
  6243. bottom: 0;
  6244. display: flex;
  6245. align-items: center;
  6246. justify-content: space-between;
  6247. }
  6248. .mainHeader {
  6249. width: 100%;
  6250. background: #fff;
  6251. position: fixed;
  6252. z-index: 100;
  6253. height: 36px;
  6254. }
  6255. .titleBox {
  6256. position: fixed;
  6257. z-index: 99;
  6258. background: #fff;
  6259. }
  6260. .fixedCell {
  6261. position: fixed;
  6262. z-index: 99;
  6263. right: 30px;
  6264. background: #fff;
  6265. width: 300px;
  6266. display: flex;
  6267. justify-content: space-between;
  6268. }
  6269. .fixedCellOne {
  6270. position: fixed;
  6271. z-index: 99;
  6272. right: -180px;
  6273. background: #fff;
  6274. width: 300px;
  6275. display: flex;
  6276. justify-content: space-between;
  6277. }
  6278. .futou{
  6279. display: inline-block;
  6280. width: 20px;
  6281. height: 20px;
  6282. border-radius: 50px;
  6283. background: #38d7d7;
  6284. color: white;
  6285. text-align: center;
  6286. position: absolute;
  6287. right: 5px;
  6288. }
  6289. </style>
  6290. <style lang="scss">
  6291. .centerLeft {
  6292. .el-form-item__label {
  6293. text-align: left;
  6294. }
  6295. }
  6296. .tabsBox {
  6297. .el-tabs__item {
  6298. padding: 0 10px;
  6299. }
  6300. .el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2) {
  6301. padding: 0 10px;
  6302. }
  6303. .el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:last-child {
  6304. padding: 0 10px;
  6305. }
  6306. .el-tabs--card > .el-tabs__header .el-tabs__item.is-active.is-closable {
  6307. padding: 0 10px;
  6308. }
  6309. }
  6310. .centerRight {
  6311. .el-tabs__nav-scroll {
  6312. display: flex;
  6313. }
  6314. .el-tabs__nav {
  6315. margin: 0 auto;
  6316. }
  6317. .el-table th .cell, .el-table td .cell {
  6318. padding: 0 2px;
  6319. }
  6320. }
  6321. .preTabs {
  6322. .el-tabs__content {
  6323. }
  6324. }
  6325. .rightTabs {
  6326. height: 100%;
  6327. .el-tabs__content {
  6328. }
  6329. }
  6330. .centerDialog {
  6331. .el-dialog__body {
  6332. max-height: calc(100vh - 100px) !important;
  6333. padding: 0 20px;
  6334. }
  6335. }
  6336. </style>