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

editTableData.vue 189KB

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