| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597 |
- <template>
- <div>
- <div class="table-header flex-vertical-between">
- <div class="table-label flex-vertical-center-l">
- <div class="label-item flex-center" v-for="(item,index) in recipe_tabs" :key="'a'+index">
- <span
- :class="recipe_tabs_c==index?'l_active':''"
- @click="recipeChange(index)"
- >{{item.name}}</span>
- <div
- @click="recipeDelete(index)"
- v-show="!recipe_tabs[index].isPay && recipe_tabs[index].paystate==0"
- >X</div>
- <img
- src="../assets/new-icon/isPay.png"
- v-show="recipe_tabs[index].isPay || recipe_tabs[index].paystate==1"
- />
- </div>
- <!-- <el-button size="mini" type="warning" icon="el-icon-plus" @click="addRecipeTba()"></el-button> -->
- </div>
- <div class="flex flex-col-center flex-row-r">
- <!-- <div class="add-presc flex-center" @click="addRecipeTba()">新增处方</div> -->
- <!-- <el-popover placement="left" width="300" trigger="click">
- <el-button size="mini" type="warning" slot="reference">兼证加减</el-button>
- <template>
- <accompanied></accompanied>
- </template>
- </el-popover>-->
- <el-button size="mini" type="warning" @click="addRecipeTba()" style="margin-left:10px;">新增处方</el-button>
- <el-button size="mini" type="primary" @click="openSafeDrug" v-if="isShrink">安全合理用药检测</el-button>
- <!-- <div class="add-presc flex-center" @click="clearRecipe()">清空处方</div> -->
- <el-button size="mini" type="warning" @click="clearRecipe();$emit('clear')">清空处方</el-button>
- </div>
- </div>
- <div class="table-container">
- <div class="t-con-header flex-vertical-between">
- <div class="t-con-radio flex-vertical-center-l" v-if="false">
- <span class="t-radio-title">选择药房:</span>
- <div class="t-radio-group">
- <el-select
- v-model="recipe_tabs[recipe_tabs_c].pharmacyID"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- placeholder="请选择"
- @change="changePharmacy(recipe_tabs[recipe_tabs_c].lastType)"
- >
- <el-option
- :label="item.pharmacyName"
- :value="item.pid"
- v-for="(item,index) in pharmacyList"
- :key="'b'+index"
- ></el-option>
- </el-select>
- </div>
- </div>
- <!-- @change="getPharmacyID" -->
- <!-- @change="changePharmacy(recipe_tabs[recipe_tabs_c].lastType)" -->
- <div class="t-con-radio flex-vertical-center-l" v-if="false">
- <div class="t-radio-group">
- <el-radio-group
- v-model="recipe_tabs[recipe_tabs_c].radio"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- >
- <el-radio
- :label="item.ptype"
- v-for="(item,index) in pharmacyTypes"
- :key="index"
- @click.native.prevent="changePharmacy(recipe_tabs[recipe_tabs_c].lastType,item.ptype)"
- >
- <span>{{item.name}}</span>
- </el-radio>
- </el-radio-group>
- </div>
- </div>
- <div class="t-con-radio flex-vertical-center-l" style="flex-wrap: wrap;align-items: center;">
- <div class="t-radio-group2" :class="{multiple: group.options.length > 1}" v-for="group in pharmacyTypeGroup" :key="group.name">
- <label v-if="group.options.length > 1">{{group.name}}</label>
- <el-radio v-for="item in group.options" :key="item.ptype"
- v-model="recipe_tabs[recipe_tabs_c].radio"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- :label="item.ptype"
- @click.native.prevent="recipe_tabs[recipe_tabs_c].disable || changePharmacy(recipe_tabs[recipe_tabs_c].lastType,item.ptype)"
- >{{item.name}}</el-radio>
- </div>
- </div>
- <!-- <div class="add-presc1 flex-center" @click="clearRecipe()">清空处方</div> -->
- </div>
- <div class="table-bottom" v-if="false">
- <div class="header-about flex-vertical-center-l flex-wrap" v-if="container_i!=2">
- <div class="item flex-vertical-center-l">
- <!-- <span>配送:</span>
- <div class="div3">
- <el-radio-group v-model="recipe_tabs[recipe_tabs_c].bottom_form.radio"
- @change="getaddress">
- <el-radio label="0">是</el-radio>
- <el-radio label="1">否</el-radio>
- </el-radio-group>
- </div>-->
- <!-- <div>
- <el-checkbox @change="changeDaijian" v-model="recipe_tabs[recipe_tabs_c].bottom_form.isDaiJian">代煎
- </el-checkbox>
- </div>-->
- <div class="daijiao-check flex flex-row-left flex-col-center" @click="changeDaijian">
- <div
- :class="['img-body',recipe_tabs[recipe_tabs_c].bottom_form.isDaiJian==1?'active':'']"
- >
- <img
- src="~@/assets/new-icon/checked.png"
- alt
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.isDaiJian==1"
- />
- </div>
- <span>代煎</span>
- </div>
- <!-- <el-checkbox @change="changePeiSong" :checked="recipe_tabs[recipe_tabs_c].bottom_form.radio==0">配送
- </el-checkbox>-->
- <div class="daijiao-check flex flex-row-left flex-col-center" @click="changePeiSong">
- <div
- :class="['img-body',recipe_tabs[recipe_tabs_c].bottom_form.radio==0?'active':'']"
- >
- <img
- src="~@/assets/new-icon/checked.png"
- alt
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.radio==0"
- />
- </div>
- <span>配送</span>
- </div>
- </div>
- <div
- class="item flex-vertical-center-l"
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.radio==0"
- >
- <span>收货人:</span>
- <div class="div3">
- <el-input
- size="mini"
- placeholder="请输入"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.savename"
- ></el-input>
- </div>
- </div>
- <div
- class="item flex-vertical-center-l"
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.radio==0"
- >
- <span>电话:</span>
- <div class="div5">
- <el-input
- size="mini"
- placeholder="请输入"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.phone"
- ></el-input>
- </div>
- </div>
- <div
- class="item flex-vertical-center-l flex-wrap"
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.radio==0"
- >
- <span>地址:</span>
- <div class="city1 city">
- <el-select
- size="mini"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.province"
- placeholder="选择省"
- @change="proC($event)"
- >
- <el-option
- :label="item.name"
- :value="item.code"
- v-for="(item,index) in recipe_tabs[recipe_tabs_c].bottom_form.provinceList"
- :key="'m'+index"
- ></el-option>
- </el-select>
- </div>
- <div class="city1 city">
- <el-select
- size="mini"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.city"
- placeholder="选择市"
- @change="cityC($event)"
- >
- <el-option
- :label="item.name"
- :value="item.code"
- v-for="(item,index) in recipe_tabs[recipe_tabs_c].bottom_form.cityList"
- :key="'n'+index"
- ></el-option>
- </el-select>
- </div>
- <div class="city1 city">
- <el-select
- size="mini"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.area"
- placeholder="选择区"
- >
- <el-option
- :label="item.name"
- :value="item.code"
- v-for="(item,index) in recipe_tabs[recipe_tabs_c].bottom_form.areaList"
- :key="'o'+index"
- ></el-option>
- </el-select>
- </div>
- <!-- div4 -->
- <div class="city1 city">
- <el-input
- size="mini"
- placeholder="请输入详细地址"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.address"
- ></el-input>
- </div>
- </div>
- <div
- class="right flex-center"
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.radio ==0"
- @click="getAddressForHospital"
- >寄到本院</div>
- <!-- 数据会更新到这个组件里面 -->
- </div>
- </div>
- <div class="table-msg">
- <!-- 表格 -->
- <div class="table-show flex-plane-t-between flex-wrap">
- <!-- 表一和表二 -->
- <div class="table-left-body" :style="{zIndex: Math.max(0, index % 2 + 1)}">
- <div class="table-left" v-if="true">
- <el-table
- :data="recipe_tabs[recipe_tabs_c].tableData"
- style="width:100%;"
- :span-method="arraySpanMethod1"
- id="table1"
- >
- <el-table-column prop="id" label width="20">
- <template slot-scope="scope">
- <!-- width:110px -->
- <!-- v-model="scope.row.key" -->
- <div v-if="!scope.row.name" class="flex-vertical-between">
- <div style="width:80px;" class="operate2" id="operate2">
- <el-input
- :value="scope.row.key"
- :id="'searchD'+scope.row.id"
- size="mini"
- placeholder="请输入..."
- @input="searchDrug($event,scope)"
- @focus="drugFocus(scope)"
- @blur="drugBlur($event,scope)"
- @keydown.down.native="drugDown($event,scope)"
- @keydown.up.native="drugUp($event,scope)"
- @keydown.enter.native="drugEnter(scope)"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- ></el-input>
- <div class="table-choose3" v-if="index === scope.row.id - 1">
- <div class="table-choose-h flex-vertical-between">
- <div class="flex-center">药品名称</div>
- <div class="flex-center">规格</div>
- <div class="flex-center">产地</div>
- <div class="flex-center">单价</div>
- <div class="flex-center">库存</div>
- </div>
- <div
- class="t-c-b infinite-list"
- v-infinite-scroll="load"
- :infinite-scroll-immediate="false"
- :id="'infiniteList'+scope.row.id"
- :ref="'infiniteList'+scope.row.id"
- style="overflow:auto"
- >
- <div
- class="infinite-list-item flex-vertical-between"
- :style="scope.row.search_i===index1?'background: #EDF3FE;':''"
- @click="chooseDis1(scope,index1,item1)"
- v-for="(item1,index1) in scope.row.drugList"
- :key="scope.row.id+'f'+index1"
- >
- <p class="flex-center">{{item1.ypmc}}</p>
- <p class="flex-center">{{item1.gg}}</p>
- <p class="flex-center">{{item1.cdmc}}</p>
- <p class="flex-center">{{item1.price}}</p>
- <p class="flex-center">{{item1.kc}}</p>
- </div>
- </div>
- </div>
- </div>
- <!-- <div class="operate1"
- v-if="scope.row.id!==recipe_tabs[recipe_tabs_c].totalTableD.length && !scope.row.name">
- <img src="../assets/delete1.png" alt="" @click="deleteDis1(scope)" />
- </div>-->
- </div>
- <!-- -->
- <div v-else>{{scope.row.id}}</div>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="药品名称" width="80">
- <template slot-scope="scope" v-if="scope.row.name">
- <div
- @click="clickName(scope)"
- v-if="index !== scope.row.id - 1"
- :style="{'color':scope.row.color?scope.row.color:''}"
- >{{scope.row.name}}</div>
- <div v-else class="flex-vertical-between">
- <div style="width:110px;">
- <el-input
- :value="scope.row.key"
- :id="'searchD'+scope.row.id"
- size="mini"
- :placeholder="scope.row.name"
- @input="searchDrug($event,scope)"
- @blur="drugBlur1($event,scope)"
- @keydown.down.native="drugDown($event,scope)"
- @keydown.up.native="drugUp($event,scope)"
- @keydown.enter.native="drugEnter(scope)"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- ></el-input>
- <!-- v-model="scope.row.key" -->
- <div class="table-choose3">
- <div class="table-choose-h flex-vertical-between">
- <div class="flex-center">药品名称</div>
- <div class="flex-center">规格</div>
- <div class="flex-center">产地</div>
- <div class="flex-center">单价</div>
- <div class="flex-center">库存</div>
- </div>
- <!-- -->
- <div
- class="t-c-b infinite-list"
- v-infinite-scroll="load"
- :infinite-scroll-immediate="false"
- :id="'infiniteList'+scope.row.id"
- :ref="'infiniteList'+scope.row.id"
- style="overflow:auto"
- v-if="scope.row.drugList.length>0"
- >
- <div
- class="infinite-list-item flex-vertical-between"
- :style="scope.row.search_i===index1?'background: #EDF3FE;':''"
- @click="chooseDis1(scope,index1,item1)"
- v-for="(item1,index1) in scope.row.drugList"
- :key="scope.row.id+'g'+index1"
- >
- <p class="flex-center">{{item1.ypmc}}</p>
- <p class="flex-center">{{item1.gg}}</p>
- <p class="flex-center">{{item1.cdmc}}</p>
- <p class="flex-center">{{item1.price}}</p>
- <p class="flex-center">{{item1.kc}}</p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="spec" label="规格" width="100"></el-table-column>
- <el-table-column prop="dose" label="剂量" width="60">
- <template slot-scope="scope" v-if="scope.row.name">
- <div class="t_dose">
- <el-input
- :value="scope.row.dose==0?'':scope.row.dose"
- size="mini"
- @blur="doseBlur(scope)"
- @focus="doseFocus(scope)"
- @input="countDoseMoney($event,scope)"
- :id="'dose'+scope.row.id"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- :placeholder="scope.row.oldDose?'原'+scope.row.oldDose+'克':''"
- @keydown.enter.native="doseEnter(scope)"
- ></el-input>
- <div
- class="dose-section"
- :style="{top:scope.$index==0?'':((scope.$index)*35)+'px'}"
- v-if="minDose && maxDose && doseId == scope.row.medid"
- >
- <span>{{minDose}}</span>~
- <span>{{maxDose}}</span>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="unit" label="单位" width="40"></el-table-column>
- <!-- <el-table-column prop="inventory" label="库存" width="80">
- </el-table-column>-->
- <!-- width="80" -->
- <el-table-column prop="usage" label="用法">
- <template slot-scope="scope" v-if="scope.row.name">
- <el-select
- v-model="scope.row.usage"
- placeholder="请选择"
- size="mini"
- @change="usageC($event,scope)"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- >
- <el-option
- :label="item.value"
- :value="item.key"
- v-for="(item,index) in usageList"
- :key="scope.row.id+'h'+index"
- ></el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column prop="price" label="单价" width="50"></el-table-column>
- <el-table-column prop="total" label="小计" width="50">
- <template slot-scope="scope" v-if="scope.row.name">
- <div>{{scope.row.total | formatTotal}}</div>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="64">
- <template slot-scope="scope">
- <div class="operate" v-if="scope.row.name">
- <div>
- <img
- src="../assets/add.png"
- alt
- @click="addDis1(scope)"
- v-if="!recipe_tabs[recipe_tabs_c].disable"
- />
- </div>
- <div>
- <img
- src="../assets/delete1.png"
- alt
- @click="deleteDis1(scope)"
- v-if="!recipe_tabs[recipe_tabs_c].disable"
- />
- </div>
- <div>
- <img src="../assets/find.png" alt @click="findDrug(scope)" />
- </div>
- </div>
- <div
- class="operate"
- v-else-if="scope.row.id==recipe_tabs[recipe_tabs_c].totalTableD.length && !scope.row.name"
- >
- <div style="opacity:0;">
- <img src="../assets/find.png" alt />
- </div>
- </div>
- <div v-else class="operate">
- <div v-if="scope.row.id!==recipe_tabs[recipe_tabs_c].totalTableD.length">
- <img
- src="../assets/delete1.png"
- alt
- @click="deleteDis1(scope)"
- v-if="!recipe_tabs[recipe_tabs_c].disable"
- />
- </div>
- </div>
- </template>
- </el-table-column>
- <div slot="empty"></div>
- </el-table>
- </div>
- </div>
- <div class="table-left-body" :style="{zIndex: Math.max(0, index % 2)}">
- <div class="table-left" v-if="true">
- <el-table
- :data="recipe_tabs[recipe_tabs_c].tableData1"
- :span-method="arraySpanMethod1"
- id="table1"
- >
- <el-table-column prop="id" label width="20">
- <template slot-scope="scope">
- <!-- width:110px -->
- <!-- v-model="scope.row.key" -->
- <div v-if="!scope.row.name" class="flex-vertical-between">
- <div style="width:80px;" class="operate2" id="operate2">
- <el-input
- :value="scope.row.key"
- :id="'searchD'+scope.row.id"
- size="mini"
- placeholder="请输入..."
- @input="searchDrug($event,scope)"
- @focus="drugFocus(scope)"
- @blur="drugBlur($event,scope)"
- @keydown.down.native="drugDown($event,scope)"
- @keydown.up.native="drugUp($event,scope)"
- @keydown.enter.native="drugEnter(scope)"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- ></el-input>
- <div class="table-choose3" v-if="index === scope.row.id - 1">
- <div class="table-choose-h flex-vertical-between">
- <div class="flex-center">药品名称</div>
- <div class="flex-center">规格</div>
- <div class="flex-center">产地</div>
- <div class="flex-center">单价</div>
- <div class="flex-center">库存</div>
- </div>
- <div
- class="t-c-b infinite-list"
- v-infinite-scroll="load"
- :infinite-scroll-immediate="false"
- :id="'infiniteList'+scope.row.id"
- :ref="'infiniteList'+scope.row.id"
- style="overflow:auto"
- >
- <div
- class="infinite-list-item flex-vertical-between"
- :style="scope.row.search_i===index1?'background: #EDF3FE;':''"
- @click="chooseDis1(scope,index1,item1)"
- v-for="(item1,index1) in scope.row.drugList"
- :key="scope.row.id+'f'+index1"
- >
- <p class="flex-center">{{item1.ypmc}}</p>
- <p class="flex-center">{{item1.gg}}</p>
- <p class="flex-center">{{item1.cdmc}}</p>
- <p class="flex-center">{{item1.price}}</p>
- <p class="flex-center">{{item1.kc}}</p>
- </div>
- </div>
- </div>
- </div>
- <!-- <div class="operate1"
- v-if="scope.row.id!==recipe_tabs[recipe_tabs_c].totalTableD.length && !scope.row.name">
- <img src="../assets/delete1.png" alt="" @click="deleteDis1(scope)" />
- </div>-->
- </div>
- <!-- -->
- <div v-else>{{scope.row.id}}</div>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="药品名称" width="80">
- <template slot-scope="scope" v-if="scope.row.name">
- <div
- @click="clickName(scope)"
- v-if="index !== scope.row.id - 1"
- :style="{'color':scope.row.color?scope.row.color:''}"
- >{{scope.row.name}}</div>
- <div v-else class="flex-vertical-between">
- <div style="width:110px;">
- <el-input
- :value="scope.row.key"
- :id="'searchD'+scope.row.id"
- size="mini"
- :placeholder="scope.row.name"
- @input="searchDrug($event,scope)"
- @blur="drugBlur1($event,scope)"
- @keydown.down.native="drugDown($event,scope)"
- @keydown.up.native="drugUp($event,scope)"
- @keydown.enter.native="drugEnter(scope)"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- ></el-input>
- <!-- v-model="scope.row.key" -->
- <div class="table-choose3">
- <div class="table-choose-h flex-vertical-between">
- <div class="flex-center">药品名称</div>
- <div class="flex-center">规格</div>
- <div class="flex-center">产地</div>
- <div class="flex-center">单价</div>
- <div class="flex-center">库存</div>
- </div>
- <!-- -->
- <div
- class="t-c-b infinite-list"
- v-infinite-scroll="load"
- :infinite-scroll-immediate="false"
- :id="'infiniteList'+scope.row.id"
- :ref="'infiniteList'+scope.row.id"
- style="overflow:auto"
- v-if="scope.row.drugList.length>0"
- >
- <div
- class="infinite-list-item flex-vertical-between"
- :style="scope.row.search_i===index1?'background: #EDF3FE':''"
- @click="chooseDis1(scope,index1,item1)"
- v-for="(item1,index1) in scope.row.drugList"
- :key="scope.row.id+'g'+index1"
- >
- <p class="flex-center">{{item1.ypmc}}</p>
- <p class="flex-center">{{item1.gg}}</p>
- <p class="flex-center">{{item1.cdmc}}</p>
- <p class="flex-center">{{item1.price}}</p>
- <p class="flex-center">{{item1.kc}}</p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- </el-table-column>
- <!-- fixed="left" -->
- <el-table-column prop="spec" label="规格" width="100"></el-table-column>
- <el-table-column prop="dose" label="剂量" width="60">
- <template slot-scope="scope" v-if="scope.row.name">
- <div class="t_dose">
- <el-input
- :value="scope.row.dose==0?'':scope.row.dose"
- size="mini"
- @blur="doseBlur(scope)"
- @focus="doseFocus(scope)"
- @input="countDoseMoney($event,scope)"
- :id="'dose'+scope.row.id"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- :placeholder="scope.row.oldDose?'原'+scope.row.oldDose+'克':''"
- @keydown.enter.native="doseEnter(scope)"
- ></el-input>
- <div
- class="dose-section"
- :style="{top:scope.$index==0?'':((scope.$index)*35)+'px'}"
- v-if="minDose && maxDose && doseId == scope.row.medid"
- >
- <span>{{minDose}}</span>~
- <span>{{maxDose}}</span>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="unit" label="单位" width="40"></el-table-column>
- <!-- <el-table-column prop="inventory" label="库存" width="80">
- </el-table-column>-->
- <el-table-column prop="usage" label="用法">
- <template slot-scope="scope" v-if="scope.row.name">
- <el-select
- v-model="scope.row.usage"
- placeholder="请选择"
- size="mini"
- @change="usageC($event,scope)"
- :disabled="recipe_tabs[recipe_tabs_c].disable"
- >
- <el-option
- :label="item.value"
- :value="item.key"
- v-for="(item,index) in usageList"
- :key="scope.row.id+'h'+index"
- ></el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column prop="price" label="单价" width="50"></el-table-column>
- <el-table-column prop="total" label="小计" width="50">
- <template slot-scope="scope" v-if="scope.row.name">
- <div>{{scope.row.total | formatTotal}}</div>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="64">
- <template slot-scope="scope">
- <div class="operate" v-if="scope.row.name">
- <div>
- <img
- src="../assets/add.png"
- alt
- @click="addDis1(scope)"
- v-if="!recipe_tabs[recipe_tabs_c].disable"
- />
- </div>
- <div>
- <img
- src="../assets/delete1.png"
- alt
- @click="deleteDis1(scope)"
- v-if="!recipe_tabs[recipe_tabs_c].disable"
- />
- </div>
- <div>
- <img src="../assets/find.png" alt @click="findDrug(scope)" />
- </div>
- </div>
- <div
- class="operate"
- v-else-if="scope.row.id==recipe_tabs[recipe_tabs_c].totalTableD.length && !scope.row.name"
- >
- <div style="opacity:0;">
- <img src="../assets/find.png" alt />
- </div>
- </div>
- <div v-else class="operate">
- <div v-if="scope.row.id!==recipe_tabs[recipe_tabs_c].totalTableD.length">
- <img
- src="../assets/delete1.png"
- alt
- @click="deleteDis1(scope)"
- v-if="!recipe_tabs[recipe_tabs_c].disable"
- />
- </div>
- </div>
- </template>
- </el-table-column>
- <div slot="empty"></div>
- </el-table>
- </div>
- </div>
- </div>
- <!-- 底部处方 -->
- <div class="table-bottom">
- <div class="table-b-header">
- <div class="flex-vertical-center-l header-about flex-wrap" v-if="container_i==0">
- <div class="item flex-vertical-center-l">
- <span>剂数:</span>
- <div class="div1">
- <el-input
- size="mini"
- placeholder="剂数"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.doseNum"
- @change="doseNumC()"
- ></el-input>
- </div>
- </div>
- <div class="item flex-vertical-center-l">
- <span>剂型:</span>
- <div class="div2">
- <!-- :disabled="recipe_tabs[recipe_tabs_c].disable" -->
- <el-select
- size="mini"
- @change="countNowRecipeMoney()"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.doseType"
- placeholder="请选择"
- >
- <el-option
- :label="item.value"
- :value="item.key"
- v-for="(item,index) in recipe_tabs[recipe_tabs_c].bottom_form.doseTypeList"
- :key="'i'+index"
- ></el-option>
- <!-- for 有问题 -->
- </el-select>
- </div>
- </div>
- <div class="item flex-vertical-center-l">
- <span>处方用法:</span>
- <div class="div2">
- <!-- :disabled="recipe_tabs[recipe_tabs_c].disable" -->
- <el-select
- size="mini"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.usege"
- placeholder="请选择"
- >
- <el-option
- :label="item.value"
- :value="item.key"
- v-for="(item,index) in recipe_tabs[recipe_tabs_c].bottom_form.usegeList"
- :key="'j'+index"
- ></el-option>
- </el-select>
- </div>
- </div>
- <div
- class="item flex-vertical-center-l"
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.doseType=='0'"
- >
- <span>浓煎每次:</span>
- <!--浓煎-->
- <div class="div2" style="width:70px;">
- <!-- :disabled="recipe_tabs[recipe_tabs_c].disable" -->
- <el-select
- size="mini"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.nongjian"
- placeholder="请选择"
- >
- <el-option label="50ml" value="50"></el-option>
- <el-option label="100ml" value="100"></el-option>
- <el-option label="150ml" value="150"></el-option>
- <el-option label="200ml" value="200"></el-option>
- <el-option label="250ml" value="250"></el-option>
- <el-option label="300ml" value="300"></el-option>
- <el-option label="400ml" value="400"></el-option>
- <el-option label="500ml" value="500"></el-option>
- <el-option label="1000ml" value="1000"></el-option>
- </el-select>
- </div>
- </div>
- <!-- <div class="item flex-vertical-center-l" v-if="recipe_tabs[recipe_tabs_c].bottom_form.doseType=='1'">
- <span>代煎:</span>
- <div class="div1" style="width:50px;">
- <el-input size="mini" placeholder="剂数" @blur="countNowRecipeMoney"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.daijian">
- <div slot="suffix" class="input-suffix">剂</div>
- </el-input>
- </div>
- </div>-->
- <div class="item flex-vertical-center-l">
- <span>频次:</span>
- <div class="div3" style="width:80px;">
- <!-- :disabled="recipe_tabs[recipe_tabs_c].disable" -->
- <el-select
- size="mini"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.num"
- placeholder="请选择"
- >
- <el-option
- :label="item.value"
- :value="item.key"
- v-for="(item,index) in recipe_tabs[recipe_tabs_c].bottom_form.numList"
- :key="'l'+index"
- ></el-option>
- </el-select>
- </div>
- </div>
- <div
- class="item flex-vertical-center-l"
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.usege=='0' || recipe_tabs[recipe_tabs_c].bottom_form.usege=='2' ||recipe_tabs[recipe_tabs_c].bottom_form.usege=='1'"
- >
- <!-- <span>服药时间:</span> -->
- <div class="div3">
- <!-- :disabled="recipe_tabs[recipe_tabs_c].disable" -->
- <el-select
- size="mini"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.time"
- placeholder="请选择"
- >
- <el-option
- :label="item.value"
- :value="item.key"
- v-for="(item,index) in recipe_tabs[recipe_tabs_c].bottom_form.timeList"
- :key="'k'+index"
- ></el-option>
- </el-select>
- </div>
- </div>
- </div>
- <div v-if="recipe_tabs[recipe_tabs_c].bottom_form.usege=='5'" class="header-about">
- <div class="item flex-vertical-center-l">
- <span>操作指南:</span>
- <div style="flex:1;">
- <el-input
- size="mini"
- placeholder="请输入"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.caozuo"
- ></el-input>
- </div>
- </div>
- </div>
- <div class="flex-vertical-center-l header-about flex-wrap" v-if="container_i==2">
- <div class="item flex-vertical-center-l">
- <span>类型:</span>
- <div class="div2">
- <el-select
- size="mini"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.doseType1"
- placeholder="请选择"
- >
- <el-option label="针刺" value="zc"></el-option>
- <el-option label="汤药" value="ty"></el-option>
- </el-select>
- </div>
- </div>
- <div class="item flex-vertical-center-l">
- <span>次数:</span>
- <div class="div1">
- <el-input
- size="mini"
- placeholder="请输入次数"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.doseNum1"
- ></el-input>
- </div>
- </div>
- </div>
- <div class="header-about">
- <div class="item flex-vertical-center-l">
- <span>嘱托:</span>
- <div style="flex:1;">
- <el-input
- size="mini"
- placeholder="请输入"
- v-model="recipe_tabs[recipe_tabs_c].bottom_form.zhutuo"
- ></el-input>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 留在这个页面 -->
- <div class="table-b-bottom flex-vertical-between">
- <div class="t-b-b-left flex-vertical-center-l flex-wrap">
- <div class="t-b-l-item">
- <!-- 单击金额 *数 -->
- 当前处方金额:
- <span>{{recipe_tabs[recipe_tabs_c].bottom_form.nowRecipeMoney1}}元</span>
- </div>
- <div class="t-b-l-item" v-if="container_i==0">
- 单剂金额:
- <span>{{recipe_tabs[recipe_tabs_c].bottom_form.nowRecipeMoney | formatTotal}}元</span>
- </div>
- <div
- class="t-b-l-item"
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.isDaiJian==1&&recipe_tabs[recipe_tabs_c].bottom_form.daijian && recipe_tabs[recipe_tabs_c]. bottom_form.doseType=='0'"
- >
- 代煎费:
- <span>{{recipe_tabs[recipe_tabs_c].bottom_form.moneyMsg.agencyPrice?recipe_tabs[recipe_tabs_c].bottom_form.moneyMsg.agencyPrice*Number(recipe_tabs[recipe_tabs_c].bottom_form.daijian):0}}元</span>
- </div>
- <div class="t-b-l-item" v-if="recipe_tabs[recipe_tabs_c].bottom_form.radio==0">
- 配送费:
- <span>{{recipe_tabs[recipe_tabs_c].bottom_form.moneyMsg.deliveryPrice}}元</span>
- </div>
- <div class="t-b-l-item" v-if="recipe_tabs[recipe_tabs_c].bottom_form.doseType=='1'">
- 制膏费:
- <span>{{recipe_tabs[recipe_tabs_c].bottom_form.moneyMsg.systemOfCreamPrice}}元</span>
- </div>
- <div
- class="t-b-l-item"
- v-if="recipe_tabs[recipe_tabs_c].bottom_form.doseType=='2' || recipe_tabs[recipe_tabs_c].bottom_form.doseType=='3'"
- >
- 特殊调配费:
- <span>{{recipe_tabs[recipe_tabs_c].bottom_form.moneyMsg.specialDeploymentPrice?recipe_tabs[recipe_tabs_c].bottom_form.moneyMsg.specialDeploymentPrice*Number(recipe_tabs[recipe_tabs_c].bottom_form.doseNum):0}}元</span>
- </div>
- <div class="t-b-l-item">
- 合计费用:
- <span>{{recipe_tabs[recipe_tabs_c].bottom_form.allMoney}}元</span>
- <!-- 合计费用:<span>{{totalAllMoney.toFixed(4)}}元</span> -->
- </div>
- </div>
- <div class="t-b-b-right flex-vertical-center-r">
- <!-- $router.push({path:'/index/accordedit'}) -->
- <!-- <div class="flex-center" v-if="!recipe_tabs[recipe_tabs_c].bottom_form.disable" @click="saveToMine">
- 存为我的协定方
- </div>-->
- <!-- <div class="flex-center bg-green" v-if="showSubmit" @click="submit()">提交处方</div> -->
- <el-button
- type="warning"
- size="mini"
- v-if="!recipe_tabs[recipe_tabs_c].bottom_form.disable"
- @click="saveToMine"
- >存为我的协定方</el-button>
- <!-- showSubmit -->
- <!-- <template v-if="isAutoCheck==0">
- <el-button
- type="primary"
- size="mini"
- v-if="recipe_tabs[recipe_tabs_c].prescribed==0 || !recipe_tabs[recipe_tabs_c].prescribed"
- @click="submit"
- >保存处方</el-button>
- </template>-->
- <!-- v-if="isAutoCheck==1" -->
- <template>
- <el-button
- type="primary"
- size="mini"
- v-if="recipe_tabs[recipe_tabs_c].paystate==0 || !recipe_tabs[recipe_tabs_c].paystate"
- @click="submit"
- >保存处方</el-button>
- </template>
- </div>
- </div>
- <popup class="accord-edit-wrapper"
- :showDialog="showDialog"
- distanceTop="4vh"
- @cancle="showDialog=false"
- @confim="submitAgree()"
- title="存为我的协定方"
- width="70%"
- >
- <div slot="body">
- <accordEdit :showBtn="false" ref="accordEdit" @success="agreeSccess"></accordEdit>
- </div>
- </popup>
- </div>
- </template>
- <script>
- import {getReasonableSafeMedicineDosageRange} from '@/request/api';
- import { addAccordData, getAccordShareList } from "@/api/business.js";
- import { getDataByKey } from "@/api/system.js";
- import accordEdit from "@/views/business/AccordEdit.vue";
- import {
- getProver,
- getArea,
- getSelectType,
- getPharmacyMsg,
- getPatAddress
- } from "@/api/city.js";
- import {
- getTableDrug,
- getAddressForHospital,
- getPharmacyID,
- changePharmacy,
- customerQuery,
- getPharmacyIDS
- } from "@/api/diagnosis.js";
- import { debounce } from "@/utils/format.js";
- import { mapState, mapGetters, mapActions, mapMutations } from "vuex";
- import popup from "@/components/Propup.vue";
- import accompanied from "./ui/accompanied.vue";
- import {CC_Basis2Dosage, CC_Dosage2Basis} from '@/utils/medicine';
- import {tryRun} from '@/tool';
- let medicineBlurTimer;
- export default {
- components: {
- popup,
- accordEdit,
- accompanied
- },
- props: {
- isShrink: {
- type: Boolean,
- default: false
- },
- container_i: {
- type: Number,
- default: 0
- },
- showSubmit: {
- type: Boolean,
- default: true
- },
- isDaiJian: {
- type: Number,
- default: 1
- },
- isPs: {
- type: Number,
- default: 1
- }
- // totalAllMoney: Number,
- },
- data() {
- return {
- totalAllMoney: 0,
- preData: [],
- showDialog: false,
- shareSelect: [], // 共享至选择器数据
- share: "",
- name: "中药处方",
- recipe_tabs: [
- {
- isMyMade: true,
- disable: false,
- name: "处方1",
- id: "", // 当前选择的处方 id(推荐方剂)
- pharmacyID: "", // 药房id
- isPay: false, // 是否支付
- prescribed: 0, // 是否开方 0 否 1是
- paystate: 0, // 云his 是否支付 0 否 1是(为否可以编辑)
- totalTableD: [
- {
- id: 1,
- key: "",
- drugList: [],
- page: 1,
- loadMore: true,
- usageList: [],
- search_i: 0,
- showSearch: false
- }
- ],
- tableData: [
- {
- id: 1,
- key: "",
- drugList: [],
- page: 1,
- loadMore: true,
- usageList: [],
- search_i: 0,
- showSearch: false
- }
- ],
- radio: "1",
- lastType: "1", // 上一次的 药房类型
- tableData1: [],
- bottom_form: {
- preType: "", // 协定方的时候 切换 中药类型带入
- disable: false, // 协定方 配方转方 为 true
- doseNum: "",
- doseType: "",
- doseTypeList: [],
- usegeList: [],
- usege: "",
- num: "",
- numList: [], // 频次后台数据
- daijian: "",
- nongjian: "200",
- time: "",
- timeList: [], // 服药时间后台数据
- caozuo: "",
- zhutuo: "",
- radio: 1, // TODO 配送 :0 配送 注意:isPs isKD
- isDaiJian: 2,
- provinceList: [],
- cityList: [],
- areaList: [],
- province: "",
- city: "",
- area: "",
- address: "",
- phone: "",
- doseType1: "zc",
- doseNum1: "",
- savename: "",
- nowRecipeMoney: 0, //单剂金额
- nowRecipeMoney1: 0, //当前处方金额
- allMoney: 0, // 合计金额
- moneyMsg: {} // 价格数据
- }
- }
- ], // 处方 tabs
- recipe_tabs_c: 0, // 处方 tabs 下标
- index: -1, // 全局index 下拉加载时使用
- provinceList1: [], // 全局省列表 赋值用
- countWay: "1", // 计算方式
- isAutoCheck: "0", // 是否自动审核 0 手动 1自动 (自动的时候用his 的是否支付成功字段 判断显示)
- pharmacyList: [], // 药房选择器 数据
- pharmacyTypes: [],
- pharmacyTypeGroup: [],
- clickPid: "", // 点击的药品id
- maxDose: null,
- minDose: null,
- doseId: "", // 要展示的 剂量id
- medIndex: 0, // 点击的 药品下标
- defaultUsageMap: {}, // 使用默认用法映射
- usageList: [] // 用法列表
- };
- },
- created() {
- // setTimeout(() => {
- // this.getDataByKey()
- // }, 200);
- // this.getAccordShareList()
- // this.getPharmacyID()
- // this.getTableDrug('', 1, 0)
- this.loaded();
- // this._getPharmacyIDS();
- this.getProver();
- this.getSelectType("中药药品用法", 0);
- this.getSelectType("剂型", 0);
- this.getSelectType("处方用法");
- this.getSelectType("中药服药时间");
- this.getSelectType("中药频次");
- },
- mounted() {},
- methods: {
- async loaded(props) {
- if (!this.pharmacyTypes.length) await this.customerQuery().catch(() => void 0);
- let defaultProps = {};
- try {
- this.recipe_tabs_c = props.recipe_tabs_c || 0;
- defaultProps = props.recipe_tabs[this.recipe_tabs_c];
- } catch(e) {}
- try {
- defaultProps = {...this.pharmacyTypes[0], ...defaultProps};
- this.recipe_tabs[this.recipe_tabs_c].pharmacyID = defaultProps.pharmacyID || this.pharmacyList[0].pid;
- this.recipe_tabs[this.recipe_tabs_c].radio = defaultProps.radio || defaultProps.ptype;
- this.recipe_tabs[this.recipe_tabs_c].lastType = defaultProps.radio || defaultProps.ptype;
- } catch (e) {}
- this.$forceUpdate();
- await this.getPharmacyMsg(this.recipe_tabs[this.recipe_tabs_c].pharmacyID);
- return this;
- },
- _splitDataToView(totalData) {
- if (!Array.isArray(totalData)) totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- const forceUpdate = (data) => Object.assign({}, data);
- this.recipe_tabs[this.recipe_tabs_c].tableData = totalData.filter(
- (item, index) => {
- return item.id % 2 !== 0;
- }
- ).map(forceUpdate);
- this.recipe_tabs[this.recipe_tabs_c].tableData1 = totalData.filter(
- (item, index) => {
- return item.id % 2 === 0;
- }
- ).map(forceUpdate);
- },
- /**
- * 检测合理用药
- * @param [totalData] 药品数据
- * @param {'check'|'update'} [mode] 模式
- * @private
- */
- _checkReasonableSafeMedicines(totalData, mode = 'check') {
- if (!Array.isArray(totalData)) totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- if (mode === 'update') this.$parent.updateReasonableSafeMedicines(totalData);
- else this.$parent.checkReasonableSafeMedicines(totalData);
- },
- // 打开父级安全合理用药监测
- openSafeDrug() {
- this.$parent.opensafeD();
- },
- getRadioName(val) {
- if (val == 1) {
- return "散装饮片";
- }
- if (val == 2) {
- return "散装颗粒";
- }
- if (val == 3) {
- return "小包装饮片";
- }
- if (val == 4) {
- return "小包装颗粒";
- }
- if (val == 5) {
- return "膏方";
- }
- if (val == 6) {
- return "中药制剂";
- }
- },
- // 配送点击
- changePeiSong() {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.radio =
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.radio == 1 ? 0 : 1;
- this.countNowRecipeMoney();
- this.getaddress(this.recipe_tabs[this.recipe_tabs_c].bottom_form.radio);
- },
- // 代煎选项点击
- changeDaijian() {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.isDaiJian =
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.isDaiJian == 1 ? 0 : 1;
- if (this.recipe_tabs[this.recipe_tabs_c].bottom_form.isDaiJian == 0) {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.daijian = "";
- } else {
- this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.daijian = this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.doseNum;
- }
- this.countNowRecipeMoney();
- },
- // 是否配送
- getaddress(e) {
- if (e == 1) {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.address = "";
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.savename = "";
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.phone = "";
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.province = "";
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.city = "";
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.area = "";
- } else {
- this.getPatAddress();
- }
- this.countNowRecipeMoney();
- },
- scroll(e) {
- // console.log("滚动", e);
- },
- // 监听键盘事件
- drugDown(e, scope) {
- e.stopPropagation();
- e.preventDefault();
- let index = scope.row.id ? scope.row.id - 1 : 0;
- let totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- // 如果到最后一个 判断是否需要分页
- if (totalData[index].search_i == totalData[index].drugList.length - 1) {
- // totalData[scope.$index].search_i
- if (totalData[index].loadMore) {
- totalData[index].page += 1;
- this.getTableDrug(
- totalData[index].key,
- totalData[index].page,
- index,
- totalData[index].loadMore
- );
- totalData[index].search_i += 1;
- }
- } else {
- totalData[index].search_i += 1;
- }
- // 表格 fixed 时 去 下标 为 1
- if (totalData[index].drugList.length > 5) {
- const el = document.querySelectorAll(`#infiniteList${scope.row.id}`)[0];
- if (el) el.scrollTop += 36;
- }
- this.recipe_tabs[this.recipe_tabs_c].totalTableD = totalData;
- totalData.filter((item, index) => {
- // this.getSelectType('中药药品用法', index)
- return (item.id = index + 1);
- });
- this._splitDataToView(totalData);
- this.$forceUpdate();
- },
- drugUp(e, scope) {
- e.stopPropagation();
- e.preventDefault();
- let index = scope.row.id ? scope.row.id - 1 : 0;
- let totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- // 如果到最后一个 判断是否需要分页
- if (totalData[index].search_i == 0) {
- // totalData[scope.$index].search_i
- } else {
- totalData[index].search_i -= 1;
- }
- const el = document.querySelectorAll(`#infiniteList${scope.row.id}`)[0];
- if (el && el.scrollTop > 0) el.scrollTop -= 36;
- this.recipe_tabs[this.recipe_tabs_c].totalTableD = totalData;
- totalData.filter((item, index) => {
- // this.getSelectType('中药药品用法', index)
- return (item.id = index + 1);
- });
- this._splitDataToView(totalData);
- },
- drugEnter(scope) {
- this.chooseDis1(
- scope,
- scope.row.search_i,
- scope.row.drugList[scope.row.search_i]
- );
- },
- usageC(e, scope) {
- let index = scope.row.id ? scope.row.id - 1 : 0;
- let totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].usage = e;
- this._splitDataToView(totalData);
- },
- doseFocus(scope) {
- let width = window.innerWidth;
- if (width > 800) {
- if (scope.row.id % 2 == 0) {
- document.getElementsByClassName(
- "el-table__body-wrapper"
- )[1].style.overflow = "hidden";
- } else {
- document.getElementsByClassName(
- "el-table__body-wrapper"
- )[0].style.overflow = "hidden";
- }
- }
- this.doseId = scope.row.medid;
- // this.dosageRangeShow = false;
- getReasonableSafeMedicineDosageRange(scope.row).then((data) => {
- if (data.medid === this.doseId) {
- this.minDose = data.matmindosage;
- this.maxDose = data.matmaxdosage;
- }
- });
- this.countDoseMoney(scope.row.dose || 0, scope);
- },
- doseBlur(scope) {
- if (!+scope.row.dose) scope.row.dose = '';
- if (typeof scope.row.dose === 'string') scope.row.dose = scope.row.dose.trim();
- if (scope.row.dose === '') this.$message.error('请输入剂量');
- else {
- let unit = scope.row.unit;
- let dose = Number(scope.row.dose);
- if (unit != 'g' && unit != '克' && !Number.isInteger(dose)) {
- this.$message.error('剂量输入有误');
- document.querySelectorAll('#dose' + scope.row.id)[0].style.border = '1px solid red';
- document.querySelectorAll('#dose' + scope.row.id)[0].style.color = 'red';
- }
- }
- getReasonableSafeMedicineDosageRange(scope.row).then(() => {
- const totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- tryRun(() => {
- Object.assign(totalData.find(item => item.pid === scope.row.pid), scope.row);
- this._checkReasonableSafeMedicines(totalData, 'update');
- });
- });
- this.maxDose = null;
- this.minDose = null;
- this.doseId = "";
- this.$parent.countDose();
- },
- doseEnter(scope) {
- if (
- scope.row.id ==
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.length - 1
- ) {
- // console.log(document.querySelectorAll('#searchD' + (scope.row.id + 1)), '啦啦啦')
- document.querySelectorAll("#searchD" + (scope.row.id + 1))[0].focus();
- } else {
- try {
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.forEach(item => {
- if (item.name && !item.dose && scope.row.id < item.id) {
- document.querySelectorAll("#dose" + item.id)[0].focus();
- throw Error();
- }
- if (!item.name) {
- // console.log(document.querySelectorAll('#searchD' + item.id), '啦啦啦')
- document.querySelectorAll("#searchD" + item.id)[0].focus();
- throw Error();
- }
- });
- } catch (error) {}
- }
- },
- // 修改剂数
- doseNumC() {
- let doseNum = this.recipe_tabs[this.recipe_tabs_c].bottom_form.doseNum;
- var regu = /^[1-9]\d*$/;
- if (!regu.test(Number(doseNum))) {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.doseNum = 1;
- doseNum = 1;
- }
- if (this.recipe_tabs[this.recipe_tabs_c].bottom_form.isDaiJian == 1) {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.daijian = doseNum;
- }
- this.countNowRecipeMoney();
- },
- // 计算中药处方总金额
- countMdAllMoney() {
- let totalAllMoney = 0;
- this.recipe_tabs.forEach(item => {
- totalAllMoney += Number(item.bottom_form.allMoney);
- });
- // this.totalAllMoney = totalAllMoney;
- this.$emit("update:totalAllMoney", totalAllMoney);
- },
- // 计算当前处方金额
- countNowRecipeMoney() {
- let data = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- let total = 0;
- data.forEach(item => {
- if (item.total) {
- total += Number(item.total);
- }
- });
- // console.log(total, '几家总额');
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.nowRecipeMoney = total;
- let doseNum =
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.doseNum || 1;
- // 计算当前处方金额
- if (doseNum) {
- if (this.countWay == "1") {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.nowRecipeMoney1 = (
- total * Number(doseNum)
- ).toFixed(2);
- total = (total * Number(doseNum)).toFixed(2);
- } else {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.nowRecipeMoney1 = (
- total * Number(doseNum)
- ).toFixed(3); // 3
- total = (total * Number(doseNum)).toFixed(3); // 3
- }
- } else {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.nowRecipeMoney1 = 0;
- }
- // 膏剂类型
- let doseType = this.recipe_tabs[this.recipe_tabs_c].bottom_form.doseType;
- // 是否配送
- let isDelivery = this.recipe_tabs[this.recipe_tabs_c].bottom_form.radio;
- // 制膏费
- let systemOfCreamPrice =
- doseType == "1"
- ? this.recipe_tabs[this.recipe_tabs_c].bottom_form.moneyMsg
- .systemOfCreamPrice
- ? this.recipe_tabs[this.recipe_tabs_c].bottom_form.moneyMsg
- .systemOfCreamPrice
- : 0
- : 0;
- // 代煎费
- let agencyPrice = 0;
- if (
- doseType == "0" &&
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.isDaiJian == 1
- ) {
- agencyPrice = this.recipe_tabs[this.recipe_tabs_c].bottom_form.daijian
- ? this.recipe_tabs[this.recipe_tabs_c].bottom_form.moneyMsg
- .agencyPrice *
- Number(this.recipe_tabs[this.recipe_tabs_c].bottom_form.daijian)
- : 0;
- }
- // 特殊调配费
- let specialDeploymentPrice =
- doseType == "2" || doseType == "3"
- ? this.recipe_tabs[this.recipe_tabs_c].bottom_form.moneyMsg
- .specialDeploymentPrice
- : 0;
- //配送费
- let deliveryPrice =
- isDelivery == 0
- ? this.recipe_tabs[this.recipe_tabs_c].bottom_form.moneyMsg
- .deliveryPrice || 0
- : 0;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.allMoney =
- Number(Number(total).toFixed(2)) + //3
- Number(systemOfCreamPrice) +
- Number(agencyPrice) +
- Number(specialDeploymentPrice) +
- Number(deliveryPrice);
- this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.allMoney = this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.allMoney.toFixed(2);
- this.countMdAllMoney();
- },
- // 清空处方
- clearRecipe() {
- let paystate = this.recipe_tabs[this.recipe_tabs_c].paystate;
- if (paystate == 1) {
- this.$message.warning("已支付处方不可以清空");
- return;
- }
- this.index = -1;
- this.recipe_tabs[this.recipe_tabs_c].disable = false;
- this.recipe_tabs[this.recipe_tabs_c].isMyMade = true;
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.splice(
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.length - 1,
- 1
- );
- this.recipe_tabs[this.recipe_tabs_c].totalTableD = [
- {
- drugList: [],
- page: 1,
- loadMore: true,
- key: "",
- search_i: 0
- }
- ];
- this.recipe_tabs[this.recipe_tabs_c].tableData = [
- {
- drugList: [],
- page: 1,
- id: 1,
- loadMore: true,
- key: "",
- search_i: 0
- }
- ];
- this.recipe_tabs[this.recipe_tabs_c].tableData1 = [];
- // this.recipe_tabs[this.recipe_tabs_c].radio = this.pharmacyTypes[0].ptype;
- // this.recipe_tabs[this.recipe_tabs_c].lastType = this.pharmacyTypes[0].ptype;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form = {
- ...this.recipe_tabs[this.recipe_tabs_c].bottom_form,
- preType: "", // 协定方的时候 切换 中药类型带入
- disable: false, // 协定方 配方转方 为 true
- doseNum: "",
- doseType: "",
- doseTypeList: [],
- usegeList: [],
- usege: "",
- num: "",
- numList: [], // 频次后台数据
- daijian: "",
- nongjian: "200",
- time: "",
- timeList: [], // 服药时间后台数据
- caozuo: "",
- zhutuo: "",
- // radio: 1,
- // isDaiJian: 2,
- provinceList: [],
- cityList: [],
- areaList: [],
- province: "",
- city: "",
- area: "",
- address: "",
- phone: "",
- doseType1: "zc",
- doseNum1: "",
- savename: "",
- nowRecipeMoney: 0, //单剂金额
- nowRecipeMoney1: 0, //当前处方金额
- allMoney: 0, // 合计金额
- };
- this.nowRecipeMoney = 0;
- this._checkReasonableSafeMedicines();
- this.getProver();
- this.getSelectType("中药药品用法", 0);
- this.getSelectType("剂型", 0);
- this.getSelectType("处方用法");
- this.getSelectType("中药服药时间");
- this.getSelectType("中药频次");
- sessionStorage.setItem("isupdateExpre", "0");
- this.countNowRecipeMoney();
- },
- load() {
- if (this.index === -1) return;
- console.log("进入");
- let key = this.recipe_tabs[this.recipe_tabs_c].totalTableD[this.index]
- .key;
- let page = this.recipe_tabs[this.recipe_tabs_c].totalTableD[this.index]
- .page;
- let loadMore = this.recipe_tabs[this.recipe_tabs_c].totalTableD[
- this.index
- ].loadMore;
- if (loadMore) {
- page += 1;
- }
- // if (!loadMore == 1) return;
- this.getTableDrug(key, page, this.index, loadMore);
- },
- // 新增处方 tab
- addRecipeTba() {
- let obj = this.recipe_tabs[this.recipe_tabs_c].bottom_form;
- this.recipe_tabs.push({
- prescribed: 0,
- paystate: 0,
- isMyMade: true,
- disable: false,
- name: `处方${this.recipe_tabs.length + 1}`,
- pharmacyID: this.recipe_tabs[this.recipe_tabs_c].pharmacyID,
- isPay: false,
- totalTableD: [
- {
- id: 1,
- key: "",
- drugList: [],
- page: 1,
- loadMore: true,
- usageList: [],
- search_i: 0,
- showSearch: false
- }
- ],
- tableData: [
- {
- id: 1,
- key: "",
- drugList: [],
- page: 1,
- loadMore: true,
- usageList: [],
- search_i: 0,
- showSearch: false
- }
- ],
- radio: this.pharmacyTypes[0].ptype,
- lastType: this.pharmacyTypes[0].ptype,
- tableData1: [],
- bottom_form: {
- doseNum: "",
- doseType: "",
- doseTypeList: [],
- usegeList: [],
- usege: "",
- num: "",
- numList: [], // 频次后台数据
- daijian: "",
- nongjian: "200",
- time: "",
- timeList: [], // 服药时间后台数据
- caozuo: "",
- zhutuo: "",
- radio: 1,
- isDaiJian: 2,
- pro: "",
- city: "",
- area: "",
- address: "",
- phone: "",
- doseType1: "",
- doseNum1: "",
- provinceList: this.provinceList1,
- cityList: [],
- areaList: [],
- province: "",
- city: "",
- area: "",
- moneyMsg: obj.moneyMsg, // 价格数据
- nowRecipeMoney: 0, //单剂金额
- nowRecipeMoney1: 0, //当前处方金额
- allMoney: 0, // 合计金额
- disable: false
- }
- });
- this.recipe_tabs_c = this.recipe_tabs.length - 1;
- // this.getPharmacyID()
- this.recipeChange(this.recipe_tabs_c);
- },
- // 处方 tab 点击改变
- recipeChange(index) {
- this.recipe_tabs_c = index;
- this.getSelectType("剂型");
- this.getSelectType("处方用法");
- this.getSelectType("中药服药时间");
- this.getSelectType("中药频次");
- // 调用 父级合理用药接口
- this._checkReasonableSafeMedicines();
- try {
- let pid = this.recipe_tabs[this.recipe_tabs_c].radio.split("@")[0];
- this.getPharmacyMsg(pid);
- } catch (error) {}
- },
- recipeDelete(index) {
- if (this.recipe_tabs.length == 1) return;
- this.recipe_tabs.splice(index, 1);
- this.recipe_tabs_c = this.recipe_tabs.length - 1;
- this.recipe_tabs.filter((item, index) => {
- return (item.name = "处方" + (index + 1));
- });
- this.countNowRecipeMoney();
- // this.$forceUpdate()
- },
- // 输入剂量计算 当前药品总价格
- countDoseMoney(e, scope) {
- let totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- let kucun = scope.row.inventory; // 药品库存
- if (Number(e) > Number(kucun)) {
- this.$message.warning("当前库存不足");
- document.querySelectorAll("#dose" + scope.row.id)[0].style.border =
- "1px solid red";
- document.querySelectorAll("#dose" + scope.row.id)[0].style.color =
- "red";
- } else {
- document.querySelectorAll("#dose" + scope.row.id)[0].style.border = "";
- document.querySelectorAll("#dose" + scope.row.id)[0].style.color = "";
- }
- let price = this.recipe_tabs[this.recipe_tabs_c].totalTableD[
- scope.row.id - 1
- ].price;
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[
- scope.row.id - 1
- ].dose = e;
- let dose = this.recipe_tabs[this.recipe_tabs_c].totalTableD[
- scope.row.id - 1
- ].dose;
- let total = 0;
- // 计算方式2
- if (this.countWay == "2") {
- total = (Number(price) * Number(dose)).toFixed(2);
- } else {
- total = Number(price) * Number(dose);
- }
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[
- scope.row.id - 1
- ].total = total;
- this._splitDataToView(totalData);
- if (this.recipe_tabs[this.recipe_tabs_c].bottom_form.doseNum) {
- // this.countNowRecipeMoney();
- }
- this.countNowRecipeMoney();
- },
- // 表一 选中药品
- chooseDis1(scope, index, item, from = "now") {
- let totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- const i = totalData.findIndex(t => t.medid === item.pid);
- const oneself = i === scope.row.id - 1;
- if (i !== -1 && !oneself) {
- this.$message.warning("请勿重复添加药品");
- clearTimeout(medicineBlurTimer);
- let index = scope.row.id ? scope.row.id - 1 : 0;
- const el = document.querySelectorAll(`#searchD${index+1}`)[0];
- if (el) el.focus();
- return;
- }
- let defaultUsage = false;
- let obj = {
- color: item.kc == 0 ? "red" : "#000",
- id: scope.row.id,
- pid: item.pid,
- name: item.ypmc,
- spec: item.gg, // 规格
- // dose: "", // 剂量
- dose: scope.row.color === "red" || oneself ? null : "",
- unit: item.dw, // 单位
- usage:
- oneself ? scope.row.usage : scope.row.color === "red"
- ? (defaultUsage = true, this.usageList[0].key)
- : scope.row.usage || item.usagestr || (defaultUsage = true, this.usageList[0].key), // 用法
- //usage: "",
- // price: item.lsjg,
- price: item.price,
- total: 0,
- inventory: item.kc, // 库存
- key: "",
- search_i: index,
- matname: item.platformdrugname, // 知识库id
- matid: item.platformdrugid, // 知识库name
- medid: item.pid, // 药品id
- originname: item.cdmc, // 产地名称
- showSearch: false,
- showDoseSection: false // 展示剂量区间
- };
- obj.ggnum = +item.ggnum || 1;
- obj.xbzxs = +item.xbzxs || '34'.includes(item.zylx) ? obj.ggnum : 1;
-
- if (obj.dose == null) {
- obj.oldDose = CC_Dosage2Basis(scope.row)
- obj.dose = CC_Basis2Dosage(obj, (value) => !obj.unit || ['g', '克'].includes(obj.unit) || Number.isInteger(value))
- }
- obj.matmindosage = '';
- obj.matmaxdosage = '';
- obj.dosageRange = '';
- const m = Object.assign(totalData[scope.row.id - 1], obj);
- if (defaultUsage) this.defaultUsageMap[obj.medid] = m;
- // 调用 父级合理用药接口
- this._checkReasonableSafeMedicines(totalData);
- if (scope.row.id == totalData.length) {
- totalData.push({
- id: 2,
- drugList: [],
- page: 1,
- loadMore: true,
- usageList: [],
- search_i: 0,
- showSearch: false
- });
- }
- this.recipe_tabs[this.recipe_tabs_c].totalTableD = totalData;
- totalData.filter((item, index) => {
- this.getSelectType("中药药品用法", index);
- // if (!item.usage) {
- // item.usage = item.usageList[0].key;
- // }
- return (item.id = index + 1);
- });
- this._splitDataToView(totalData);
- if (from != "now") return;
- setTimeout(() => {
- const el = document.querySelectorAll("#dose" + scope.row.id)[0];
- if (el) el.focus();
- this.index = -1;
- }, 500);
- this.countNowRecipeMoney();
- },
- // 表一和表二 数据添加
- addDis1(scope, type = "click") {
- let totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- let index = scope.row.id;
- // totalData[index + 1].id && totalData[index + 1].name
- if (index != totalData.length - 2) {
- // 插入到 数据中间
- let data = totalData.splice(scope.row.id);
- totalData.push({
- id: 2,
- drugList: [],
- page: 1,
- loadMore: true,
- usageList: [],
- showSearch: false,
- key: "",
- search_i: 0
- });
- totalData = totalData.concat(data);
- // this.totalTableD = totalData;
- } else if (totalData[index + 1].id && !totalData[index + 1].name) {
- totalData.push({
- id: 2,
- drugList: [],
- page: 1,
- loadMore: true,
- usageList: [],
- showSearch: false,
- key: "",
- search_i: 0
- });
- }
- totalData.filter((item, index1) => {
- this.getSelectType("中药药品用法", index1);
- return (item.id = index1 + 1);
- });
- this.recipe_tabs[this.recipe_tabs_c].totalTableD = totalData;
- this._splitDataToView(totalData);
- if (type != "click") return;
- setTimeout(() => {
- if (
- scope.row.id ==
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.length - 1
- ) {
- document.querySelectorAll("#searchD" + (scope.row.id + 1))[0].focus();
- } else {
- try {
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.forEach(item => {
- if (!item.name) {
- // console.log(document.querySelectorAll('#searchD' + item.id), '啦啦啦')
- document.querySelectorAll("#searchD" + item.id)[0].focus();
- throw Error();
- }
- });
- } catch (error) {}
- }
- }, 500);
- },
- // 表一 和表二 查看药品数据
- findDrug(scope) {
- this.$emit("find", scope);
- },
- // 表一和表二 数据删除
- deleteDis1(scope) {
- let totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- let index = scope.row.id - 1;
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.splice(index, 1);
- totalData.filter((item, index) => {
- return (item.id = index + 1);
- });
- this._checkReasonableSafeMedicines(totalData);
- this._splitDataToView(totalData);
- this.countNowRecipeMoney();
- },
- clickName(scope) {
- if (medicineBlurTimer) clearTimeout(medicineBlurTimer);
- // 隐藏滚动条
- if (scope.row.id % 2 == 0) {
- document.getElementsByClassName(
- "el-table__body-wrapper"
- )[1].style.overflow = "hidden";
- } else {
- document.getElementsByClassName(
- "el-table__body-wrapper"
- )[0].style.overflow = "hidden";
- }
- let index = scope.row.id ? scope.row.id - 1 : 0;
- this.index = index;
- this.medIndex = scope.$index;
- this.clickPid = scope.row.medid;
- const totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- totalData[index].showSearch = !totalData[index].showSearch;
- totalData[index].key = scope.row.name;
- totalData[index].search_i = 0;
- if (!scope.row.key) scope.row.key = scope.row.name;
- debounce(this.getTableDrug(scope.row.key, 1, scope.row.id - 1), 10000);
- },
- // 输入框获取 药品列表
- searchDrug(e, scope) {
- // 隐藏滚动条
- if (scope.row.id % 2 == 0) {
- document.getElementsByClassName(
- "el-table__body-wrapper"
- )[1].style.overflow = "hidden";
- } else {
- document.getElementsByClassName(
- "el-table__body-wrapper"
- )[0].style.overflow = "hidden";
- }
- let index = scope.row.id ? scope.row.id - 1 : 0;
- // console.log(this.recipe_tabs[this.recipe_tabs_c].totalTableD[index], '我是key')
- // let ids = document.querySelectorAll("#operate2");
- // ids.forEach((item, index) => {
- // item.style["z-index"] = "auto";
- // });
- // if (e != '') {
- // this.recipe_tabs[this.recipe_tabs_c].totalTableD[
- // scope.row.id - 1
- // ].showSearch = true
- // } else {
- // this.recipe_tabs[this.recipe_tabs_c].totalTableD[
- // scope.row.id - 1
- // ].showSearch = false
- // }
- const totalData = this.recipe_tabs[this.recipe_tabs_c].totalTableD;
- totalData[index].key = e;
- totalData[index].search_i = 0;
- this._splitDataToView(totalData);
- this.index = index;
- // this.getTableDrug(scope.row.key, 1, scope.row.id - 1)
- debounce(this.getTableDrug(e, 1, index), 10000);
- },
- drugFocus(scope) {
- this.medIndex = scope.$index;
- },
- drugBlur(e, scope) {
- return this.drugBlur1(e, scope)
- },
- drugBlur1(e, scope) {
- medicineBlurTimer = setTimeout(() => {
- this.index = -1;
- let index = scope.row.id ? scope.row.id - 1 : 0;
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].key = "";
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].showSearch = false;
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].drugList = [];
- // let ids = document.querySelectorAll("#operate2");
- // ids.forEach((item, index) => {
- // item.style["z-index"] = "99";
- // });
- this._splitDataToView();
- }, 500);
- },
- // 合并表一 表二
- arraySpanMethod1({ row, column, rowIndex, columnIndex }) {
- // if (!row.name) {
- // // document.getElementById('table1')
- // return [1, 8];
- // }
- },
- // 存为我的 协定方 提交
- submitAgree() {
- this.$refs.accordEdit.isRecipe = true;
- this.$refs.accordEdit.save();
- return;
- if (this.share == "") {
- this.$message.error({
- message: "请选择共享信息",
- showClose: false,
- type: "error"
- });
- return;
- }
- // 处理数据
- let data = this.recipe_tabs;
- let index = this.recipe_tabs_c;
- let obj = {
- rangtype: this.share,
- curetype: data[index].bottom_form.doseType,
- density: data[index].bottom_form.nongjian,
- deploymentfree: data[index].bottom_form.specialDeploymentPrice,
- frequency: data[index].bottom_form.num,
- medicationtime: data[index].bottom_form.time,
- fryingfee: data[index].bottom_form.agencyPrice,
- markfree: data[index].bottom_form.systemOfCreamPrice,
- name: this.getuserinfo.userid + new Date().toDateString(),
- prescriptionDetailVos: [],
- prescriptiontype: data[index].radio,
- type: "0",
- usrage: data[index].usege
- };
- data[index].totalTableD.forEach((item, index) => {
- if (item.name) {
- let obj1 = {
- dose: item.dose,
- drugid: item.medid,
- drugname: item.name,
- seqn: item.id,
- specification: item.spec,
- unit: item.unit,
- usagestr: item.usage
- };
- obj.prescriptionDetailVos.push(obj1);
- }
- });
- this.recipe_tabs[this.recipe_tabs_c].preType = "";
- this.addAccordData(obj);
- },
- agreeSccess(e) {
- this.showDialog = false;
- if (e) {
- this.$parent.openRecipeAfterAgree();
- }
- },
- // 存为我的 协定方
- saveToMine(from = "auto") {
- /*
- from : 操作来源 auto: 存为我的协定方点击
- reserve:保存处方时打开存为协定方
- */
- this.getAccordShareList();
- let hasDoseNum = true; // 是否有剂数
- let hasData = true; // 是否有处方药品数据
- let hasUse = true;
- this.recipe_tabs.forEach(item => {
- if (item.totalTableD.length < 2) {
- hasData = false;
- }
- item.totalTableD.forEach(item1 => {
- if (!item1.dose && item1.name) {
- hasDoseNum = false;
- }
- if (!item1.usage && item1.name) {
- hasUse = false;
- }
- });
- });
- if (!hasData) {
- this.$message.error("请完善中药处方药品信息");
- return false;
- }
- // if (!hasDoseNum) {
- // this.$message.error("请完善中药处方剂量信息");
- // return false;
- // }
- // if (!hasUse) {
- // this.$message.error('请完善中药处方用法信息')
- // return false
- // }
- this.showDialog = true;
- let that = this;
- setTimeout(() => {
- let arr = that.deepCopy(
- this.recipe_tabs[this.recipe_tabs_c].totalTableD
- );
- if (from == "reserve") {
- this.$refs.accordEdit.isNeedOpenRecipe = true;
- }
- const last = arr[arr.length - 1];
- if (last && !last.name) arr.pop();
- const val = this.recipe_tabs[this.recipe_tabs_c].radio;
- this.$refs.accordEdit.assignTableData(arr, val);
- // 赋值病名数据
- let tcmValue = this.$parent.$refs.TCM.getParams();
- this.$refs.accordEdit.$refs.tcmd.setParams(tcmValue);
- // 剂型
- this.$refs.accordEdit.form.doseType = this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.doseType;
- // 剂数
- this.$refs.accordEdit.form.doseNum = this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.doseNum;
- // 处方用法
- this.$refs.accordEdit.form.recipeUse = this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.usege;
- // 每次
- this.$refs.accordEdit.form.nongjian = this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.nongjian;
- // 频次
- this.$refs.accordEdit.form.times = this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.num;
- // 服药时间
- this.$refs.accordEdit.form.useTime = this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.time;
- return;
- this.$refs.accordEdit.totalTableD = arr;
- this.$refs.accordEdit.form.cMedType = this.recipe_tabs[
- this.recipe_tabs_c
- ].radio;
- this.$refs.accordEdit.form.doseType = this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.doseType;
- console.log(this.$refs.accordEdit, "acc");
- this.$refs.accordEdit.tableData = this.$refs.accordEdit.totalTableD.filter(
- item => {
- return item.id % 2 != 0;
- }
- );
- this.$refs.accordEdit.tableData1 = this.$refs.accordEdit.totalTableD.filter(
- item => {
- return item.id % 2 == 0;
- }
- );
- }, 200);
- return;
- },
- deepCopy(source) {
- if (!source instanceof Object) return source; //如果不是对象的话直接返回
- let target = Array.isArray(source) ? [] : {}; //数组兼容
- for (var k in source) {
- if (source.hasOwnProperty(k)) {
- if (typeof source[k] === "object") {
- target[k] = this.deepCopy(source[k]);
- } else {
- target[k] = source[k];
- }
- }
- }
- return target;
- },
- // 提交处方
- submit() {
- this.$emit("submit");
- },
- // 修改省的数据
- proC(e) {
- // console.log(e)
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.city = "";
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.area = "";
- this.getArea(e, 1);
- },
- cityC(e) {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.area = "";
- this.getArea(e, 2);
- },
- //添加协定方数据
- async addAccordData(data) {
- const loading = this.$loading({
- lock: true,
- text: "正在保存",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)"
- });
- let res = await addAccordData(data).catch(err => {
- loading.close();
- });
- if (res.ResultCode == 0) {
- loading.close();
- this.$message({
- type: "success",
- message: "保存成功",
- showClose: true
- });
- this.showDialog = false;
- setTimeout(() => {
- this.$router.push({
- path: "/index/accord"
- });
- }, 2000);
- }
- },
- // 通过中药类型获取药房id
- async getPharmacyID() {
- return;
- let res = await getPharmacyID({
- type: this.recipe_tabs[this.recipe_tabs_c].radio.split("@")[1]
- });
- if (res.ResultCode == 0) {
- if (res.ResultInfo == "") {
- this.$message({
- showClose: false,
- message: "当前类型无法开药,请切换类型",
- type: "error"
- });
- return;
- }
- this.recipe_tabs[this.recipe_tabs_c].pharmacyID = res.ResultInfo;
- this.changePharmacy(this.recipe_tabs[this.recipe_tabs_c].lastType);
- this.getPharmacyMsg(res.ResultInfo);
- }
- },
- // 选择药房
- async customerQuery() {
- let res = await customerQuery({
- type: 0
- });
- if (res.ResultCode == 0) {
- let pharmacyTypes = [];
- let pharmacyTypeGroup = [];
- res.Data.forEach(item => {
- item.dosageForms = item.dosageForms.split(",");
- item.dosageForms.forEach(item1 => {
- pharmacyTypes.push({
- type: item1,
- ptype: item.pid + "@" + item1,
- name: item.displayName + (item.dosageForms.length > 1 ? ` (${this.getRadioName(item1)})` : '')
- });
- });
- if (item.dosageForms.length > 1) {
- pharmacyTypeGroup.push({
- name: item.displayName,
- options: item.dosageForms.map(item1 => {
- return {
- type: item1,
- ptype: item.pid + "@" + item1,
- name: this.getRadioName(item1),
- }
- })
- })
- } else if (item.dosageForms.length === 1) {
- pharmacyTypeGroup.push({
- name: item.displayName,
- options: item.dosageForms.map(item1 => {
- return {
- type: item1,
- ptype: item.pid + "@" + item1,
- name: item.displayName,
- }
- })
- })
- }
- });
- this.pharmacyList = res.Data;
- this.pharmacyTypes = pharmacyTypes;
- this.pharmacyTypeGroup = pharmacyTypeGroup;
- }
- },
- // 获取药房id
- async _getPharmacyIDS() {
- let res = await getPharmacyIDS();
- if (res.ResultCode == 0) {
- this.pharmacyList = res.Data;
- res.Data.forEach(item => {
- if (item.key.indexOf("共享") != -1) {
- this.recipe_tabs[this.recipe_tabs_c].pharmacyID = item.value;
- this.getPharmacyMsg(item.value);
- }
- });
- this.$forceUpdate();
- }
- },
- // 切换中药类型时 切换 药房 获取 药品里面有没有这条数据
- async changePharmacy(type, val, force = false) {
- // else 触发在 this.$emit("updateDp", res.Data)
- if (this.recipe_tabs[this.recipe_tabs_c].radio == val) {
- this.$parent.openAddress();
- if (!force) return;
- }
- if (!type) type = this.recipe_tabs[this.recipe_tabs_c].lastType || '';
- if (!val) val = this.recipe_tabs[this.recipe_tabs_c].radio || '';
- this.recipe_tabs[this.recipe_tabs_c].radio = val;
- let drugIds = [];
- const loading = this.$loading({
- lock: true,
- text: "处理中,请稍后....",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)"
- });
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.forEach(item => {
- if (item.name) {
- item.oldDose = CC_Dosage2Basis(item);
- let idDose =
- item.medid +
- "&" +
- item.oldDose +
- "&" +
- (item.usage || "");
- // drugIds.push(item.medid)
- drugIds.push(idDose);
- }
- });
- let pharmacyName = "";
- val = val.split("@")[1];
- type = type.split("@")[1];
- this.recipe_tabs[this.recipe_tabs_c].pharmacyID = this.recipe_tabs[
- this.recipe_tabs_c
- ].radio.split("@")[0];
- let params = {
- type: val,
- pharmacyid: this.recipe_tabs[this.recipe_tabs_c].pharmacyID,
- drugIds,
- preType: this.recipe_tabs[this.recipe_tabs_c].preType,
- oldType: type
- };
- let res = await changePharmacy(params).catch(err => {});
- if (res.ResultCode == 0) {
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.forEach(
- (item1, index1) => {
- if (item1.name) {
- const getUsage = (function (list = [], value = '') {
- if (!Array.isArray(list) || list.length === 0) return void 0;
- const option = value && list.find(item => item.value === value || item.key == value);
- return option ? option.key : list[0].key;
- }).bind(null, this.usageList);
- res.Data.forEach((item, index) => {
- if (item == item1.medid) {
- item1.color = "red";
- item1.oldDose = item1.oldDose;
- }
- // console.log(item instanceof Object);
- if (item instanceof Object && item.oldYpid == item1.medid) {
- item1 = {
- id: 2,
- pid: item.pid,
- name: item.ypmc,
- matname: item.platformdrugname, // 知识库id
- matid: item.platformdrugid, // 知识库name
- spec: item.gg, // 规格
- dose: item.dose, // 剂量
- unit: item.dw, // 单位
- usage: item.usagestr || item.usage, // || this.usegeList[0].key, // 用法
- // usage: "",
- // price: item.lsjg,
- price: item.price,
- total: (item.price * item.dose).toFixed(2),
- inventory: item.kc, // 库存
- key: "",
- search_i: index,
- medid: item.pid, // 药品id
- originname: item.cdmc, // 产地名称
- showSearch: false,
- usageList: [],
- oldDose: item.placeholderdose || item1.oldDose
- };
- /* 修正 */ item1.usage = item1.useage = getUsage(item1.usage);
- item1.ggnum = +item.ggnum || 1;
- item1.xbzxs = +item.xbzxs || '34'.includes(item.zylx) ? item1.ggnum : 1;
- item1.color = item.kc > 0 ? "#000" : 'red';
- }
- this.$set(
- this.recipe_tabs[this.recipe_tabs_c].totalTableD,
- index1,
- item1
- );
- });
- }
- }
- );
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.filter(
- (item, index) => {
- this.getSelectType("中药药品用法", index);
- return (item.id = index + 1);
- }
- );
- this._checkReasonableSafeMedicines();
- this._splitDataToView();
- // this.recipe_tabs[this.recipe_tabs_c].lastType = this.recipe_tabs[this.recipe_tabs_c]
- // .radio // 存储这一次的 药房类型
- this.recipe_tabs[this.recipe_tabs_c].lastType = this.recipe_tabs[
- this.recipe_tabs_c
- ].radio; // 存储这一次的 药房类型
- // console.log(this.recipe_tabs[this.recipe_tabs_c].totalTableD);
- await this.getPharmacyMsg(this.recipe_tabs[this.recipe_tabs_c].pharmacyID);
- setTimeout(() => {
- this.countNowRecipeMoney();
- }, 500);
- }
- loading.close();
- },
- // 获取寄到本院地址数据
- async getAddressForHospital() {
- let res = await getAddressForHospital({});
- if (res.ResultCode == 0) {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.province =
- res.Data.province;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.city = res.Data.city;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.area =
- res.Data.district;
- this.getArea(res.Data.province, 1);
- this.getArea(res.Data.city, 2);
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.address =
- res.Data.adressdetail;
- }
- },
- // 获取表格药品列表
- async getTableDrug(key, page, index, load = true) {
- if (medicineBlurTimer) clearTimeout(medicineBlurTimer);
- if (!load) return;
- let pharmacyName = "";
- // let type = 0
- let type = this.recipe_tabs[this.recipe_tabs_c].radio.split("@")[1];
- this.pharmacyList.forEach(item => {
- if (item.pid == this.recipe_tabs[this.recipe_tabs_c].pharmacyID) {
- pharmacyName = item.pharmacyName;
- }
- });
- let params = {
- key: key,
- limit: 5,
- page: page,
- type: type,
- pharmacyid: this.recipe_tabs[this.recipe_tabs_c].pharmacyID
- };
- let res = await getTableDrug(params);
- if (this.index !== index) return;
- if (res.ResultCode == 0) {
- // 计算方式3
- if (this.countWay == "3") {
- res.Data.Items.filter(item => {
- return (item.price = Number(item.price).toFixed(2));
- });
- }
- if (page <= res.Data.TotalPageCount) {
- if (page == 1) {
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].drugList =
- res.Data.Items;
- } else {
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].drugList = [
- ...this.recipe_tabs[this.recipe_tabs_c].totalTableD[index]
- .drugList,
- ...res.Data.Items
- ];
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].page += 1;
- }
- if (
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].drugList
- .length == res.Data.TotalRecordCount
- ) {
- // this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].loadMore = false
- }
- this.recipe_tabs[this.recipe_tabs_c].totalTableD.filter(
- (item, index) => {
- return (item.id = index + 1);
- }
- );
- this._splitDataToView();
- } else {
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[
- index
- ].loadMore = false;
- }
- if (page === 1) {
- const el = document.querySelectorAll(`#infiniteList${index+1}`)[0];
- if (el && el.scrollTop > 0) el.scrollTop = 0;
- }
- }
- setTimeout(() => {
- const el = document.querySelectorAll(`#searchD${index+1}`)[0];
- if (el) {
- el.focus();
- const container = document.querySelector(`.table-container`);
- if (container) {
- const _bottom = container.getBoundingClientRect().bottom;
- const bottom = el.getBoundingClientRect().bottom;
- if (bottom + 220 > _bottom) container.scrollTop += 220;
- }
- }
- }, 100);
- },
- // 获取省数据
- async getProver() {
- let res = await getProver();
- if (res.ResultCode == 0) {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.provinceList =
- res.Data;
- this.provinceList1 = res.Data;
- }
- },
- // 获取市数据
- async getArea(code, type) {
- return;
- let res = await getArea(code);
- if (res.ResultCode == 0) {
- if (type == 1) {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.cityList = res.Data;
- } else {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.areaList = res.Data;
- }
- }
- },
- // 根据表格获取数据类型
- async getSelectType(data, index) {
- if (data === '中药药品用法' && this.usageList.length) return;
- let res = await getSelectType(data);
- if (data == "中药药品用法") {
- if (this.recipe_tabs[this.recipe_tabs_c].totalTableD[index]["usage"]) {
- // res.Data.forEach(item => {
- // if (
- // item.value ===
- // this.recipe_tabs[this.recipe_tabs_c].totalTableD[index]['usage']
- // ) {
- // this.recipe_tabs[this.recipe_tabs_c].totalTableD[index]['usage'] =
- // item.key;
- // } else {
- // this.recipe_tabs[this.recipe_tabs_c].totalTableD[index]['usage'] =
- // "";
- // }
- // });
- }
- this.recipe_tabs[this.recipe_tabs_c].totalTableD[index].usageList =
- res.Data;
- this.usageList = res.Data;
- } else if (data == "剂型") {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.doseTypeList =
- res.Data;
- if (this.recipe_tabs[this.recipe_tabs_c].bottom_form.doseType) return;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.doseType =
- res.Data[0].key;
- } else if (data == "处方用法") {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.usegeList = res.Data;
- // debugger
- if (this.recipe_tabs[this.recipe_tabs_c].bottom_form.usege !== "")
- return;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.usege =
- res.Data[0].key;
- } else if (data == "中药服药时间") {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.timeList = res.Data;
- if (this.recipe_tabs[this.recipe_tabs_c].bottom_form.time) return;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.time = res.Data[0].key;
- } else if (data == "中药频次") {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.numList = res.Data;
- if (this.recipe_tabs[this.recipe_tabs_c].bottom_form.num) return;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.num = res.Data[0].key;
- }
- this.$forceUpdate();
- },
- // 获取制膏费用
- async getPharmacyMsg(data) {
- let res = await getPharmacyMsg(data);
- if (res.ResultCode == 0) {
- res.Data.agencyPrice = res.Data.agencyPrice ? res.Data.agencyPrice : 0;
- res.Data.deliveryPrice = res.Data.deliveryPrice
- ? res.Data.deliveryPrice
- : 0;
- res.Data.specialDeploymentPrice = res.Data.specialDeploymentPrice
- ? res.Data.specialDeploymentPrice
- : 0;
- res.Data.systemOfCreamPrice = res.Data.systemOfCreamPrice
- ? res.Data.systemOfCreamPrice
- : 0;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.moneyMsg = res.Data;
- //
- this.$forceUpdate();
- this.$emit("updateDp", res.Data);
- }
- },
- // 获取共享至信息
- async getAccordShareList() {
- let res = await getAccordShareList();
- if (res.ResultCode == 0) {
- this.shareSelect = res.Data;
- }
- },
- // 获取医共体计算方式配置
- async getDataByKey(key = "countMenthod") {
- /*
- countMenthod:计费方式
- automaticReview:是否开启自动审核
- */
- let res = await getDataByKey({
- key: key,
- organizationid: this.getuserinfo.organizationid
- });
- if (res.ResultCode == 0) {
- if (key == "countMenthod") {
- if (res.ResultInfo == "0") {
- this.countWay = "1";
- } else if (res.ResultInfo == "1") {
- this.countWay = "2";
- } else if (res.ResultInfo == "2") {
- this.countWay = "3";
- }
- }
- if (key == "automaticReview") {
- this.isAutoCheck = res.ResultInfo;
- }
- }
- },
- // 获取患者地址信息
- async getPatAddress() {
- if (!this.getPatiensInfo.basisPatient.pid) return;
- let res = await getPatAddress({
- patId: this.getPatiensInfo.basisPatient.pid
- });
- if (res.ResultCode == 0) {
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.address =
- res.Data.detailadress;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.savename =
- res.Data.name;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.phone = res.Data.phone;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.province =
- res.Data.province;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.city = res.Data.city;
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.area =
- res.Data.district;
- this.getArea(res.Data.province, 1);
- this.getArea(res.Data.city, 2);
- }
- }
- },
- filters: {
- formatTotal(val) {
- if (val == 0) return val;
- // console.log(val, 'val');
- if (parseInt(val) === parseFloat(val)) {
- return val;
- } else {
- let v = String(val).split(".");
- if (v[1].length > 2) {
- // 2
- return val.toFixed(2); //
- } else {
- return val;
- }
- }
- }
- },
- computed: {
- saveable() /* 父组件 获取 */ {
- const recipes = this.recipe_tabs.filter(item => +item.paystate === 0);
- if (recipes.length > 1) return true
- return recipes[0] && recipes[0].totalTableD.some(item => item.name)
- },
- ...mapGetters(["getuserinfo", "getPatiensInfo"])
- },
- watch: {
- getuserinfo: {
- deep: true,
- immediate: true,
- handler() {
- if (this.getuserinfo.organizationid) {
- this.getDataByKey();
- this.getDataByKey("automaticReview");
- }
- }
- },
- isDaiJian: {
- immediate: true,
- deep: true,
- handler: function() {
- this.recipe_tabs[
- this.recipe_tabs_c
- ].bottom_form.isDaiJian = this.isDaiJian;
- this.recipe_tabs.forEach(item => {
- // item.bottom_form.isDaiJian = this.isDaiJian;
- if (item.isDaiJian == 0) {
- item.bottom_form.daijian = "";
- } else {
- item.bottom_form.daijian = item.bottom_form.doseNum;
- }
- });
- this.countNowRecipeMoney();
- this.$forceUpdate();
- }
- },
- isPs: {
- immediate: true,
- deep: true,
- handler: function() {
- // this.recipe_tabs.forEach(item => {
- // item.bottom_form.radio = this.isPs;
- // });
- console.log(this.isPs, "选药");
- this.recipe_tabs[this.recipe_tabs_c].bottom_form.radio = this.isPs;
- this.countNowRecipeMoney();
- this.$forceUpdate();
- }
- }
- }
- };
- </script>
- <style lang="scss">
- .accord-edit-wrapper {
- .popup-container {
- display: flex;
- flex-direction: column;
- > div { flex: auto; }
- > div.btns { flex: none; }
- }
- }
- </style>
- <style lang="scss" scoped>
- @import "../style/common.scss";
- .table-header {
- border-bottom: 2px solid #dedede;
- padding: 0px 0;
- .table-label {
- .label-item {
- cursor: pointer;
- width: 104px;
- border-right: 2px solid #eaeaea;
- div {
- color: #666;
- // transform: rotate(45deg);
- font-size: 16px;
- margin-left: 8px;
- margin-top: 1px;
- font-weight: 600;
- }
- img {
- width: 20px;
- margin-left: 8px;
- }
- }
- span {
- font-size: 14px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #666666;
- }
- .l_active {
- color: #5386f6;
- }
- }
- }
- .add-presc {
- width: 70px;
- height: 26px;
- background: #ffae45;
- border-radius: 4px;
- font-size: 12px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #ffffff;
- cursor: pointer;
- margin-right: 10px;
- }
- #chineseM {
- display: flex;
- flex-direction: column;
- height: 100%;
- .table-container {
- display: flex;
- flex-direction: column;
- //padding: 5px 0px;
- height: 100%;
- // height: 340px;
- //height: calc(100% - 80px);
- overflow: auto;
- .t-con-header {
- position: sticky;
- top: -1px;
- z-index: 99;
- background-color: #fff;
- padding-top: 5px;
- margin-bottom: 0px;
- .t-con-radio {
- flex: 1;
- padding-bottom: 5px;
- border-bottom: 1px solid #eaeaea;
- }
- .t-radio-title {
- width: 82px;
- font-size: 16px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- .t-radio-group {
- flex: 1;
- }
- .t-radio-group2 {
- padding: 4px 8px;
- &.multiple {
- border: 2px dashed #5386f6;
- > label:first-of-type {
- margin-right: 8px;
- color: rgba(0, 0, 0, 0.6);
- &:after {
- margin-left: 2px;
- content: ":";
- }
- }
- }
- }
- .add-presc1 {
- width: 84px;
- height: 34px;
- background: #ffae45;
- border-radius: 4px;
- font-size: 14px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #ffffff;
- cursor: pointer;
- }
- }
- .table-msg {
- flex: auto;
- display: flex;
- flex-direction: column;
- }
- }
- }
- .table-show {
- flex: auto;
- width: 100%;
- // min-height: 212px;
- //overflow: auto;
- // background: #5386F6;
- // overflow: hidden;
- //z-index: 999;
- position: relative;
- .table-left-body {
- width: 50%;
- height: 100%;
- position: relative;
- perspective: 100px;
- // padding-bottom: 10px;
- }
- .table-left {
- width: 100%;
- height: 100%;
- overflow-y: auto;
- border: 1px solid #dedede;
- box-sizing: border-box;
- // overflow-x: auto;
- .table-l-hader {
- white-space: nowrap;
- div {
- display: inline-block;
- // padding: 15px 10px;
- background: rgba($color: #5386f6, $alpha: 0.1);
- text-align: center;
- height: 48px;
- line-height: 48px;
- border: 1px solid #dedede;
- border-bottom: 0 !important;
- // border-top: 0 !important;
- }
- .med-name {
- margin-left: 50px;
- }
- .kucun {
- padding-right: 120px;
- }
- .fixed-r {
- position: fixed;
- right: 0;
- }
- .fixed-left {
- position: fixed;
- left: 0;
- }
- }
- .table-l-item {
- white-space: nowrap;
- .bg-green {
- .div1 {
- background: rgba($color: #5386f6, $alpha: 0.1);
- border: 1px solid #dedede;
- }
- }
- .div1 {
- display: inline-block;
- // padding: 15px 10px;
- background: #ffffff;
- text-align: center;
- height: 53px;
- line-height: 53px;
- border: 1px solid #dedede;
- //z-index: 9999;
- border-top: 0 !important;
- }
- .med-name {
- margin-left: 50px;
- }
- .kucun {
- padding-right: 120px;
- border-right: 1px solid #dedede;
- }
- .fixed-r {
- position: fixed;
- right: 0;
- }
- .fixed-left {
- position: fixed;
- left: 0;
- // border-left: 1px solid #DEDEDE;
- }
- .no-data {
- width: 100%;
- box-sizing: border-box;
- // border-top: 1px solid #DEDEDE;
- position: relative;
- left: 0;
- right: 0;
- bottom: 0px;
- // float: left;
- }
- }
- }
- }
- .operate {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- img {
- width: 16px;
- }
- }
- .bottom-input {
- background: #fff;
- padding: 12.5px 30px 12.5px 52px;
- position: relative;
- // z-index: 999;
- // perspective: 100px;
- .div {
- width: 154px;
- }
- .table-choose {
- //z-index: 9999;
- width: 332px;
- height: 221px;
- background: #ffffff;
- border: 2px solid #d8d8d8;
- position: relative;
- top: 2px;
- left: -48px;
- overflow: auto;
- .table-choose-h {
- background: rgba($color: #5386f6, $alpha: 0.1);
- div {
- height: 36px;
- width: 73px;
- }
- div:first-child {
- width: 115px;
- }
- }
- .t-c-b {
- cursor: pointer;
- height: 180px;
- .td {
- background: rgba($color: #5386f6, $alpha: 0.1);
- }
- p {
- border: 1px solid #ededed;
- height: 36px;
- width: 73px;
- // flex: 1;
- box-sizing: border-box;
- }
- p:first-child {
- width: 115px;
- }
- }
- }
- }
- .table-bottom {
- // position: absolute;
- // bottom: 80px;
- // right: 0;
- // left: 0;
- padding: 0 10px;
- // margin-top: 241px;
- margin-top: 5px;
- //z-index: -1;
- .header-about {
- .item {
- margin-right: 5px;
- margin-bottom: 8px;
- span {
- font-size: 14px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- .div1 {
- width: 40px;
- }
- .div2 {
- width: 72px;
- }
- .city1 {
- width: 140px;
- }
- .div3 {
- width: 70px;
- }
- .div4 {
- width: 160px;
- }
- .div5 {
- width: 88px;
- }
- .input-suffix {
- line-height: 28px;
- }
- }
- .right {
- width: 62px;
- height: 26px;
- background: #ffae45;
- border-radius: 4px;
- font-size: 12px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #ffffff;
- margin-bottom: 10px;
- cursor: pointer;
- }
- }
- }
- .table-b-bottom {
- padding: 5px 5px;
- border-top: 2px solid #dedede;
- // margin-top: 10px;
- // position: absolute;
- // bottom: 0;
- // left: 0;
- // right: 0;
- .t-b-l-item {
- font-size: 14px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- margin-right: 8px;
- span {
- color: #ff6245;
- }
- }
- .t-b-b-right {
- div {
- width: 130px;
- height: 46px;
- background: #ffae45;
- border-radius: 4px;
- font-size: 16px;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- cursor: pointer;
- }
- .bg-green {
- background: #5386f6;
- margin-left: 20px;
- }
- }
- }
- // 中成药 和适宜技术配方
- .chinese_medicine {
- padding: 0 37px;
- .clearer {
- width: 84px;
- height: 34px;
- background: #ffae45;
- border-radius: 4px;
- font-size: 14px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #ffffff;
- cursor: pointer;
- margin-bottom: 20px;
- }
- .c-m-table {
- width: 100%;
- overflow: hidden;
- .unit {
- font-size: 14px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #000000;
- // margin-left: 10px;
- }
- .input {
- width: 40px;
- }
- }
- }
- .operate {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- img {
- width: 16px;
- }
- }
- .operate2 {
- position: absolute;
- z-index: 99;
- }
- .operate1 {
- position: fixed;
- width: 50px;
- // background: red;
- right: 15px;
- // top: 63px;
- text-align: right;
- img {
- width: 16px;
- }
- }
- .bottom-input {
- background: #fff;
- padding: 12.5px 30px 12.5px 52px;
- position: relative;
- // z-index: 999;
- // perspective: 100px;
- .div {
- width: 154px;
- }
- .table-choose {
- // z-index: 9999;
- width: 332px;
- height: 221px;
- background: #ffffff;
- border: 2px solid #d8d8d8;
- position: relative;
- top: 2px;
- left: -48px;
- overflow: auto;
- .table-choose-h {
- background: rgba($color: #5386f6, $alpha: 0.1);
- div {
- height: 36px;
- width: 73px;
- }
- div:first-child {
- width: 115px;
- }
- }
- .t-c-b {
- cursor: pointer;
- height: 180px;
- .td {
- background: rgba($color: #5386f6, $alpha: 0.1);
- }
- p {
- border: 1px solid #ededed;
- height: 36px;
- width: 73px;
- // flex: 1;
- box-sizing: border-box;
- }
- p:first-child {
- width: 115px;
- }
- }
- }
- }
- .t_dose {
- position: relative;
- // perspective: 100px;
- .dose-section {
- //z-index: 999999 !important;
- position: fixed;
- width: 50px;
- //left: 136px;
- left: 196px;
- // right: 0;
- top: 8px;
- height: 22px;
- line-height: 22px;
- border-radius: 4px;
- background: rgba($color: #000000, $alpha: 0.7);
- color: #fff;
- span {
- font-size: 12px;
- }
- }
- }
- .table-choose3 {
- z-index: 99;
- // width: 332px;
- width: 532px;
- height: 221px;
- background: #ffffff;
- border: 2px solid #d8d8d8;
- position: fixed;
- //top: 44px;
- left: 84px;
- //margin-top: 19px;
- overflow: auto;
- .table-choose-h {
- background: rgba($color: #5386f6, $alpha: 0.1);
- div {
- height: 36px;
- width: 73px;
- }
- div:first-child {
- width: 115px;
- }
- div:nth-child(2),
- div:nth-child(3) {
- width: 173px;
- }
- }
- .t-c-b {
- cursor: pointer;
- height: 180px;
- .td {
- background: rgba($color: #5386f6, $alpha: 0.1);
- }
- p {
- border: 1px solid #ededed;
- height: 36px;
- width: 73px;
- // flex: 1;
- box-sizing: border-box;
- }
- p:first-child {
- width: 115px;
- }
- p:nth-child(2),
- p:nth-child(3) {
- width: 173px;
- }
- }
- }
- .header-about::v-deep .el-input__inner {
- padding: 0 5px;
- }
- .header-about::v-deep .el-checkbox {
- margin-right: 5px;
- }
- .header-about::v-deep .el-checkbox__label {
- padding-left: 5px;
- }
- .table-container::v-deep .el-radio {
- margin-right: 5px;
- }
- .table-container::v-deep .el-radio__label {
- padding-left: 2px;
- font-size: 12px;
- }
- .table-show::v-deep .el-table {
- // z-index: 999;
- height: 100%;
- }
- .table-show::v-deep .el-table th {
- padding: 2px 0;
- }
- .table-show::v-deep .el-table td {
- padding: 2px 0;
- }
- .table-show::v-deep .el-table__empty-block {
- min-height: 29px;
- }
- .table-left-body::v-deep .el-table th {
- background: rgba($color: #5386f6, $alpha: 0.1);
- }
- .collapse ::v-deep .el-collapse-item__content {
- padding-bottom: 5px;
- }
- .c-m-table::v-deep .el-table .cell {
- text-align: center;
- }
- .table-show::v-deep .el-table .cell {
- text-align: center;
- padding: 0 0;
- }
- .c-m-table::v-deep .el-select input {
- padding: 0 15px 0 5px;
- }
- .table-show ::v-deep .el-select input {
- padding: 0 15px 0 5px;
- }
- .t_dose::v-deep .el-input__inner {
- // text-align: left;
- padding: 0 5px !important;
- }
- .city::v-deep .el-select input {
- padding: 0 20px 0 10px;
- // height: 32px;
- }
- .xuewei::v-deep .el-select {
- width: 100%;
- }
- .form-item {
- margin-bottom: 20px;
- span {
- font-size: 16px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #ff3a3a;
- display: inline-block;
- width: 8px;
- }
- .name {
- font-size: 16px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333;
- }
- .input {
- width: 260px;
- }
- }
- .operate2::v-deep .el-input__inner {
- padding: 0 5px;
- }
- .daijiao-check {
- margin-right: 8px;
- .img-body {
- width: 16px;
- height: 16px;
- box-sizing: border-box;
- border: 1px solid #dcdfe6;
- font-size: 0;
- img {
- width: 14px;
- height: 14px;
- }
- }
- .active {
- border: 0px solid #5386f6;
- img {
- width: 17px;
- height: 17px;
- }
- }
- span {
- font-size: 14px;
- margin-left: 5px;
- cursor: pointer;
- }
- }
- </style>
- <style lang="scss" scoped>
- @media screen and (max-width: 768px) {
- .table-header .table-label .label-item {
- width: auto;
- padding: 0 10px;
- }
- .table-header .table-label span {
- font-size: 12px;
- }
- .el-button--mini {
- padding: 5px 10px;
- }
- .table-container ::v-deep .el-radio__label {
- font-size: 11px;
- }
- ::v-deep {
- .el-radio__inner {
- width: 12px;
- height: 12px;
- }
- }
- .table-left-body ::v-deep .el-table th {
- font-size: 12px;
- }
- .table-show ::v-deep .el-table td {
- font-size: 12px;
- }
- .table-bottom .header-about .item span {
- font-size: 12px;
- }
- .table-b-bottom .t-b-l-item {
- font-size: 12px;
- }
- .table-show {
- // height: 335px;
- height: calc(100% - 136px);
- }
- }
- </style>
|