doctorDesk.vue 290KB

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