receiptpage.vue 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540
  1. <template>
  2. <view class="Receiptpage">
  3. <view class="page_tab">
  4. <view class="page_tab_bar" :class="{ active: item.label === selectedLabelSlots }" v-for="item in tabs"
  5. :key="item.value" @click.prevent="clickHandler(item.label)">
  6. {{ item.label }}
  7. <text class="tab_num">( {{ item.num }} )</text>
  8. <view class="more" v-if="item.label === '执行中'" @click.stop="execFilter"></view>
  9. <!-- <picker class="more_picker" v-if="item.label === '执行中'" @click.stop @change="execFilter($event)" :value="index"
  10. :range="array" range-key="name">
  11. <view class="uni-input">{{ array[index].name }}</view>
  12. </picker> -->
  13. </view>
  14. </view>
  15. <view v-if="zxzData.length == 0" class="zwsj">
  16. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  17. <view class="zwsj-txt">暂无数据</view>
  18. </view>
  19. <view class="page_items">
  20. <scroll-view class="page_items_scroll" scroll-y :refresher-enabled="scroll_refresher_enabled"
  21. :refresher-triggered="triggered" @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore"
  22. @scroll="scroll" @scrolltolower="scrolltolower" :scroll-top="scroll_top" @refresherabort="refresherabort">
  23. <view class="page_item_wrap" v-for="(item, index) of zxzData" :key="index">
  24. <view class="page_item">
  25. <view class="L"></view>
  26. <view class="R"></view>
  27. <view class="page_item_top">
  28. <view class="page_item_top_L">
  29. <!-- <text class="L_iocn" v-if="item.taskType.associationType.value == 'specimen'">标</text>
  30. <text class="L_iocn" v-if="item.taskType.associationType.value == 'drugsBag'">药</text>
  31. <text class="L_iocn" v-if="item.taskType.associationType.value == 'specimenPlan'">巡</text>
  32. <text class="L_iocn" v-if="item.taskType.associationType.value == 'jPBag'">静</text>
  33. <text class="L_iocn" v-if="item.taskType.associationType.value == 'inspect'">病</text>
  34. <text class="L_iocn" v-if="
  35. item.taskType.associationType.value == 'patientTransport'
  36. ">病</text>
  37. <text class="L_iocn" v-if="item.taskType.associationType.value == 'other'">其</text> -->
  38. <view class="page_item_cont_start emergency1" v-if="item.emergencyType.value == 1">
  39. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  40. </image>
  41. {{ item.emergencyType.name }}
  42. </view>
  43. <view class="page_item_cont_start emergency" v-if="item.emergencyType.value == 2">
  44. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  45. </image>
  46. {{ item.emergencyType.name }}
  47. </view>
  48. <view class="page_item_cont_start emergencys" v-if="item.emergencyType.value == 3">
  49. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  50. </image>
  51. {{ item.emergencyType.name }}
  52. </view>
  53. <view class="page_item_top_R type" style="margin-left: 16rpx;">
  54. {{
  55. item.isHalfInspect === 1 ? "半程陪检" : item.taskType.taskName
  56. }}<template v-if="item.goodsRemark">-{{item.goodsRemark}}</template>
  57. </view>
  58. <!-- <text class="L_time" v-if="item.overdueTime">{{ item.overdueTime }}前送达</text> -->
  59. </view>
  60. <view class="page_item_top_R" v-if="
  61. !(
  62. item.taskType.associationType.value == 'inspect' &&
  63. item.gdState.value == 5
  64. )
  65. ">
  66. <text class="text_big">{{ item.gdState.name }}</text>
  67. </view>
  68. <view class="page_item_top_R" v-if="
  69. item.taskType.associationType.value == 'inspect' &&
  70. item.gdState.value == 5
  71. ">
  72. <text class="text_big">待送回</text>
  73. </view>
  74. <!-- <view class="page_item_top_R type">
  75. {{
  76. item.isHalfInspect === 1 ? "半程陪检" : item.taskType.taskName
  77. }}<template v-if="item.goodsRemark">-{{item.goodsRemark}}</template>
  78. </view> -->
  79. </view>
  80. <view class="page_item_cont" @click="itemInfo(item)">
  81. <view class="page_item_cont_T">
  82. <view class="page_item_cont_title">
  83. <text> <text class="starting">起</text> 点科室 </text>
  84. <text class="text_big">{{ item.startDept.dept }}</text>
  85. </view>
  86. <!-- <view class="page_item_cont_start emergency1" v-if="item.emergencyType.value == 1">
  87. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  88. </image>
  89. {{ item.emergencyType.name }}
  90. </view>
  91. <view class="page_item_cont_start emergency" v-if="item.emergencyType.value == 2">
  92. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  93. </image>
  94. {{ item.emergencyType.name }}
  95. </view>
  96. <view class="page_item_cont_start emergencys" v-if="item.emergencyType.value == 3">
  97. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  98. </image>
  99. {{ item.emergencyType.name }}
  100. </view> -->
  101. </view>
  102. <view class="page_item_conts" v-if="item.taskType.associationType.value == 'specimen'">
  103. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  104. <view>扫描标本数量 : {{ item.actualReceiveNum || '无'}}</view>
  105. <view class="line"></view>
  106. </view>
  107. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'blood'">
  108. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  109. <view>接收数量 : {{ item.actualReceiveNum || '无'}}</view>
  110. <view class="line"></view>
  111. </view>
  112. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'inspect'">
  113. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  114. <view>
  115. 预约时间 : {{ item.yyTime | yyTimeFilter
  116. }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
  117. </view>
  118. <view>
  119. 患者信息 : {{ item.patient ? item.patient.patientName : "-" }}({{
  120. item.patient ? item.patient.bedNum : "-"
  121. }})
  122. </view>
  123. <view v-if="item.goods">
  124. 携带设备 :
  125. <text>{{ item.goods || "暂无" }}</text>
  126. </view>
  127. <view style="word-break: break-all;" v-if="item.workOrderRemark">
  128. 备注信息 :
  129. <text>{{ item.workOrderRemark || "暂无" }}</text>
  130. </view>
  131. <view v-if="item.patient.careLevel">
  132. 护理等级 :
  133. <text :class="[
  134. item.patient.careLevel.value == 0 ||
  135. item.patient.careLevel.value == 1
  136. ? 'red'
  137. : 'green',
  138. ]">{{ item.patient.careLevel.name }}</text>
  139. </view>
  140. <view v-if="item.patient.illnessState">
  141. 病情级别 :
  142. <text :class="{
  143. red:
  144. item.patient.illnessState.value == 2 ||
  145. item.patient.illnessState.value == 3,
  146. }">{{ item.patient.illnessState.name }}</text>
  147. </view>
  148. <view v-if="item.isAccompany === 1 || item.isAccompany === 0">
  149. 陪同情况 :
  150. <text :class="{ red: item.isAccompany === 1 }">{{
  151. item.isAccompany === 1 ? "需要医护陪同" : "无需医护陪同"
  152. }}</text>
  153. </view>
  154. <view class="line"></view>
  155. </view>
  156. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'patientTransport'">
  157. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  158. <view>
  159. 预约时间 : {{ item.yyjdTime | yyTimeFilter
  160. }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
  161. </view>
  162. <view>
  163. 患者信息 : {{ item.patient ? item.patient.patientName : "-" }}({{
  164. item.patient ? item.patient.bedNum : "-"
  165. }})
  166. </view>
  167. <view v-if="item.goods">
  168. 携带设备 :
  169. <text>{{ item.goods || "暂无" }}</text>
  170. </view>
  171. <view style="word-break: break-all;" v-if="item.workOrderRemark">
  172. 备注信息 :
  173. <text>{{ item.workOrderRemark || "暂无" }}</text>
  174. </view>
  175. <view v-if="item.patient.careLevel">
  176. 护理等级 :
  177. <text :class="[
  178. item.patient.careLevel.value == 0 ||
  179. item.patient.careLevel.value == 1
  180. ? 'red'
  181. : 'green',
  182. ]">{{ item.patient.careLevel.name }}</text>
  183. </view>
  184. <view v-if="item.patient.illnessState">
  185. 病情级别 :
  186. <text :class="{
  187. red:
  188. item.patient.illnessState.value == 2 ||
  189. item.patient.illnessState.value == 3,
  190. }">{{ item.patient.illnessState.name }}</text>
  191. </view>
  192. <view v-if="item.isAccompany === 1 || item.isAccompany === 0">
  193. 陪同情况 :
  194. <text :class="{ red: item.isAccompany === 1 }">{{
  195. item.isAccompany === 1 ? "需要医护陪同" : "无需医护陪同"
  196. }}</text>
  197. </view>
  198. <view class="line"></view>
  199. </view>
  200. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'drugsBag'">
  201. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  202. <view>
  203. 药包编码 : {{ item.drugs ? item.drugs.packid : "无" }}
  204. </view>
  205. <view class="line"></view>
  206. </view>
  207. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'jPBag'">
  208. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  209. <view>
  210. 药包编码 :
  211. {{ item.staticDistri ? item.staticDistri.packid : "无" }}
  212. </view>
  213. <view class="line"></view>
  214. </view>
  215. <view class="page_item_conts" v-else>
  216. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  217. <view>
  218. 预约时间 : {{ item.yyjdTime | yyTimeFilter
  219. }}
  220. </view>
  221. <view style="word-break: break-all;" v-if="item.workOrderRemark">
  222. 备注信息 :
  223. <text>{{ item.workOrderRemark || "暂无" }}</text>
  224. </view>
  225. <view class="line"></view>
  226. </view>
  227. <view class="page_item_cont_B">
  228. <view class="page_item_cont_title" v-if="item.taskType.associationType.value != 'inspect'">
  229. <text> <text class="End">终</text> 点科室 </text>
  230. <text class="text_big" v-for="(dept, i) of item.endDepts" :key="i">{{ dept.dept }}</text>
  231. </view>
  232. <view class="page_item_cont_title" v-if="item.taskType.associationType.value == 'inspect'">
  233. <text> <text class="End">检</text> 查科室 </text>
  234. <text class="text_big" v-for="(dept, i) of item.middleDept" :key="i">{{ dept.dept }}</text>
  235. </view>
  236. </view>
  237. </view>
  238. <view v-if="
  239. item.taskType.associationType.value == 'inspect' ||
  240. item.taskType.associationType.value == 'patientTransport'
  241. ">
  242. <!-- 待抢单 -->
  243. <text class="red" v-if="item.gdState.value == 2">请扫描患者腕带,或者请扫描科室码</text>
  244. <!-- 待到达 -->
  245. <text class="red" v-if="item.gdState.value == 4">请扫描患者腕带</text>
  246. <!-- 执行中 -->
  247. <text class="red" v-if="item.gdState.value == 8">请扫描检查科室码,并扫描患者腕带</text>
  248. <!-- 待送达 -->
  249. <text class="red" v-if="item.gdState.value == 5">请扫描终点科室码,并扫描患者腕带</text>
  250. </view>
  251. <view v-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'clothingGet'">
  252. <!-- 待送达 -->
  253. <text class="red" v-if="item.gdState.value == 5">请扫描终点科室二维码</text>
  254. </view>
  255. <view v-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'clothingSend'">
  256. <!-- 待到达 -->
  257. <text class="red" v-if="item.gdState.value == 4">请扫描起点科室二维码</text>
  258. <!-- 待送达 -->
  259. <text class="red" v-if="item.gdState.value == 5">请扫描终点科室二维码</text>
  260. </view>
  261. <view v-else-if="item.taskType.associationType.value == 'other'">
  262. <!-- 待到达 -->
  263. <text class="red" v-if="item.gdState.value == 4 && item.taskType.carryingCourses[0].checkoutMethod.value == 1">可通过扫描科室码或者拍照进行签到</text>
  264. <text class="red" v-if="item.gdState.value == 4 && item.taskType.carryingCourses[0].checkoutMethod.value == 2">扫描交接人员二维码进行交接</text>
  265. </view>
  266. <!-- 如果不是患者陪检或患者转运或其他,万能交接 -->
  267. <view class="page_item_btn" v-if="
  268. selectedLabelSlots == '执行中' &&
  269. item.taskType.associationType.value != 'patientTransport' &&
  270. item.taskType.associationType.value != 'inspect' &&
  271. item.taskType.associationType.value != 'other' &&
  272. item.taskType.associationType.value != 'ordinary' &&
  273. !(item.taskType.associationType.value == 'specimen' && item.taskType.carryingCourses[1].checkoutMethod.value == 3 && item.gdState.value == 5)
  274. " hover-class="seimin-btn-hover">
  275. <smallScreen :sData="item" :sType="2">扫码</smallScreen>
  276. </view>
  277. <!-- 如果不是静配,药配,标本配送,标本轮巡,万能交接 -->
  278. <view class="page_item_btn_wrap" v-if="
  279. selectedLabelSlots == '执行中' &&
  280. item.taskType.associationType.value != 'jPBag' &&
  281. item.taskType.associationType.value != 'drugsBag' &&
  282. item.taskType.associationType.value != 'specimen' &&
  283. item.taskType.associationType.value != 'specimenPlan' &&
  284. item.taskType.associationType.value != 'ordinary'
  285. ">
  286. <view v-if="!(item.taskType.associationType.value == 'other' && (item.gdState.value == 4 && item.taskType.carryingCourses[0].actionsSwitch || item.gdState.value == 5 && item.taskType.carryingCourses[1].actionsSwitch))" class="page_item_btn" hover-class="seimin-btn-hover">
  287. <smallScreen :sData="item" :sType="1">扫码</smallScreen>
  288. </view>
  289. <!-- 其他临床服务-完成工单-待到达 -->
  290. <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 4 && item.taskType.carryingCourses[0].actionsSwitch" class="page_item_btn" @click="otherCompleteOrder(item)" hover-class="seimin-btn-hover">确认到达</view>
  291. <!-- 其他临床服务-完成工单-待送达 -->
  292. <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 5 && item.taskType.carryingCourses[1].actionsSwitch" class="page_item_btn" @click="otherCompleteOrder(item)" hover-class="seimin-btn-hover">完成工单</view>
  293. <!-- 其他临床服务-拍照 -->
  294. <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 4 && item.taskType.carryingCourses[0].photoSwitch" class="page_item_btn" @click="photographToOther(item, 'start')" hover-class="seimin-btn-hover">拍照</view>
  295. <view v-if="item.taskType.associationType.value != 'other' && item.gdState.value == 4" class="page_item_btn" @click="photograph(item)" hover-class="seimin-btn-hover">拍照</view>
  296. <!-- 其他临床服务-追加 -->
  297. <view v-if="item.taskType.associationType.value == 'other' && item.worker && item.worker.id && clinicalMultiplayerMode === 1 && showAppendUser === 1 && item.clinicalTaskIdsFlag && !item.copyBy" class="page_item_btn" @click="additionalUser(item)" hover-class="seimin-btn-hover">追加</view>
  298. </view>
  299. <!-- 如果是万能交接-血制品 -->
  300. <view class="page_item_btn_wrap" v-if="selectedLabelSlots == '执行中' && item.taskType.associationType.value == 'ordinary' && signType4 && item.taskType.ordinaryField.value == 'blood'">
  301. <!-- 送达交接 -->
  302. <view class="page_item_btn" @click="goTobloodEnd(item)" hover-class="seimin-btn-hover" v-if="delivery === 1 && item.gdState.value == 5">送达交接</view>
  303. <!-- 领血证 -->
  304. <view class="page_item_btn" @click="certificatHandler(item)" hover-class="seimin-btn-hover" v-if="useTakeCode == 1">领血证</view>
  305. </view>
  306. <!-- 如果是万能交接-被服洗涤送回 -->
  307. <view class="page_item_btn" v-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'clothingSend' && item.gdState.value == 5" hover-class="seimin-btn-hover">
  308. <view class="page_item_btn" @click="goToWashingEnd(item)" hover-class="seimin-btn-hover">核对被服</view>
  309. </view>
  310. <view class="page_item_btn" v-if="selectedLabelSlots == '待接单'" @click="showAlerts(item)" hover-class="seimin-btn-hover">接单</view>
  311. </view>
  312. <view class="L-l"></view>
  313. <view class="R-l"></view>
  314. </view>
  315. </scroll-view>
  316. </view>
  317. <view class="bigScreenWrap">
  318. <view class="left" @click="isShowKey" v-if="isNumberKey">
  319. <text class="left-icon newicon newicon-miyue"></text>
  320. <view class="left-title">数字密钥</view>
  321. </view>
  322. <!-- 底部扫一扫 -->
  323. <view class="right" :class="!isNumberKey?'right-100':''">
  324. <bigScreen ref="bigscreen" :isNumberKey="isNumberKey"></bigScreen>
  325. <view class="more" v-if="arrayBigScreen.length"></view>
  326. <picker class="more_picker" @cancel="cancelPicker" @click.stop @change="execFilterBigScreen($event)" :value="indexBigScreen"
  327. :range="arrayBigScreen" range-key="name" v-if="arrayBigScreen.length">
  328. <view class="uni-input">{{ arrayBigScreen[indexBigScreen].name }}</view>
  329. </picker>
  330. </view>
  331. </view>
  332. <!-- 悬浮按钮 -->
  333. <uni-fab :pattern="pattern" :content="content" :direction="direction" @fabClick="fabClick" @trigger="trigger"></uni-fab>
  334. <!-- 弹窗 -->
  335. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  336. @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
  337. <!-- 我的二维码-弹窗 -->
  338. <showMyQrcode v-if="showMyQrcodeModel.disjunctor" :disjunctor="showMyQrcodeModel.disjunctor" @know="closeMyQrcodeModel"></showMyQrcode>
  339. <!-- 领血证-弹窗 -->
  340. <showCertificat v-if="showCertificatModel.disjunctor" :disjunctor="showCertificatModel.disjunctor" :id="showCertificatModel.id" @know="closeCertificatModel"></showCertificat>
  341. <!-- 科室二维码-弹窗 -->
  342. <showDepartmentQrcode v-if="showDepartmentQrcodeModel.disjunctor" :disjunctor="showDepartmentQrcodeModel.disjunctor" @know="closeDepartmentQrcodeModel"></showDepartmentQrcode>
  343. <!-- 手动查询标本弹窗 -->
  344. <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
  345. @ok="speOk" @cancel="speCancel">
  346. </handViewSpecimen>
  347. <!-- 手动查询药品弹窗 -->
  348. <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title"
  349. :disjunctor="drugbagModels.disjunctor" @ok="drugbagOk" @cancel="drugbagCancel">
  350. </handViewDrugsBag>
  351. <!-- 填写交接人工号弹窗 -->
  352. <selectAccount v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  353. @cancel="hosCancel">
  354. </selectAccount>
  355. <!-- 手动查询弹窗 -->
  356. <checkboxModal v-if="checkboxModels.disjunctor" :content="checkboxModels.content" :disjunctor="checkboxModels.disjunctor"
  357. @ok="checkboxOk" @cancel="checkboxCancel">
  358. </checkboxModal>
  359. <!-- 执行中筛选 -->
  360. <uni-drawer width="400px" :visible="isShowExecFilter" mode="right" @close="closeDrawer()">
  361. <view class="execFilterMask">
  362. <view class="execFilter" @click.stop>
  363. <view class="execFilterHeader">
  364. 全部筛选
  365. </view>
  366. <view class="execFilterBody">
  367. <view class="execFilterItem">
  368. <view class="execFilterItemHeader">
  369. 工单状态
  370. </view>
  371. <view class="execFilterItemBody">
  372. <view class="execFilterItemBox" @click="currentId = item.id" :class="{active: item.id == currentId}" v-for="item in array" :key="item.id">
  373. {{item.name}}
  374. </view>
  375. </view>
  376. </view>
  377. <view class="execFilterItem">
  378. <view class="execFilterItemHeader">
  379. 申请科室
  380. </view>
  381. <view class="execFilterItemBody">
  382. <input class="deptName" @click="searchAdm" v-model.trim="deptName" placeholder="请选择科室名称" placeholder-style="color:#cecece" />
  383. </view>
  384. </view>
  385. <view class="execFilterItem">
  386. <view class="execFilterItemHeader">
  387. 任务类型
  388. </view>
  389. <view class="execFilterItemBody">
  390. <uni-data-picker class="value" placeholder="请选择任务类型"
  391. :localdata="taskData" v-model="taskTypeId" :clear-icon="false">
  392. </uni-data-picker>
  393. </view>
  394. </view>
  395. </view>
  396. <view class="execFilterFooter">
  397. <view class="btn" @click="execFilterReset()">重置</view>
  398. <view class="btn" @click="execFilterOk()">完成</view>
  399. </view>
  400. </view>
  401. </view>
  402. </uni-drawer>
  403. <!-- </view> -->
  404. <!-- 被服洗涤弹窗 -->
  405. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  406. @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
  407. <!-- 父级科室弹窗 -->
  408. <showModel :title="models2.title" icon="" :disjunctor="models2.disjunctor" :content="models2.content" @ok="ok2" @cancel="cancel2" :operate="models2.operate" :childrenDeptList="models2.list"></showModel>
  409. <!-- 父级科室弹窗 -->
  410. <showModel :title="models3.title" icon="" :disjunctor="models3.disjunctor" :content="models3.content" @know="know3" @ok="ok3" @cancel="cancel3" :operate="models3.operate" :busyContentList="models3.list"></showModel>
  411. <!-- 示闲弹窗 -->
  412. <showModel :title="models4.title" icon="models4.icon" :disjunctor="models4.disjunctor" :content="models4.content" @know="know4" @ok="ok4" @cancel="cancel4" :operate="models4.operate"></showModel>
  413. <scanner></scanner>
  414. <!-- 动态密钥 -->
  415. <numberKeyModel v-if="showKey" :keyArr="keyArr" @cancel="showKey = false" @confirm="confirmKey($event)"></numberKeyModel>
  416. </view>
  417. </template>
  418. <script>
  419. import selectAccount from "../../components/selectAccount/selectAccount.vue";
  420. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  421. import scanner from "../../components/scanner/scanner.vue";
  422. import showModel from "../../components/showModel/showModel.vue";
  423. import bigScreen from "../../components/bigScreen/bigScreen.vue";
  424. import numberKeyModel from "../../components/numberKeyModel/numberKeyModel.vue";
  425. // https://ext.dcloud.net.cn/plugin?id=144
  426. import uniFab from "@/components/uni-fab/uni-fab.vue";
  427. import uniDrawer from "@/components/uni-drawer/uni-drawer.vue";
  428. import ldSelect from "@/components/ld-select/ld-select.vue";
  429. import MxDatePicker from "@/components/mx-datepicker/mx-datepicker.vue";
  430. import {
  431. get,
  432. post,
  433. SM,
  434. deleteIt,
  435. webHandle
  436. } from "../../http/http.js";
  437. import {
  438. photographTool,
  439. pathUrl
  440. } from "../../tools/photograph.js";
  441. export default {
  442. data() {
  443. return {
  444. workStateList: [],
  445. clothingType: '',//被服回收扫码的类型,dept|user
  446. isShowExecFilter: false,
  447. deptName: '',//科室名称
  448. deptId:null,//科室id
  449. taskTypeId:null,//任务类型id
  450. taskData:[], //任务类型数据
  451. currentId: 0,
  452. otherAssociationTypeId: null,
  453. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  454. workState: '1',
  455. clinicalMultiplayerMode: 0,
  456. showAppendUser: 0,
  457. signType4: false,
  458. delivery: 0,
  459. useTakeCode: 0,
  460. takeCodeType: {},
  461. clinicalTaskIds: [],
  462. other: {
  463. user: {},
  464. data: {},
  465. },
  466. // 手动查询弹窗model
  467. checkboxModels: {
  468. disjunctor: false,
  469. },
  470. // 填写交接人工号弹窗model
  471. hosModels: {
  472. disjunctor: false,
  473. },
  474. currentCode: '', //当前拍照使用的科室二维码
  475. currentData: {}, //当前小扫描的工单对象
  476. // 弹窗model
  477. showMyQrcodeModel: {
  478. disjunctor: false,
  479. },
  480. // 弹窗model
  481. showCertificatModel: {
  482. disjunctor: false,
  483. },
  484. // 弹窗model
  485. showDepartmentQrcodeModel: {
  486. disjunctor: false,
  487. },
  488. SMFlag: true,
  489. // 手动查询标本弹窗model
  490. speModels: {
  491. disjunctor: false,
  492. },
  493. // 手动查询药品弹窗model
  494. drugbagModels: {
  495. disjunctor: false,
  496. },
  497. // 筛选条件
  498. array: [{
  499. id: 0,
  500. name: "全部",
  501. },
  502. {
  503. id: 71,
  504. name: "待到达",
  505. },
  506. {
  507. id: 72,
  508. name: "待送达",
  509. },
  510. {
  511. id: 75,
  512. name: "执行中",
  513. },
  514. ],
  515. // 筛选条件
  516. arrayBigScreen: [],
  517. index: 0,
  518. indexBigScreen: 0,
  519. arrayKey: 0,
  520. arrayKeyBigScreen: 0,
  521. // 当前登录人是否是药房角色
  522. pharmacistFlag: false,
  523. // 抢单的id
  524. qdId: "",
  525. quiltData: {},
  526. // 弹窗model
  527. models: {
  528. disjunctor: false,
  529. },
  530. // 弹窗model
  531. models1: {
  532. disjunctor: false,
  533. },
  534. // 弹窗model
  535. models2: {
  536. disjunctor: false,
  537. },
  538. // 弹窗model
  539. models3: {
  540. disjunctor: false,
  541. },
  542. // 弹窗model
  543. models4: {
  544. disjunctor: false,
  545. },
  546. // 悬浮按钮样式
  547. pattern: {
  548. buttonColor: "#6cc076",
  549. },
  550. // 悬浮按钮展开菜单显示方式
  551. direction: "vertical",
  552. // 悬浮按钮展开菜单内容配置项
  553. content: [{
  554. text: "我的任务",
  555. },],
  556. // 当前选中tab页名称
  557. selectedLabelSlots: "待接单",
  558. // tab页信息
  559. tabs: [{
  560. label: "待接单", //tab页名称
  561. value: "1", //值
  562. num: 0, //数量
  563. },
  564. {
  565. label: "执行中",
  566. value: "2",
  567. num: 0,
  568. },
  569. ],
  570. //列表数据
  571. zxzData: [],
  572. //分页页码
  573. idx: 0,
  574. // 列表项总数
  575. totalNum: -1,
  576. triggered: false, //下拉刷新状态
  577. freshing: false, //上拉加载开关
  578. scroll_top: 0, //距离顶部的距离
  579. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  580. quiltCode: '',
  581. tabType: "", //当前选中项
  582. selectArr: [], //选中项
  583. workData: [],
  584. userId: {
  585. ids: [],
  586. },
  587. code: "",
  588. showKey:false,
  589. keyNum:4, //密钥位数
  590. isNumberKey:false, //是否开启动态密钥
  591. keyArr: []
  592. };
  593. },
  594. components: {
  595. uniDrawer,
  596. MxDatePicker,
  597. ldSelect
  598. },
  599. filters: {
  600. // 自定义管道 yyTime
  601. yyTimeFilter: function(data) {
  602. if (data) {
  603. let nDate = null;
  604. if (typeof data == 'string') {
  605. let arr = data.split(/[-:\s]/);
  606. nDate = new Date(
  607. arr[0] - 0,
  608. arr[1] - 1,
  609. arr[2] - 0,
  610. arr[3] - 0,
  611. arr[4] - 0,
  612. 0
  613. );
  614. } else if (typeof data == 'number') {
  615. nDate = new Date(data);
  616. }
  617. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  618. const date = nDate.getDate().toString().padStart(2, 0);
  619. const hour = nDate.getHours().toString().padStart(2, 0);
  620. const minute = nDate.getMinutes().toString().padStart(2, 0);
  621. return `${month}-${date} ${hour}:${minute}`;
  622. } else {
  623. return "-";
  624. }
  625. },
  626. },
  627. components: {
  628. uniFab,
  629. showModel,
  630. bigScreen,
  631. numberKeyModel,
  632. scanner,
  633. selectAccount,
  634. },
  635. methods: {
  636. confirmKey(data){
  637. this.padChange(data)
  638. this.showKey = false
  639. },
  640. isShowKey(){
  641. this.showKey = true
  642. },
  643. // 获取配置
  644. getConfig() {
  645. let postData = {
  646. idx: 0,
  647. sum: 9999,
  648. hospitalConfig:{
  649. hosId:this.hosId,
  650. model:"all"
  651. }
  652. };
  653. post("/simple/data/fetchDataList/hospitalConfig",postData).then((result) => {
  654. if (result.status == 200) {
  655. this.keyArr = []
  656. for(let i of result.list){
  657. if(i.key=='digitalSecretKey'){
  658. if(i.value==1){
  659. this.isNumberKey = true
  660. }else{
  661. this.isNumberKey = false
  662. }
  663. }else if(i.key=='numberDigitalSecretKey'){
  664. this.keyNum = Number(i.value)
  665. }
  666. }
  667. for(let i = 0; i < this.keyNum; i++){
  668. this.keyArr.push({
  669. value:null
  670. })
  671. }
  672. console.log(444,this.keyArr)
  673. }
  674. });
  675. },
  676. // 标本配送-待送达-运输过程-标本数字交接,则,科室签到不需要填写交接人
  677. validateHandoverSpecimen(){
  678. return post("/simple/data/fetchDataList/taskType", {
  679. "idx": 0,
  680. "sum": 1,
  681. "taskType": {
  682. "hosId": {
  683. "id": this.hosId
  684. },
  685. "associationType": {
  686. "key": "association_types",
  687. "value": "specimen"
  688. }
  689. }
  690. });
  691. },
  692. //科室签到
  693. //trueBigScanner----判断是否大扫描
  694. //bigScanner----判断是否需要交接人
  695. //accountObj----弹窗填写的交接人信息
  696. async orderDeptHandler(bigScanner, accountObj) {
  697. console.log(this.infoDATA);
  698. uni.showLoading({
  699. title: "加载中",
  700. mask: true,
  701. });
  702. if(this.tabType === 'specimen' && this.infoDATA.specimen && this.infoDATA.specimen[0].gdState.value == 5){
  703. let result = await this.validateHandoverSpecimen();
  704. if (result.status == 200) {
  705. if(result.list.length){
  706. // 标本-运送过程-终点科室-标本数字交接
  707. if(result.list[0].carryingCourses[1].checkoutMethod.value == 3){
  708. bigScanner = false;
  709. }
  710. }else{
  711. uni.showToast({
  712. icon: "none",
  713. title: "请配置标本配送任务类型!",
  714. });
  715. uni.hideLoading();
  716. return;
  717. }
  718. }
  719. }
  720. let type = "orderSign/" + this.code;
  721. let list = {
  722. ids: this.userId.ids,
  723. trueBigScanner: ['666']
  724. };
  725. bigScanner && (list.bigScanner = ['666']);
  726. if (accountObj) {
  727. list.handover = [accountObj.accountId];
  728. }
  729. post("/workerOrder/" + type, list).then((res) => {
  730. console.log(this.tabType)
  731. uni.hideLoading();
  732. if (res.status == 200) {
  733. if (this.tabType == 'specimenPlan') {
  734. // -----------------------------
  735. console.log(this.selectArr, '选中工单')
  736. let gd = this.infoDATA.specimenPlan.find(v => v.id == this.selectArr[0]);
  737. let startDeptId = gd.startDept.id; //起点科室id
  738. let isDigitalHandover = gd.taskType.isDigitalHandover; //是否数字交接开关
  739. let signDeptId = res.deptId; //签到的科室id
  740. let gdId = gd.id;
  741. let gdState = gd.gdState.value;
  742. let endDepts = gd.endDepts.map(v => v.id).toString();
  743. uni.navigateTo({
  744. url: `../scanning_djEnd/scanning_djEnd?type=${
  745. this.tabType
  746. }&type1=${res.type}&code=${this.code}&dept=${
  747. res.dept
  748. }&ids=${encodeURIComponent(
  749. JSON.stringify(this.userId.ids)
  750. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&startDeptId=${startDeptId}&isDigitalHandover=${isDigitalHandover}&signDeptId=${signDeptId}&gdId=${gdId}&gdState=${gdState}&endDepts=${endDepts}`,
  751. });
  752. } else if (this.tabType == 'specimen') {
  753. // 同济是false
  754. if (res.deptType && res.deptType.value === 'middleRoom') {
  755. // if (false) {
  756. // 如果是中转科室
  757. uni.navigateTo({
  758. url: `../checkAfterBigScreen/checkAfterBigScreen?type=${
  759. this.tabType
  760. }&type1=${res.type}&code=${this.code}&dept=${
  761. res.dept
  762. }&ids=${encodeURIComponent(
  763. JSON.stringify(this.userId.ids)
  764. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  765. });
  766. } else if(res.type === 'spe-dsd-4'){
  767. // 检验方式是标本数字交接
  768. uni.navigateTo({
  769. url: `/pages/specimenHandoverNew/specimenHandoverNew?type=${
  770. this.tabType
  771. }&type1=${res.type}&code=${this.code}&dept=${
  772. res.dept
  773. }&ids=${encodeURIComponent(
  774. JSON.stringify(this.userId.ids)
  775. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  776. });
  777. } else{
  778. uni.navigateTo({
  779. url: `../scanning_djEnd/scanning_djEnd?type=${
  780. this.tabType
  781. }&type1=${res.type}&code=${this.code}&dept=${
  782. res.dept
  783. }&ids=${encodeURIComponent(
  784. JSON.stringify(this.userId.ids)
  785. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  786. });
  787. }
  788. }
  789. } else if (res.status == "0000") {
  790. this.showSelectAccount();
  791. } else {
  792. this.flag = true;
  793. uni.navigateTo({
  794. url: `../scanning_djEnd/scanning_djEnd?type=${this.tabType}&type1=${
  795. res.type
  796. }&code=${this.code}&dept=${res.dept}&ids=${encodeURIComponent(
  797. JSON.stringify(this.userId.ids)
  798. )}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
  799. });
  800. }
  801. });
  802. },
  803. padChange(scannerCode){
  804. if(!this.isNumberKey){
  805. scannerCode = scannerCode.replace('\n','')
  806. }
  807. if (!this.SMFlag) {
  808. return;
  809. }
  810. let qrcodePrefix = '';
  811. this.SMFlag = false;
  812. // SM().then((content) => {
  813. uni.showLoading({
  814. title: "加载中",
  815. mask: true,
  816. });
  817. //检验二维码的有效性(扫码前必须验证)
  818. post("/dept/scanning", {
  819. content:scannerCode
  820. })
  821. .then((result) => {
  822. this.currentCode = result.code;
  823. this.SMFlag = true;
  824. // 200检测通过,201没有有效期也通过。
  825. if (result.state == 200 || result.state == 201) {
  826. let data = {
  827. code: result.code, //二维码
  828. };
  829. //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
  830. let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
  831. post("/workerOrder/scanCode", { code, hosId: this.hosId })
  832. .then((res) => {
  833. uni.hideLoading();
  834. if (res.status == 200) {
  835. // 扫描标本码
  836. if (res.type == "specimen") {
  837. let infoDATA = {
  838. stype: res.data.stype,
  839. scode: res.data.scode,
  840. patientName: res.data.patientName,
  841. sickRoom: res.data.sickRoom ?
  842. res.data.sickRoom.dept : "-",
  843. checkDept: res.data.checkDept ?
  844. res.data.checkDept.dept : "-",
  845. bedNum: res.data.bedNum,
  846. };
  847. uni.navigateTo({
  848. url: `../scanning_B/scanning_B?res=${encodeURIComponent(
  849. JSON.stringify(res)
  850. )}&infoDATA=${encodeURIComponent(
  851. JSON.stringify(infoDATA)
  852. )}`,
  853. });
  854. } else if (res.type == "patient") {
  855. //如果是患者腕带码
  856. // code: data.code //二维码
  857. res.workOrder = res.workOrder ? res.workOrder : []; //liao
  858. uni.navigateTo({
  859. url: `../scanning_ins/scanning_ins?code=${
  860. data.code
  861. }&infoDATA=${encodeURIComponent(
  862. JSON.stringify(res.data)
  863. )}&workData=${encodeURIComponent(
  864. JSON.stringify(res.workOrder)
  865. )}&patientOrders=${encodeURIComponent(
  866. JSON.stringify(res.patientOrders)
  867. )}`,
  868. });
  869. } else if (res.type == "quickOrder") {
  870. //快捷建单
  871. if(res.data.isDigitalHandover == 1){
  872. uni.navigateTo({
  873. url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  874. JSON.stringify(res.data)
  875. )}`,
  876. });
  877. }else{
  878. uni.navigateTo({
  879. url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
  880. JSON.stringify(res.data)
  881. )}`,
  882. });
  883. }
  884. } else if (res.type == "dept") {
  885. // 扫描科室码
  886. // code: data.code //二维码
  887. let infoDATA = res.data;
  888. console.log(infoDATA)
  889. // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
  890. // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
  891. if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
  892. this.infoDATA = infoDATA;
  893. this.workData = infoDATA.specimen || infoDATA.specimenPlan;
  894. this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
  895. this.code = data.code;
  896. this.selectArr = [];
  897. for (var i = 0; i < this.workData.length; i++) {
  898. this.selectArr.push(this.workData[i].id);
  899. }
  900. this.userId.ids = this.selectArr;
  901. this.orderDeptHandler(true);
  902. }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
  903. // 医废
  904. uni.navigateTo({
  905. url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  906. });
  907. }else{
  908. uni.navigateTo({
  909. url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
  910. JSON.stringify(infoDATA)
  911. )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  912. });
  913. }
  914. } else if (res.type == 'drugsBag') {
  915. //扫药包码
  916. uni.navigateTo({
  917. url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
  918. });
  919. } else if (res.type == 'nucleicAcid') {
  920. //扫核酸码
  921. uni.navigateTo({
  922. url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
  923. });
  924. } else if (res.type == 'blood') {
  925. //扫血制品
  926. // 判断size,多个则进入新页面选择
  927. if(res.size > 1){
  928. uni.navigateTo({
  929. url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
  930. });
  931. } else {
  932. uni.navigateTo({
  933. url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
  934. });
  935. }
  936. } else if (res.type == 'receiveOrder') {
  937. //扫快捷接单
  938. uni.showModal({
  939. title: "提示",
  940. content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
  941. success: function(result) {
  942. if (result.confirm) {
  943. uni.showLoading({
  944. title: "加载中",
  945. mask: true,
  946. });
  947. post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
  948. uni.hideLoading();
  949. if (result.status == 200) {
  950. uni.showModal({
  951. title: "提示",
  952. content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
  953. showCancel: false,
  954. success: function(res) {
  955. if (res.confirm) {
  956. console.log("用户点击确定");
  957. uni.redirectTo({
  958. url: "../receiptpage/receiptpage",
  959. });
  960. } else if (res.cancel) {
  961. console.log("用户点击取消");
  962. }
  963. },
  964. });
  965. } else {
  966. uni.showToast({
  967. icon: "none",
  968. title: result.msg || "接口获取数据失败!",
  969. });
  970. }
  971. });
  972. } else if (result.cancel) {
  973. console.log("用户点击取消");
  974. }
  975. },
  976. });
  977. } else if (res.type == 'bloodTake') {
  978. if(res.data){
  979. //新血制品-扫科室
  980. uni.navigateTo({
  981. url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
  982. });
  983. }else{
  984. // 走type是dept的流程
  985. // 扫描科室码
  986. // code: data.code //二维码
  987. let infoDATA = res.data;
  988. console.log(infoDATA)
  989. // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
  990. // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
  991. if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
  992. this.infoDATA = infoDATA;
  993. this.workData = infoDATA.specimen || infoDATA.specimenPlan;
  994. this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
  995. this.code = data.code;
  996. this.selectArr = [];
  997. for (var i = 0; i < this.workData.length; i++) {
  998. this.selectArr.push(this.workData[i].id);
  999. }
  1000. this.userId.ids = this.selectArr;
  1001. this.orderDeptHandler(true);
  1002. }else{
  1003. uni.navigateTo({
  1004. url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
  1005. JSON.stringify(infoDATA)
  1006. )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  1007. });
  1008. }
  1009. }
  1010. } else if(res.type == 'clinicalWaste'){
  1011. // 医废
  1012. if(res.wasteDetails){
  1013. uni.navigateTo({
  1014. url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
  1015. });
  1016. }else{
  1017. uni.navigateTo({
  1018. url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
  1019. });
  1020. }
  1021. }
  1022. } else {
  1023. if(res.bigScanSpecialMsg){
  1024. uni.navigateTo({
  1025. url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
  1026. });
  1027. }else{
  1028. uni.navigateTo({
  1029. url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
  1030. });
  1031. }
  1032. }
  1033. });
  1034. } else {
  1035. uni.hideLoading();
  1036. uni.showToast({
  1037. icon: "none",
  1038. title: result.info || "接口获取数据失败!",
  1039. });
  1040. }
  1041. })
  1042. // }).catch(err => {
  1043. // this.SMFlag = true;
  1044. // });
  1045. },
  1046. // 搜索科室
  1047. searchAdm(){
  1048. let data = {
  1049. currentId:this.currentId, //工单状态
  1050. taskType:this.taskTypeId, //任务类型
  1051. selectedLabelSlots:this.selectedLabelSlots, //tab选中状态
  1052. taskData:JSON.stringify(this.taskData)
  1053. }
  1054. uni.setStorageSync("admStore",data)
  1055. let setDeptConfg = uni.getStorageSync("setDeptConfg") || {};
  1056. uni.navigateTo({
  1057. url: `../search/search?type=takeOrder&id=${this.id}&changedept=${this.changedept}&quickCombinationId=${setDeptConfg.id || ''}`,
  1058. });
  1059. },
  1060. goTobloodEnd(order){
  1061. uni.navigateTo({
  1062. url: `/pages/newBlood/endOrderSignBlood/endOrderSignBlood?orderIds=${order.id}&deptName=${order.endDepts[0].dept}&deptId=${order.endDepts[0].id}&type=delivery`,
  1063. });
  1064. },
  1065. goToWashingEnd(order){
  1066. uni.navigateTo({
  1067. url: `../quiltWashing/quiltWashingSendSignIn/quiltWashingSendSignIn?orderId=${order.id}&endDeptId=${order.endDepts[0].id}&endDeptName=${order.endDepts[0].dept}`,
  1068. });
  1069. },
  1070. async initList(){
  1071. uni.showLoading({
  1072. title: "加载中",
  1073. mask: true,
  1074. });
  1075. //获取其他临床服务业务类型
  1076. let res = await this.getOtherAssociationTypes();
  1077. let otherAssociationType = res.find(v => v.value === 'other');
  1078. this.otherAssociationTypeId = otherAssociationType ? otherAssociationType.id : null;
  1079. if(this.otherAssociationTypeId){
  1080. // 获取临床服务页面控制开关
  1081. let result = await this.getTaskOtherConfig();
  1082. if (result.status == 200) {
  1083. if(result.list && result.list[0]){
  1084. this.clinicalMultiplayerMode = result.list[0].clinicalMultiplayerMode;
  1085. this.showAppendUser = result.list[0].showAppendUser;
  1086. this.clinicalTaskIds = result.list[0].clinicalTaskIds ? result.list[0].clinicalTaskIds.split(',') : [] ;
  1087. }else{
  1088. this.clinicalMultiplayerMode = 0;
  1089. this.showAppendUser = 0;
  1090. }
  1091. } else {
  1092. this.clinicalMultiplayerMode = 0;
  1093. this.showAppendUser = 0;
  1094. }
  1095. }else{
  1096. uni.showToast({
  1097. icon: 'none',
  1098. title: '未设置其他临床服务业务类型!'
  1099. })
  1100. }
  1101. this.getBloodPageConfig()
  1102. this.waitingOrdersGetNum();
  1103. this.executingOrders(0);
  1104. this.getWorkStateList();
  1105. },
  1106. getWorkStateList(){
  1107. post('/common/common/getDictionary', {
  1108. "type": "list",
  1109. "key": "user_work_state"
  1110. }).then(res => {
  1111. this.workStateList = res;
  1112. });
  1113. },
  1114. // 获取血制品页面控制开关
  1115. async getBloodPageConfig(){
  1116. let result = await this.getTaskBloodConfig();
  1117. if (result.status == 200) {
  1118. if(result.list && result.list[0]){
  1119. let signTypeList = result.list[0].signTypeList || [];
  1120. this.signType4 = signTypeList.some(v => v.value == 4);
  1121. this.delivery = result.list[0].delivery;
  1122. this.useTakeCode = result.list[0].useTakeCode;
  1123. this.takeCodeType = result.list[0].takeCodeType;
  1124. }else{
  1125. this.signType4 = false;
  1126. this.delivery = 0;
  1127. this.useTakeCode = 0;
  1128. this.takeCodeType = {};
  1129. }
  1130. } else {
  1131. this.signType4 = false;
  1132. this.delivery = 0;
  1133. this.useTakeCode = 0;
  1134. this.takeCodeType = {};
  1135. }
  1136. },
  1137. //获取其他临床服务业务类型
  1138. getOtherAssociationTypes(){
  1139. return post('/common/common/getDictionary', {
  1140. "type": "list",
  1141. "key": "association_types"
  1142. });
  1143. },
  1144. // 获取临床服务页面控制开关
  1145. getTaskOtherConfig(){
  1146. return post("/simple/data/fetchDataList/taskTypeConfig", {
  1147. "idx": 0,
  1148. "sum": 10,
  1149. "taskTypeConfig": {
  1150. "hosId": this.hosId,
  1151. "associationType": this.otherAssociationTypeId,
  1152. }
  1153. });
  1154. },
  1155. // 获取血制品页面控制开关
  1156. getTaskBloodConfig(){
  1157. return post("/simple/data/fetchDataList/taskTypeConfig", {
  1158. "idx": 0,
  1159. "sum": 10,
  1160. "taskTypeConfig": {
  1161. "taskTypeDTO": {
  1162. "hosId": {
  1163. "id": this.hosId
  1164. },
  1165. "ordinaryField": {
  1166. "key": "ordinary_field",
  1167. "value": "blood"
  1168. }
  1169. }
  1170. }
  1171. });
  1172. },
  1173. // 手动查询-确认
  1174. checkboxOk(bulkCopy) {
  1175. console.log(bulkCopy);
  1176. this.checkboxModels.disjunctor = false;
  1177. let { user, data } = this.other;
  1178. this.additionalUserCommon(user, data.id, data.worker.id, bulkCopy);
  1179. },
  1180. // 手动查询-取消
  1181. checkboxCancel() {
  1182. this.checkboxModels.disjunctor = false;
  1183. },
  1184. // 手动查询弹窗
  1185. showCheckboxModal(user, data) {
  1186. this.other = {
  1187. user,
  1188. data,
  1189. };
  1190. this.checkboxModels = {
  1191. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  1192. disjunctor: true,
  1193. }
  1194. },
  1195. // 追加陪检人/执行人按钮
  1196. additionalUser(data) {
  1197. if (!this.SMFlag) {
  1198. return;
  1199. }
  1200. this.SMFlag = false;
  1201. console.log(data, 'data');
  1202. SM().then((ress1) => {
  1203. uni.showLoading({
  1204. title: "加载中",
  1205. mask: true,
  1206. });
  1207. //检验二维码的有效性
  1208. post("/dept/scanning", {
  1209. content: ress1,
  1210. taskTypeId: data.taskType.id,
  1211. gdState: data.gdState.id,
  1212. }).then((result) => {
  1213. this.SMFlag = true;
  1214. // this.currentCode = result.code;
  1215. if (result.state == 200 || result.state == 201) {
  1216. console.log(result);
  1217. let user;
  1218. try{
  1219. // json对象字符串
  1220. user = JSON.parse(result.code);
  1221. // 不是json对象字符串
  1222. if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() !== 'object'){
  1223. user = result.code;
  1224. }
  1225. }catch(e){
  1226. user = result.code;
  1227. }
  1228. if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'object' && user.type == 'myQrCode' && user.id && user.name){
  1229. user.qrcode = ress1;
  1230. uni.hideLoading();
  1231. if(data.taskType.associationType.value == 'other'){
  1232. this.showCheckboxModal(user, data);
  1233. }else{
  1234. uni.showModal({
  1235. title: "提示",
  1236. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  1237. success: (res) => {
  1238. if (res.confirm) {
  1239. console.log("用户点击确定");
  1240. this.additionalUserCommon(user, data.id, data.worker.id, false);
  1241. } else if (res.cancel) {
  1242. console.log("用户点击取消");
  1243. }
  1244. },
  1245. });
  1246. }
  1247. }else if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'string'){
  1248. let identityCardNumber = user;
  1249. // 根据身份证获取name
  1250. post("/data/fetchDataList/user", {idx: 0, sum: 1, user: { identityCardNumber }}).then((result) => {
  1251. uni.hideLoading();
  1252. if(result.status == 200){
  1253. result.list = result.list || [];
  1254. if(result.list.length){
  1255. let user = {name: result.list[0].name, identityCardNumber, qrcode: ress1};
  1256. if(data.taskType.associationType.value == 'other'){
  1257. this.showCheckboxModal(user, data);
  1258. }else{
  1259. uni.showModal({
  1260. title: "提示",
  1261. content: `您要最追加的人员为${user.name},您确认要追加吗?`,
  1262. success: (res) => {
  1263. if (res.confirm) {
  1264. console.log("用户点击确定");
  1265. this.additionalUserCommon(user, data.id, data.worker.id, false);
  1266. } else if (res.cancel) {
  1267. console.log("用户点击取消");
  1268. }
  1269. },
  1270. });
  1271. }
  1272. }else{
  1273. uni.navigateTo({
  1274. url: `../result_error/result_error?qrcode=${ress1}&msg=扫描二维码无法找到用户!`,
  1275. });
  1276. }
  1277. }else{
  1278. uni.navigateTo({
  1279. url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
  1280. });
  1281. }
  1282. })
  1283. }else{
  1284. uni.hideLoading();
  1285. uni.navigateTo({
  1286. url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
  1287. });
  1288. }
  1289. } else {
  1290. uni.hideLoading();
  1291. uni.navigateTo({
  1292. url: `../result_error/result_error?qrcode=${ress1}&msg=${result.info || '接口获取数据失败!'}`,
  1293. });
  1294. }
  1295. });
  1296. }).catch(err=>{
  1297. this.SMFlag = true;
  1298. });
  1299. },
  1300. // 追加陪检人/执行人
  1301. additionalUserCommon(user, gdId, workerId, bulkCopy) {
  1302. console.log(user, gdId, workerId, bulkCopy);
  1303. uni.showLoading({
  1304. title: "加载中",
  1305. mask: true,
  1306. });
  1307. // 二维码里有id则传userid,没有则传identityCardNumber
  1308. post("/workerOrder/additionalAccompanyingPersonnel", {
  1309. userId: user.id || undefined,
  1310. identityCardNumber: !user.id ? user.identityCardNumber : undefined,
  1311. gdId,
  1312. workerId,
  1313. bulkCopy: bulkCopy ? 1 : undefined,
  1314. }).then((result) => {
  1315. uni.hideLoading();
  1316. if (result.state == 200) {
  1317. uni.showToast({
  1318. icon: 'none',
  1319. duration: 4000,
  1320. title: '操作成功!'
  1321. })
  1322. uni.redirectTo({
  1323. url: `../receiptpage/receiptpage`,
  1324. });
  1325. } else {
  1326. uni.navigateTo({
  1327. url: `../result_error/result_error?qrcode=${user.qrcode}&msg=${result.msg || '接口获取数据失败!'}`,
  1328. });
  1329. }
  1330. });
  1331. },
  1332. // 前往其他临床服务完成工单确认页面
  1333. otherCompleteOrder(data){
  1334. console.log(data);
  1335. uni.navigateTo({
  1336. url: `../otherCompleteOrder/otherCompleteOrder?orderId=${data.id}&taskType=${data.taskType ? encodeURIComponent(JSON.stringify(data.taskType)) : ''}&order=${data ? encodeURIComponent(JSON.stringify(data)) : ''}`,
  1337. });
  1338. },
  1339. // 手动查询药品-确认
  1340. drugbagOk(data) {
  1341. console.log(data);
  1342. if (!data.id) {
  1343. //没有查询到药品
  1344. uni.showModal({
  1345. title: '提示',
  1346. content: "没有查询到发药单号!",
  1347. showCancel: false,
  1348. success: function(res) {
  1349. if (res.confirm) {
  1350. console.log('用户点击确定');
  1351. } else if (res.cancel) {
  1352. console.log('用户点击取消');
  1353. }
  1354. }
  1355. });
  1356. return;
  1357. }
  1358. this.drugbagModels.disjunctor = false;
  1359. uni.navigateTo({
  1360. url: `/pages/scanning_drug/scanning_drug?drugsBagId=${data.id}`,
  1361. });
  1362. },
  1363. // 手动查询药品-取消
  1364. drugbagCancel() {
  1365. this.drugbagModels.disjunctor = false;
  1366. },
  1367. // 手动查询药品弹窗
  1368. showHandViewDrugsbag() {
  1369. console.log(1)
  1370. this.drugbagModels = {
  1371. title: '填写发药单号',
  1372. disjunctor: true,
  1373. }
  1374. },
  1375. //确定
  1376. ok4() {
  1377. this.models4.disjunctor = false;
  1378. uni.showLoading({
  1379. title: "加载中",
  1380. mask: true,
  1381. });
  1382. post("/user/data/changeWorkState", {
  1383. workState: this.workStateList.find(v => v.value == 1).id,
  1384. }).then((res) => {
  1385. uni.hideLoading();
  1386. if (res.status == 200) {
  1387. this.getCurrentUserNow();
  1388. this.models4 = {
  1389. disjunctor: true,
  1390. title: "提示",
  1391. content: `示闲成功`,
  1392. icon: "warn",
  1393. operate: {
  1394. know: "知道了",
  1395. },
  1396. };
  1397. }else{
  1398. uni.showToast({
  1399. icon: "none",
  1400. title: res.msg || "接口获取数据失败!",
  1401. });
  1402. }
  1403. });
  1404. },
  1405. //取消
  1406. cancel4() {
  1407. this.models4.disjunctor = false;
  1408. },
  1409. //取消
  1410. know4() {
  1411. this.models4.disjunctor = false;
  1412. },
  1413. // 示闲
  1414. showLeisure(){
  1415. this.models4 = {
  1416. disjunctor: true,
  1417. title: "提示",
  1418. content: "您确认要示闲吗?",
  1419. icon: "warn",
  1420. operate: {
  1421. ok: "确定",
  1422. cancel: "取消",
  1423. },
  1424. };
  1425. },
  1426. // 示忙
  1427. showBusy(){
  1428. uni.showLoading({
  1429. title: "加载中",
  1430. mask: true,
  1431. });
  1432. let postData = {"idx":0,"workScheme":{"status":1,"hosId":this.hosId},"sum":1};
  1433. post("/simple/data/fetchDataList/workScheme", postData).then((res) => {
  1434. uni.hideLoading();
  1435. if (res.status == 200) {
  1436. let config = res.list.length ? res.list[0] : {};
  1437. let list = [];
  1438. for (let key in config) {
  1439. if(key.includes('busyContent') && config[key]){
  1440. list.push({
  1441. busyContent: config[key],
  1442. busyMinute: config['busyMinute' + key.replace('busyContent', '')],
  1443. });
  1444. }
  1445. }
  1446. this.models3 = {
  1447. disjunctor: true,
  1448. title: "提示",
  1449. content: "请选择暂停工作的原因。",
  1450. icon: "warn",
  1451. list,
  1452. operate: {
  1453. cancel: "取消",
  1454. },
  1455. };
  1456. } else {
  1457. uni.showToast({
  1458. icon: "none",
  1459. title: res.msg || "接口获取数据失败!",
  1460. });
  1461. }
  1462. });
  1463. },
  1464. // 手动查询标本-确认
  1465. speOk(data) {
  1466. console.log(data);
  1467. if (!data.id) {
  1468. //没有查询到标本
  1469. uni.showModal({
  1470. title: '提示',
  1471. content: "没有查询到标本!",
  1472. showCancel: false,
  1473. success: function(res) {
  1474. if (res.confirm) {
  1475. console.log('用户点击确定');
  1476. } else if (res.cancel) {
  1477. console.log('用户点击取消');
  1478. }
  1479. }
  1480. });
  1481. return;
  1482. }
  1483. this.speModels.disjunctor = false;
  1484. let infoDATA = {
  1485. stype: data.stype,
  1486. scode: data.scode,
  1487. patientName: data.patientName,
  1488. sickRoom: data.sickRoom ?
  1489. data.sickRoom.dept : "-",
  1490. checkDept: data.checkDept ?
  1491. data.checkDept.dept : "-",
  1492. bedNum: data.bedNum,
  1493. };
  1494. uni.navigateTo({
  1495. url: `../scanning_B/scanning_B?res=${encodeURIComponent(
  1496. JSON.stringify({data,status:666,scanCodeSpecimenOrderSign:data.scanCodeSpecimenOrderSign,workOrder:data.workOrderDTO})
  1497. )}&infoDATA=${encodeURIComponent(
  1498. JSON.stringify(infoDATA)
  1499. )}`,
  1500. });
  1501. },
  1502. // 手动查询标本-取消
  1503. speCancel() {
  1504. this.speModels.disjunctor = false;
  1505. },
  1506. // 手动查询标本弹窗
  1507. showHandViewSpecimen() {
  1508. this.speModels = {
  1509. title: '填写标本编码',
  1510. disjunctor: true,
  1511. }
  1512. },
  1513. // 执行中筛选
  1514. // execFilter({
  1515. // detail: {
  1516. // value
  1517. // }
  1518. // }) {
  1519. // this.index = value;
  1520. // this.arrayKey = this.array[value].id;
  1521. // this.zxzData = [];
  1522. // this.totalNum = -1;
  1523. // this.idx = 0;
  1524. // this.selectedLabelSlots = "执行中";
  1525. // this.executingOrders(0);
  1526. // },
  1527. // 获取任务类型
  1528. getTaskData(){
  1529. let data = {
  1530. idx:0,
  1531. sum: 9999,
  1532. };
  1533. let url = null
  1534. if(this.selectedLabelSlots=='待接单'){
  1535. url = '/workerOrder/waitingOrdersByTaskType'
  1536. }else{
  1537. url = '/workerOrder/executingOrdersByTaskType'
  1538. }
  1539. post(url, data).then(res => {
  1540. this.taskData = res.data.map(i=>{
  1541. return {
  1542. text:i.name+'('+i.count+')',
  1543. value:i.id
  1544. }
  1545. })
  1546. });
  1547. },
  1548. closeDrawer() {
  1549. this.isShowExecFilter = false;
  1550. let data = uni.getStorageSync("admStore")
  1551. data.isSearch = false
  1552. uni.setStorageSync("admStore",data)
  1553. },
  1554. // 执行中筛选
  1555. execFilter() {
  1556. this.getTaskData()
  1557. this.isShowExecFilter = true;
  1558. },
  1559. // 筛选确定之后数据操作
  1560. setScreenData(){
  1561. let data = {
  1562. deptName:this.deptName,
  1563. deptId:this.deptId,
  1564. currentId:this.currentId, //工单状态
  1565. taskType:this.taskTypeId, //任务类型
  1566. selectedLabelSlots:this.selectedLabelSlots, //tab选中状态
  1567. taskData:JSON.stringify(this.taskData),
  1568. isSearch:false
  1569. }
  1570. uni.setStorageSync("admStore",data)
  1571. },
  1572. // 执行中确定
  1573. execFilterOk() {
  1574. this.isShowExecFilter = false;
  1575. this.zxzData = [];
  1576. this.totalNum = -1;
  1577. this.idx = 0;
  1578. this.setScreenData()
  1579. if (this.selectedLabelSlots == "待接单") {
  1580. this.waitingOrders(0);
  1581. } else if (this.selectedLabelSlots == "执行中") {
  1582. this.executingOrders(0);
  1583. }
  1584. },
  1585. // 执行中重置
  1586. execFilterReset() {
  1587. this.currentId = 0;
  1588. this.deptName = '';
  1589. this.deptId = ''//科室id
  1590. this.taskTypeId = '' //任务类型
  1591. uni.setStorageSync("admStore",{})
  1592. },
  1593. cancelPicker(){
  1594. },
  1595. // 大扫描筛选
  1596. execFilterBigScreen({
  1597. detail: {
  1598. value
  1599. }
  1600. }) {
  1601. this.indexBigScreen = value;
  1602. this.arrayKeyBigScreen = this.arrayBigScreen[value].id;
  1603. console.log(this.arrayKeyBigScreen);
  1604. console.log(this.$refs.bigscreen);
  1605. this.$refs.bigscreen.Scanning(this.arrayKeyBigScreen);
  1606. },
  1607. // 获取科室二维码设置开关
  1608. getMenu() {
  1609. let menu = uni.getStorageSync("userData").menu;
  1610. //判断当前登陆人具体角色 start
  1611. let roles = uni.getStorageSync("userData").user.role;
  1612. this.pharmacistFlag = roles.some(
  1613. (item) => item.rolecode === "pharmacist"
  1614. );
  1615. //判断当前登陆人具体角色 end
  1616. // console.log(menu);
  1617. this.arrayBigScreen = [];
  1618. menu.forEach((item) => {
  1619. if (item.link === "wxInspect") {
  1620. this.content.push({
  1621. text: "检查信息",
  1622. });
  1623. } else if (item.link === "wxPatient") {
  1624. this.content.push({
  1625. text: "患者信息",
  1626. });
  1627. } else if (item.link === "wxPharmacy") {
  1628. // 如果是配药师人员,则增加药房
  1629. if (this.pharmacistFlag) {
  1630. this.content.push({
  1631. text: "药房",
  1632. });
  1633. }
  1634. } else if (item.link === "wxCode") {
  1635. this.content.push({
  1636. text: "二维码设置",
  1637. });
  1638. } else if (item.link === "wxSpecimenEntry") {
  1639. this.content.push({
  1640. text: "标本录入",
  1641. });
  1642. } else if (item.link === "wxDrugsbagEntry") {
  1643. this.content.push({
  1644. text: "药品录入",
  1645. });
  1646. } else if (item.link === "workState" && this.workState == 1) {
  1647. this.content.push({
  1648. text: "示闲",
  1649. });
  1650. } else if (item.link === "workState" && this.workState == 2) {
  1651. this.content.push({
  1652. text: "示忙",
  1653. });
  1654. } else if (item.link === "sendBuild") {
  1655. this.content.push({
  1656. text: "送回发起",
  1657. });
  1658. } else if (item.link === "sendHandover") {
  1659. this.content.push({
  1660. text: "领取交接",
  1661. });
  1662. } else if (item.link === "medicalWasteOut") {
  1663. this.content.push({
  1664. text: "医废出库",
  1665. });
  1666. } else if (item.link === "wxTakeMedicine") {
  1667. this.content.push({
  1668. text: "摆药取药",
  1669. });
  1670. } else if (item.link === "myQrcode") {
  1671. this.content.push({
  1672. text: "我的二维码",
  1673. });
  1674. } else if (item.link === "departmentQrcode") {
  1675. this.content.push({
  1676. text: "科室二维码",
  1677. });
  1678. } else if (item.link === "formManagementWechat") {
  1679. this.content.push({
  1680. text: "查看表单",
  1681. });
  1682. } else if (item.link === "BIAOBEN") {
  1683. this.arrayBigScreen.push({
  1684. id: 'BIAOBEN|$|',
  1685. name: "标本",
  1686. });
  1687. } else if (item.link === "YAOPING") {
  1688. this.arrayBigScreen.push({
  1689. id: 'YAOPING|$|',
  1690. name: "药品",
  1691. });
  1692. } else if (item.link === "HUANZHE") {
  1693. this.arrayBigScreen.push({
  1694. id: 'HUANZHE|$|',
  1695. name: "患者",
  1696. });
  1697. } else if (item.link === "XIEZHIPING") {
  1698. this.arrayBigScreen.push({
  1699. id: 'XIEZHIPING|$|',
  1700. name: "血制品",
  1701. });
  1702. } else if (item.link === "KJJD") {
  1703. this.arrayBigScreen.push({
  1704. id: 'KJJD|$|',
  1705. name: "快捷建单",
  1706. });
  1707. } else if (item.link === "kuaijiejiedan") {
  1708. this.arrayBigScreen.push({
  1709. id: 'kuaijiejiedan|$|',
  1710. name: "快捷接单",
  1711. });
  1712. } else if (item.link === "quickOrderAcceptanceWx") {
  1713. this.content.push({
  1714. text: "快捷接单",
  1715. });
  1716. } else if (item.link === "wxQuiltRecovery") {
  1717. this.content.push({
  1718. text: "被服回收",
  1719. });
  1720. }
  1721. });
  1722. },
  1723. // 拍照
  1724. photograph(data) {
  1725. photographTool(data);
  1726. },
  1727. // 如果不是静配,药配,标本配送,标本轮巡
  1728. // 科室签到(小扫描)-拍照
  1729. nextDeptOrder_ss(data, accountObj) {
  1730. console.log(this.currentCode);
  1731. let isKs = 0;
  1732. let ids = [];
  1733. let id = data.id;
  1734. ids.push(id);
  1735. let list = {
  1736. code: "",
  1737. ids: ids,
  1738. };
  1739. let code = "";
  1740. let type = "";
  1741. if (this.currentCode) {
  1742. let gdStateValue = data.gdState.value; //工单状态value
  1743. let associationTypeValue = data.taskType.associationType.value; //关联类型value
  1744. // 其他临床服务,并且工单状态是待到达||工单状态待送达
  1745. if (
  1746. (associationTypeValue == "other" &&
  1747. gdStateValue == "4") ||
  1748. gdStateValue == "5"
  1749. ) {
  1750. code = this.currentCode;
  1751. type = "orderSign/" + code;
  1752. list = {
  1753. ids
  1754. };
  1755. if (accountObj) {
  1756. list.handover = [accountObj.accountId];
  1757. }
  1758. isKs = 1;
  1759. }
  1760. uni.showLoading({
  1761. title: "加载中",
  1762. mask: true,
  1763. });
  1764. post("/workerOrder/" + type, list).then((res) => {
  1765. uni.hideLoading();
  1766. if (res) {
  1767. if (res.status == 200) {
  1768. if (
  1769. gdStateValue == "4" &&
  1770. associationTypeValue == "other"
  1771. ) {
  1772. uni.navigateTo({
  1773. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  1774. });
  1775. }
  1776. if (gdStateValue == "5") {
  1777. uni.navigateTo({
  1778. url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
  1779. });
  1780. }
  1781. } else {
  1782. uni.navigateTo({
  1783. url: `../../pages/scanning_Result/scanning_Result?type=${
  1784. associationTypeValue
  1785. }&type1=${res.type}&id=${data.id}&status=600&msg=${
  1786. res.msg
  1787. }&taskTypeId=${
  1788. this.infoDATA.taskType.id
  1789. }&isKs=${isKs}&model=${encodeURIComponent(
  1790. JSON.stringify(res)
  1791. )}&qrcode=${this.currentCode}`,
  1792. });
  1793. }
  1794. } else {
  1795. uni.navigateTo({
  1796. url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}&qrcode=${this.currentCode}`,
  1797. });
  1798. }
  1799. });
  1800. }
  1801. },
  1802. // 填写交接人工号-确认
  1803. hosOk(data) {
  1804. console.log(data);
  1805. const {
  1806. accountName,
  1807. account,
  1808. accountId
  1809. } = data;
  1810. if (!accountName && !account) {
  1811. //没有填写交接人
  1812. uni.showModal({
  1813. title: '提示',
  1814. content: "请填写交接人工号!",
  1815. showCancel: false,
  1816. success: function(res) {
  1817. if (res.confirm) {
  1818. console.log('用户点击确定');
  1819. } else if (res.cancel) {
  1820. console.log('用户点击取消');
  1821. }
  1822. }
  1823. });
  1824. return;
  1825. } else if (!accountName && account || accountName && !account) {
  1826. //没有填写交接人
  1827. uni.showModal({
  1828. title: '提示',
  1829. content: "请填写正确的交接人工号!",
  1830. showCancel: false,
  1831. success: function(res) {
  1832. if (res.confirm) {
  1833. console.log('用户点击确定');
  1834. } else if (res.cancel) {
  1835. console.log('用户点击取消');
  1836. }
  1837. }
  1838. });
  1839. return;
  1840. }
  1841. this.hosModels.disjunctor = false;
  1842. let associationTypeValue = this.currentData.taskType.associationType.value;
  1843. console.log(associationTypeValue)
  1844. this.uploadToOther(this.currentData, data, 'start');
  1845. },
  1846. // 填写交接人工号-取消
  1847. hosCancel() {
  1848. this.hosModels.disjunctor = false;
  1849. },
  1850. // 填写交接人工号弹窗
  1851. showSelectAccount() {
  1852. this.hosModels = {
  1853. disjunctor: true,
  1854. }
  1855. },
  1856. // 拍照-上传
  1857. uploadToOther(data, accountObj, type){
  1858. // 其他临床服务拍照签到
  1859. console.log(data, 1111);
  1860. let id_seimin;
  1861. let asTypeValue_seimin;
  1862. let gdStateValue_seimin;
  1863. if (data.status != 200 && data.status !== undefined) {
  1864. id_seimin = data.id;
  1865. asTypeValue_seimin = data.type;
  1866. gdStateValue_seimin = JSON.parse(data.model).gdstate2; //type改成gdstate
  1867. } else {
  1868. id_seimin = data.id;
  1869. asTypeValue_seimin = data.taskType.associationType.value;
  1870. gdStateValue_seimin = data.gdState.value;
  1871. }
  1872. //#ifdef H5
  1873. uni.chooseImage({
  1874. count: 1,
  1875. sourceType: ['camera'],
  1876. success: (chooseImageRes) => {
  1877. console.log(chooseImageRes, pathUrl)
  1878. const tempFilePaths = chooseImageRes.tempFilePaths;
  1879. const tempFiles = chooseImageRes.tempFiles;
  1880. let tp = tempFilePaths[0];
  1881. uni.showLoading({
  1882. mask: true,
  1883. title: '加载中'
  1884. });
  1885. post('/workerOrder/findRecordInfoByOrderId', {
  1886. orderId: id_seimin,
  1887. gdOperate: 21,
  1888. }).then(result => {
  1889. console.log(result)
  1890. if (result.state == 200) {
  1891. uni.getImageInfo({
  1892. src: tp,
  1893. success: (res) => {
  1894. console.log('压缩前', res)
  1895. let canvasWidth = res.width //图片原始长宽
  1896. let canvasHeight = res.height
  1897. let img = new Image()
  1898. img.src = res.path
  1899. let canvas = document.createElement('canvas');
  1900. let ctx = canvas.getContext('2d')
  1901. canvas.width = canvasWidth
  1902. canvas.height = canvasHeight
  1903. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
  1904. canvas.toBlob((fileSrc) => {
  1905. tp = window.URL.createObjectURL(fileSrc)
  1906. console.log('压缩后', tp);
  1907. uni.uploadFile({
  1908. url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
  1909. filePath: tp,
  1910. name: 'file',
  1911. formData: {
  1912. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
  1913. 0].path.split(
  1914. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  1915. },
  1916. success: (uploadFileRes) => {
  1917. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  1918. this.nextDeptOrder_ss(data, accountObj, type);
  1919. },
  1920. fail: err => {
  1921. console.error(err);
  1922. uni.hideLoading();
  1923. uni.showToast({
  1924. icon: 'none',
  1925. title: '上传失败',
  1926. duration: 2000
  1927. });
  1928. }
  1929. });
  1930. }, 'image/jpeg', 0.3)
  1931. },
  1932. fail: function () {
  1933. uni.hideLoading();
  1934. uni.showToast({
  1935. icon: 'none',
  1936. title: '上传失败',
  1937. duration: 2000
  1938. });
  1939. }
  1940. })
  1941. } else {
  1942. uni.hideLoading();
  1943. uni.showToast({
  1944. icon: "none",
  1945. title: result.msg || "接口获取数据失败!",
  1946. });
  1947. }
  1948. })
  1949. }
  1950. });
  1951. //#endif
  1952. //#ifdef APP-PLUS
  1953. uni.chooseImage({
  1954. count: 1,
  1955. sourceType: ['camera'],
  1956. sizeType: ['compressed'],
  1957. success: (chooseImageRes) => {
  1958. console.log(chooseImageRes, pathUrl)
  1959. const tempFilePaths = chooseImageRes.tempFilePaths;
  1960. const tempFiles = chooseImageRes.tempFiles;
  1961. let tp = tempFilePaths[0];
  1962. uni.showLoading({
  1963. mask: true,
  1964. title: '加载中'
  1965. });
  1966. post('/workerOrder/findRecordInfoByOrderId', {
  1967. orderId: id_seimin,
  1968. gdOperate: 21,
  1969. }).then(result => {
  1970. console.log(result)
  1971. if (result.state == 200) {
  1972. uni.compressImage({
  1973. src: tp,
  1974. quality: 30,
  1975. success: (res) => {
  1976. console.log('压缩前', res)
  1977. tp = res.tempFilePath;
  1978. console.log('压缩后', tp);
  1979. uni.uploadFile({
  1980. url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
  1981. filePath: tp,
  1982. name: 'file',
  1983. formData: {
  1984. 'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
  1985. 0].path.split(
  1986. /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
  1987. },
  1988. success: (uploadFileRes) => {
  1989. console.log(uploadFileRes, 10086, asTypeValue_seimin);
  1990. this.nextDeptOrder_ss(data, accountObj, type);
  1991. },
  1992. fail: err => {
  1993. console.error(err);
  1994. uni.hideLoading();
  1995. uni.showToast({
  1996. icon: 'none',
  1997. title: '上传失败',
  1998. duration: 2000
  1999. });
  2000. }
  2001. });
  2002. },
  2003. fail: function () {
  2004. uni.hideLoading();
  2005. uni.showToast({
  2006. icon: 'none',
  2007. title: '上传失败',
  2008. duration: 2000
  2009. });
  2010. }
  2011. })
  2012. } else {
  2013. uni.hideLoading();
  2014. uni.showToast({
  2015. icon: "none",
  2016. title: result.msg || "接口获取数据失败!",
  2017. });
  2018. }
  2019. })
  2020. }
  2021. });
  2022. //#endif
  2023. },
  2024. // 拍照-其他
  2025. async photographToOther(data, type) {
  2026. this.currentData = data;
  2027. uni.showLoading({
  2028. title: "加载中",
  2029. mask: true,
  2030. });
  2031. // 其他临床服务
  2032. let result = await post("/dept/scanning", {
  2033. content: type === 'start' ? data.startDept.qrcode : data.endDepts[0].qrcode,
  2034. taskTypeId: data.taskType.id,
  2035. gdState: data.gdState.id,
  2036. });
  2037. uni.hideLoading();
  2038. this.currentCode = result.code;
  2039. if (result.state == 200 || result.state == 201) {
  2040. uni.showModal({
  2041. title: '提示',
  2042. content: '请尽量拍摄角度覆盖清洁区域?',
  2043. success: (res) => {
  2044. if (res.confirm) {
  2045. if (result.account) {
  2046. this.uploadToOther(data, {
  2047. account: result.account,
  2048. accountName: result.name,
  2049. accountId: result.id,
  2050. }, type);
  2051. } else {
  2052. this.uploadToOther(data, undefined, type);
  2053. }
  2054. } else if (res.cancel) {
  2055. console.log('用户点击取消');
  2056. }
  2057. }
  2058. });
  2059. } else if (result.state == '0000') {
  2060. this.showSelectAccount();
  2061. } else {
  2062. uni.showToast({
  2063. icon: "none",
  2064. title: result.info || "接口获取数据失败!",
  2065. });
  2066. }
  2067. },
  2068. fabClick(){
  2069. },
  2070. // 悬浮按钮点击事件
  2071. trigger(e) {
  2072. if (e.item.text === "我的任务") {
  2073. uni.navigateTo({
  2074. url: "../mypage/mypage",
  2075. });
  2076. } else if (e.item.text === "退出登录") {
  2077. // 假登录
  2078. uni.showToast({
  2079. title: "退出成功!",
  2080. });
  2081. let ip = uni.getStorageSync("ip"); //记住域名或ip
  2082. let username = uni.getStorageSync("username"); //记住用户名
  2083. let password = uni.getStorageSync("password"); //记住密码
  2084. let savePasswordTime = uni.getStorageSync("savePasswordTime"); //记住密码的时间戳
  2085. let clientid = uni.getStorageSync("clientid");
  2086. uni.clearStorageSync();
  2087. if (username) {
  2088. uni.setStorageSync("ip", ip); //记住域名或ip
  2089. uni.setStorageSync("username", username); //记住用户名
  2090. uni.setStorageSync("password", password); //记住密码
  2091. uni.setStorageSync("savePasswordTime", savePasswordTime); //记住密码的时间戳
  2092. }
  2093. uni.setStorageSync("clientid", clientid);
  2094. uni.navigateTo({
  2095. url: "../homePage/homePage",
  2096. });
  2097. // 假登录
  2098. deleteIt("/auth/logout2").then((result) => {
  2099. if (result.status == 200) {
  2100. uni.showToast({
  2101. title: "退出成功!",
  2102. });
  2103. let ip = uni.getStorageSync("ip"); //记住域名或ip
  2104. let username = uni.getStorageSync("username"); //记住用户名
  2105. let password = uni.getStorageSync("password"); //记住密码
  2106. let clientid = uni.getStorageSync("clientid");
  2107. uni.clearStorageSync();
  2108. uni.setStorageSync("ip", ip); //记住域名或ip
  2109. uni.setStorageSync("username", username); //记住用户名
  2110. uni.setStorageSync("password", password); //记住密码
  2111. uni.setStorageSync("clientid", clientid);
  2112. uni.navigateTo({
  2113. url: "../homePage/homePage",
  2114. });
  2115. } else {
  2116. uni.showToast({
  2117. icon: "none",
  2118. title: result.msg || "接口获取数据失败!",
  2119. });
  2120. }
  2121. });
  2122. } else if (e.item.text === "药房") {
  2123. uni.navigateTo({
  2124. url: "../pharmacy/pharmacy",
  2125. });
  2126. } else if (e.item.text === "患者信息") {
  2127. uni.navigateTo({
  2128. url: "../patientInformationList/patientInformationList",
  2129. });
  2130. } else if (e.item.text === "负责科室") {
  2131. if (uni.getStorageSync("setDepts")) {
  2132. uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
  2133. }
  2134. let obj = uni.getStorageSync("setDeptConfg");
  2135. uni.navigateTo({
  2136. url: `../setDept/setDept?configName=${obj.configName}&id=${obj.id}&changedept=1`,
  2137. });
  2138. } else if (e.item.text === "检查信息") {
  2139. uni.navigateTo({
  2140. url: "../inspectList/inspectList",
  2141. });
  2142. } else if (e.item.text === "二维码设置") {
  2143. uni.navigateTo({
  2144. url: "../settingCode/settingCode",
  2145. });
  2146. } else if (e.item.text === "标本录入") {
  2147. this.showHandViewSpecimen();
  2148. } else if (e.item.text === "药品录入") {
  2149. this.showHandViewDrugsbag();
  2150. } else if (e.item.text === "示忙") {
  2151. this.showLeisure();
  2152. } else if (e.item.text === "示闲") {
  2153. this.showBusy();
  2154. } else if (e.item.text === "摆药取药") {
  2155. this.handleTakeMedicine()
  2156. } else if (e.item.text === "我的二维码") {
  2157. this.myQrcodeHandler()
  2158. } else if (e.item.text === "科室二维码") {
  2159. this.departmentQrcodeHandler()
  2160. } else if (e.item.text === "查看表单") {
  2161. uni.navigateTo({
  2162. url: "../formManagementWechat/formManagementWechat",
  2163. });
  2164. } else if (e.item.text === "快捷接单") {
  2165. uni.navigateTo({
  2166. url: "../quickOrderAcceptanceWx/quickOrderAcceptanceWx",
  2167. });
  2168. } else if (e.item.text === "被服回收") {
  2169. this.quiltScan();
  2170. } else if (e.item.text === "送回发起") {
  2171. uni.navigateTo({
  2172. url: "/pages/quiltWashing/quiltWashingSendSelectDept/quiltWashingSendSelectDept",
  2173. });
  2174. } else if (e.item.text === "领取交接") {
  2175. this.quiltScan_send();
  2176. } else if (e.item.text === "医废出库") {
  2177. uni.navigateTo({
  2178. url: "/pages/medicalWaste/medicalWasteSelect/medicalWasteSelect",
  2179. });
  2180. }
  2181. },
  2182. //确定
  2183. ok1() {
  2184. this.models1.disjunctor = false;
  2185. uni.showLoading({
  2186. title: "加载中",
  2187. mask: true,
  2188. });
  2189. let startDeptId, startDeptName, handoverId, handoverName;
  2190. if(this.clothingType === 'user'){
  2191. startDeptId = this.quiltData.dept.id;
  2192. startDeptName = this.quiltData.dept.dept;
  2193. handoverId = this.quiltData.id;
  2194. handoverName = this.quiltData.name;
  2195. }else if(this.clothingType === 'dept'){
  2196. startDeptId = this.quiltData.id;
  2197. startDeptName = this.quiltData.dept;
  2198. handoverId = undefined;
  2199. handoverName = '';
  2200. }
  2201. post("/transflow/createOrTakeOrder", {
  2202. type: 'clothingGet',
  2203. id: 0,
  2204. startDeptId,
  2205. hosId: this.hosId,
  2206. handoverId,
  2207. }).then((res) => {
  2208. uni.hideLoading();
  2209. if (res.data && res.data.state == 200) {
  2210. uni.navigateTo({
  2211. url: `../quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn?quiltCode=${this.quiltCode}&startDeptId=${startDeptId}&startDeptName=${startDeptName}&orderId=${res.data.orderId}&name=${handoverName}`,
  2212. });
  2213. }else{
  2214. uni.showToast({
  2215. icon: "none",
  2216. title: res.data ? res.data.msg : "接口获取数据失败!",
  2217. });
  2218. }
  2219. });
  2220. },
  2221. //取消
  2222. cancel1() {
  2223. this.models1.disjunctor = false;
  2224. },
  2225. // 被服回收弹窗
  2226. showQuiltData(data) {
  2227. this.quiltData = data;
  2228. let content = '';
  2229. if(this.clothingType === 'user'){
  2230. content = `您扫描的是<strong class="red">${data.name}</strong>的工号,是否建立<strong class="red">${data.dept.dept}</strong>的被服回收工单吗?`;
  2231. }else if(this.clothingType === 'dept'){
  2232. content = `您扫描的科室码,是否建立<strong class="red">${data.dept}</strong>的被服回收工单吗?`;
  2233. }
  2234. this.models1 = {
  2235. disjunctor: true,
  2236. title: "提示",
  2237. content,
  2238. icon: "warn",
  2239. operate: {
  2240. ok: "建立工单",
  2241. cancel: "取消",
  2242. },
  2243. };
  2244. },
  2245. //确定
  2246. ok2(deptDto) {
  2247. console.log(deptDto);
  2248. this.models2.disjunctor = false;
  2249. uni.showLoading({
  2250. title: "加载中",
  2251. mask: true,
  2252. });
  2253. let startDeptId, startDeptName, handoverId, handoverName;
  2254. if(this.clothingType === 'user'){
  2255. startDeptId = deptDto.id;
  2256. startDeptName = deptDto.dept;
  2257. handoverId = this.quiltData.id;
  2258. handoverName = this.quiltData.name;
  2259. }else if(this.clothingType === 'dept'){
  2260. startDeptId = deptDto.id;
  2261. startDeptName = deptDto.dept;
  2262. handoverId = undefined;
  2263. handoverName = '';
  2264. }
  2265. post("/transflow/createOrTakeOrder", {
  2266. type: 'clothingGet',
  2267. id: 0,
  2268. startDeptId,
  2269. hosId: this.hosId,
  2270. handoverId,
  2271. }).then((res) => {
  2272. uni.hideLoading();
  2273. if (res.data && res.data.state == 200) {
  2274. uni.navigateTo({
  2275. url: `../quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn?quiltCode=${this.quiltCode}&startDeptId=${startDeptId}&startDeptName=${startDeptName}&orderId=${res.data.orderId}&name=${handoverName}`,
  2276. });
  2277. }else{
  2278. uni.showToast({
  2279. icon: "none",
  2280. title: res.data ? res.data.msg : "接口获取数据失败!",
  2281. });
  2282. }
  2283. });
  2284. },
  2285. //取消
  2286. cancel2() {
  2287. this.models2.disjunctor = false;
  2288. },
  2289. showParentQuiltData(data){
  2290. this.quiltData = data;
  2291. // 判断是否是父级科室
  2292. let startDeptId, startDeptName, handoverId, handoverName, content;
  2293. if(this.clothingType === 'user'){
  2294. startDeptId = this.quiltData.dept.id;
  2295. startDeptName = this.quiltData.dept.dept;
  2296. handoverId = this.quiltData.id;
  2297. handoverName = this.quiltData.name;
  2298. content = `您扫描的是<strong class="red">${handoverName}</strong>的工号,科室为<strong class="red">${startDeptName}</strong>,需要选择相应的子级科室建单。`;
  2299. }else if(this.clothingType === 'dept'){
  2300. startDeptId = this.quiltData.id;
  2301. startDeptName = this.quiltData.dept;
  2302. handoverId = undefined;
  2303. handoverName = '';
  2304. content = `您扫描的是科室为<strong class="red">${startDeptName}</strong>,需要选择相应的子级科室建单。`;
  2305. }
  2306. uni.showLoading({
  2307. title: "加载中",
  2308. mask: true,
  2309. });
  2310. post("/data/fetchDataList/department", {
  2311. "idx": 0,
  2312. "sum": 9999,
  2313. "department": {
  2314. "cascadeHosId": this.hosId,
  2315. "parent": {
  2316. "id": startDeptId
  2317. },
  2318. "searchType": 1,// 简单查询
  2319. }
  2320. }).then((res) => {
  2321. uni.hideLoading();
  2322. if (res.status == 200) {
  2323. if(res.list.length > 0){
  2324. this.models2 = {
  2325. disjunctor: true,
  2326. title: "提示",
  2327. content,
  2328. icon: "warn",
  2329. list: res.list,
  2330. operate: {
  2331. cancel: "取消",
  2332. },
  2333. };
  2334. }else{
  2335. this.showQuiltData(data)
  2336. }
  2337. }else{
  2338. uni.showToast({
  2339. icon: "none",
  2340. title: res.data ? res.data.msg : "接口获取数据失败!",
  2341. });
  2342. }
  2343. });
  2344. },
  2345. //确定
  2346. ok3(busyContent) {
  2347. console.log(busyContent);
  2348. this.models3.disjunctor = false;
  2349. uni.showLoading({
  2350. title: "加载中",
  2351. mask: true,
  2352. });
  2353. post("/user/data/changeWorkState", {
  2354. workState: this.workStateList.find(v => v.value == 2).id,
  2355. minute: busyContent.busyMinute,
  2356. workStateRemark: busyContent.busyContent,
  2357. }).then((res) => {
  2358. uni.hideLoading();
  2359. if (res.status == 200) {
  2360. this.getCurrentUserNow();
  2361. this.models3 = {
  2362. disjunctor: true,
  2363. title: "提示",
  2364. content: `您上班状态修改为<strong class="red">${busyContent.busyContent}</strong>,<strong class="red">${busyContent.busyMinute}</strong>分钟后自动恢复`,
  2365. icon: "warn",
  2366. operate: {
  2367. know: "知道了",
  2368. },
  2369. };
  2370. }else{
  2371. uni.showToast({
  2372. icon: "none",
  2373. title: res.msg || "接口获取数据失败!",
  2374. });
  2375. }
  2376. });
  2377. },
  2378. //取消
  2379. cancel3() {
  2380. this.models3.disjunctor = false;
  2381. },
  2382. //知道了
  2383. know3() {
  2384. this.models3.disjunctor = false;
  2385. },
  2386. // 扫描工牌-被服洗涤
  2387. quiltScan() {
  2388. if (!this.SMFlag) {
  2389. return;
  2390. }
  2391. this.SMFlag = false;
  2392. SM().then((content) => {
  2393. uni.showLoading({
  2394. title: "加载中",
  2395. mask: true,
  2396. });
  2397. //检验二维码的有效性(扫码前必须验证)
  2398. post("/dept/scanning", {
  2399. content,
  2400. })
  2401. .then((result) => {
  2402. this.quiltCode = result.code;
  2403. this.SMFlag = true;
  2404. // 200检测通过,201没有有效期也通过。
  2405. if (result.state == 200 || result.state == 201) {
  2406. let data = {
  2407. code: this.quiltCode, //二维码
  2408. };
  2409. post("/transflow/bigScan", { type: 'clothingGet', code: this.quiltCode })
  2410. .then((res) => {
  2411. uni.hideLoading();
  2412. if (res.state == 200) {
  2413. this.clothingType = res.type;
  2414. // 如果当前科室有回收单,并且配送人员是当前登陆人
  2415. if(res.orderId){
  2416. if(res.type == 'user'){
  2417. uni.navigateTo({
  2418. url: `../quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn?quiltCode=${this.quiltCode}&startDeptId=${res.data.dept.id}&startDeptName=${res.data.dept.dept}&orderId=${res.orderId}&name=${res.data.name}&nameId=${res.data.id}`,
  2419. });
  2420. } else if(res.type == 'dept'){
  2421. uni.navigateTo({
  2422. url: `../quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn?quiltCode=${this.quiltCode}&startDeptId=${res.data.id}&startDeptName=${res.data.dept}&orderId=${res.orderId}&name=`,
  2423. });
  2424. }
  2425. }else{
  2426. this.showParentQuiltData(res.data);
  2427. }
  2428. } else {
  2429. uni.navigateTo({
  2430. url: `../scanning_Result/scanning_Result?status=${res.state}&msg=${res.msg}&qrcode=${this.quiltCode}`,
  2431. });
  2432. }
  2433. });
  2434. } else {
  2435. uni.hideLoading();
  2436. uni.showToast({
  2437. icon: "none",
  2438. title: result.info || "接口获取数据失败!",
  2439. });
  2440. }
  2441. })
  2442. }).catch(err => {
  2443. this.SMFlag = true;
  2444. });
  2445. },
  2446. // 扫描工牌-被服洗涤
  2447. quiltScan_send() {
  2448. if (!this.SMFlag) {
  2449. return;
  2450. }
  2451. this.SMFlag = false;
  2452. SM().then((content) => {
  2453. uni.showLoading({
  2454. title: "加载中",
  2455. mask: true,
  2456. });
  2457. //检验二维码的有效性(扫码前必须验证)
  2458. post("/dept/scanning", {
  2459. content,
  2460. })
  2461. .then((result) => {
  2462. this.quiltCode = result.code;
  2463. this.SMFlag = true;
  2464. // 200检测通过,201没有有效期也通过。
  2465. if (result.state == 200 || result.state == 201) {
  2466. let data = {
  2467. code: this.quiltCode, //二维码
  2468. };
  2469. post("/transflow/extra", { type: 'clothingSend', receiveAndHandover: true, code: this.quiltCode }).then((res) => {
  2470. uni.hideLoading();
  2471. if (res.data && res.data.state == 200) {
  2472. uni.navigateTo({
  2473. url: `../quiltWashing/quiltWashingSendsendHandover/quiltWashingSendsendHandover?quiltCode=${this.quiltCode}`,
  2474. });
  2475. } else {
  2476. uni.navigateTo({
  2477. url: `../scanning_Result/scanning_Result?status=${res.data ? res.data.state : 500}&msg=${res.data ? res.data.msg : ''}&qrcode=${this.quiltCode}`,
  2478. });
  2479. }
  2480. });
  2481. } else {
  2482. uni.hideLoading();
  2483. uni.showToast({
  2484. icon: "none",
  2485. title: result.info || "接口获取数据失败!",
  2486. });
  2487. }
  2488. })
  2489. }).catch(err => {
  2490. this.SMFlag = true;
  2491. });
  2492. },
  2493. // 我的二维码
  2494. myQrcodeHandler(){
  2495. this.showMyQrcodeModel = {
  2496. disjunctor: true,
  2497. };
  2498. },
  2499. closeMyQrcodeModel(){
  2500. this.showMyQrcodeModel.disjunctor = false;
  2501. },
  2502. // 领血证二维码
  2503. certificatHandler(data){
  2504. this.showCertificatModel = {
  2505. disjunctor: true,
  2506. id: data.id,
  2507. };
  2508. },
  2509. closeCertificatModel(){
  2510. this.showCertificatModel.disjunctor = false;
  2511. },
  2512. // 科室二维码
  2513. departmentQrcodeHandler(){
  2514. this.showDepartmentQrcodeModel = {
  2515. disjunctor: true,
  2516. };
  2517. },
  2518. closeDepartmentQrcodeModel(){
  2519. this.showDepartmentQrcodeModel.disjunctor = false;
  2520. },
  2521. // 摆药取药
  2522. handleTakeMedicine() {
  2523. if (!this.SMFlag) {
  2524. return;
  2525. }
  2526. this.SMFlag = false;
  2527. SM().then((content) => {
  2528. uni.showLoading({
  2529. title: "加载中",
  2530. mask: true,
  2531. });
  2532. //检验二维码的有效性(扫码前必须验证)
  2533. post("/dept/scanning", {
  2534. content,
  2535. })
  2536. .then((result) => {
  2537. this.currentCode = result.code;
  2538. this.SMFlag = true;
  2539. // 200检测通过,201没有有效期也通过。
  2540. if (result.state == 200 || result.state == 201) {
  2541. uni.hideLoading();
  2542. uni.navigateTo({
  2543. url: `../promptPage/promptPage?code=${result.code}`,
  2544. });
  2545. } else {
  2546. uni.hideLoading();
  2547. uni.showToast({
  2548. icon: "none",
  2549. title: result.info || "接口获取数据失败!",
  2550. });
  2551. }
  2552. })
  2553. }).catch(err => {
  2554. this.SMFlag = true;
  2555. });
  2556. },
  2557. // 点击tab页切换
  2558. clickHandler(key) {
  2559. this.selectedLabelSlots = key;
  2560. this.idx = 0;
  2561. this.totalNum = -1;
  2562. this.scroll_top = Math.random(); //回到顶部
  2563. this.execFilterReset()
  2564. if (key === "待接单") {
  2565. this.waitingOrders(0);
  2566. } else if (key === "执行中") {
  2567. this.executingOrders(0);
  2568. }
  2569. },
  2570. // 进入详情页
  2571. itemInfo(workOrder) {
  2572. console.log(workOrder);
  2573. uni.navigateTo({
  2574. url: `../receipt_infopage/receipt_infopage?id=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}&associationTypeId=${workOrder.taskType.associationType.id}&taskTypeId=${workOrder.taskType.id}`,
  2575. });
  2576. },
  2577. //抢单后知道了
  2578. know() {
  2579. this.models.disjunctor = false;
  2580. this.idx = 0;
  2581. this.totalNum = -1;
  2582. // this.zxzData = [];
  2583. this.executingOrdersGetNum();
  2584. this.waitingOrders(0); //seimin
  2585. this.scroll_top = Math.random(); //回到顶部
  2586. },
  2587. //抢单确定
  2588. ok() {
  2589. this.models.disjunctor = false;
  2590. get("/workerOrder/takeOrder/" + this.qdId.id).then((res) => {
  2591. let msg = "接单失败";
  2592. let icon = "error";
  2593. if (res.status == 200) {
  2594. msg = "接单成功";
  2595. icon = "success";
  2596. }
  2597. this.models = {
  2598. disjunctor: true,
  2599. content: msg,
  2600. icon: icon,
  2601. operate: {
  2602. know: "知道了",
  2603. },
  2604. };
  2605. });
  2606. },
  2607. //抢单取消
  2608. cancel() {
  2609. this.models.disjunctor = false;
  2610. },
  2611. // 抢单
  2612. showAlerts(data) {
  2613. this.qdId = data;
  2614. this.models = {
  2615. disjunctor: true,
  2616. title: "提示",
  2617. content: "是否确定接单?",
  2618. icon: "warn",
  2619. operate: {
  2620. ok: "确定",
  2621. cancel: "取消",
  2622. },
  2623. };
  2624. },
  2625. //执行中列表数据获取
  2626. executingOrders(idx,type) {
  2627. console.log(this.zxzData.length, this.totalNum);
  2628. if (this.zxzData.length == this.totalNum) {
  2629. uni.showToast({
  2630. icon: "none",
  2631. title: "没有更多数据了!",
  2632. });
  2633. this.freshing = true;
  2634. return;
  2635. }
  2636. let data = {
  2637. idx,
  2638. sum: 20,
  2639. };
  2640. if (this.currentId) {
  2641. data.keyWord = this.currentId;
  2642. } else {
  2643. delete data.keyWord;
  2644. }
  2645. if (this.deptId) {
  2646. data.deptId = this.deptId;
  2647. } else {
  2648. delete data.deptId;
  2649. }
  2650. if (this.taskTypeId) {
  2651. data.taskTypeId = this.taskTypeId;
  2652. } else {
  2653. delete data.taskTypeId;
  2654. }
  2655. uni.showLoading({
  2656. title: "加载中",
  2657. mask: true,
  2658. });
  2659. post("/workerOrder/executingOrders", data).then((res) => {
  2660. uni.hideLoading();
  2661. if (res.status == 200) {
  2662. this.triggered = false;
  2663. this.freshing = true;
  2664. this.totalNum = res.data.resultCount;
  2665. res.data.data = res.data.data || [];
  2666. res.data.data.forEach(v => {
  2667. v.clinicalTaskIdsFlag = this.clinicalTaskIds.includes(v.taskType.id.toString());
  2668. })
  2669. if (idx === 0) {
  2670. this.zxzData = res.data.data;
  2671. } else {
  2672. this.zxzData.push(...res.data.data);
  2673. }
  2674. this.tabs[1].num = res.data.resultCount;
  2675. } else {
  2676. uni.showToast({
  2677. icon: "none",
  2678. title: res.msg || "接口获取数据失败!",
  2679. });
  2680. }
  2681. });
  2682. },
  2683. //待抢单列表数据获取
  2684. waitingOrders(idx) {
  2685. if (this.zxzData.length == this.totalNum) {
  2686. uni.showToast({
  2687. icon: "none",
  2688. title: "没有更多数据了!",
  2689. });
  2690. this.freshing = true;
  2691. return;
  2692. }
  2693. let data = {
  2694. idx,
  2695. sum: 20,
  2696. };
  2697. if (this.deptId) {
  2698. data.deptId = this.deptId;
  2699. } else {
  2700. delete data.deptId;
  2701. }
  2702. if (this.taskTypeId) {
  2703. data.taskTypeId = this.taskTypeId;
  2704. } else {
  2705. delete data.taskTypeId;
  2706. }
  2707. uni.showLoading({
  2708. title: "加载中",
  2709. mask: true,
  2710. });
  2711. // 请求列表数据
  2712. post("/workerOrder/waitingOrders", data).then((res) => {
  2713. uni.hideLoading();
  2714. if (res.status == 200) {
  2715. this.triggered = false;
  2716. this.freshing = true;
  2717. this.totalNum = res.data.resultCount;
  2718. if (idx === 0) {
  2719. this.zxzData = res.data.data;
  2720. } else {
  2721. this.zxzData.push(...res.data.data);
  2722. }
  2723. this.tabs[0].num = res.data.resultCount;
  2724. } else {
  2725. uni.showToast({
  2726. icon: "none",
  2727. title: res.msg || "接口获取数据失败!",
  2728. });
  2729. }
  2730. });
  2731. },
  2732. //刷新
  2733. refresherrefresh() {
  2734. if (this.triggered) {
  2735. return;
  2736. }
  2737. this.triggered = true;
  2738. this.idx = 0;
  2739. this.totalNum = -1;
  2740. if (this.selectedLabelSlots == "待接单") {
  2741. this.waitingOrders(0);
  2742. } else if (this.selectedLabelSlots == "执行中") {
  2743. this.executingOrders(0);
  2744. }
  2745. },
  2746. // 滚动
  2747. scroll(e) {
  2748. if (e.detail.scrollTop < 20) {
  2749. this.scroll_refresher_enabled = true;
  2750. } else {
  2751. this.scroll_refresher_enabled = false;
  2752. }
  2753. },
  2754. // 下拉刷新复位
  2755. refresherrestore() {
  2756. this.triggered = false;
  2757. console.log("下拉刷新复位");
  2758. },
  2759. //下拉刷新中止
  2760. refresherabort() {
  2761. this.triggered = false;
  2762. console.log("下拉刷新中止");
  2763. },
  2764. //分页,上拉加载
  2765. scrolltolower() {
  2766. if (this.freshing) {
  2767. this.freshing = false;
  2768. if (this.selectedLabelSlots == "待接单") {
  2769. this.waitingOrders(++this.idx);
  2770. } else if (this.selectedLabelSlots == "执行中") {
  2771. this.executingOrders(++this.idx);
  2772. }
  2773. }
  2774. },
  2775. // 执行中获取数字
  2776. executingOrdersGetNum() {
  2777. let data = {
  2778. idx: 0,
  2779. sum: 20,
  2780. };
  2781. if (this.arrayKey) {
  2782. data.keyWord = this.arrayKey;
  2783. } else {
  2784. delete data.keyWord;
  2785. }
  2786. post("/workerOrder/executingOrders", data).then((res) => {
  2787. if (res.status == 200) {
  2788. this.tabs[1].num = res.data.resultCount;
  2789. } else {
  2790. uni.showToast({
  2791. icon: "none",
  2792. title: res.msg || "接口获取数据失败!",
  2793. });
  2794. }
  2795. });
  2796. },
  2797. // 待接单获取数字
  2798. waitingOrdersGetNum() {
  2799. let data = {
  2800. idx: 0,
  2801. sum: 20,
  2802. };
  2803. post("/workerOrder/waitingOrders", data).then((res) => {
  2804. if (res.status == 200) {
  2805. this.tabs[0].num = res.data.resultCount;
  2806. } else {
  2807. uni.showToast({
  2808. icon: "none",
  2809. title: res.msg || "接口获取数据失败!",
  2810. });
  2811. }
  2812. });
  2813. },
  2814. // 阻止浏览器滑动
  2815. stop(e) {
  2816. e.preventDefault();
  2817. },
  2818. // 更新用户所在科室
  2819. updateUser(dept) {
  2820. post("/user/data/bindDutyDept", {dutyDept: +dept.id}).then((res) => {
  2821. if (res.status == 200) {
  2822. this.getCurrentUserNow(true);
  2823. }else{
  2824. uni.showToast({
  2825. icon: "none",
  2826. title: res.msg || "接口获取数据失败!",
  2827. });
  2828. }
  2829. })
  2830. },
  2831. // 重新获取用户信息
  2832. getCurrentUserNow(updateDept = false) {
  2833. get("/user/data/getCurrentUser").then((res) => {
  2834. if (res.status == 200) {
  2835. let userData = uni.getStorageSync('userData');
  2836. userData.user = res.data;
  2837. uni.setStorageSync('userData', userData);
  2838. // 显示科室二维码
  2839. if(updateDept){
  2840. this.departmentQrcodeHandler()
  2841. }else{
  2842. this.workState = uni.getStorageSync('userData').user.workState ? uni.getStorageSync('userData').user.workState.value : '1';
  2843. this.content.forEach(v => {
  2844. if(v.text == '示忙' || v.text == '示闲'){
  2845. v.text = this.workState == 1 ? '示闲' : '示忙';
  2846. }
  2847. })
  2848. }
  2849. }else{
  2850. uni.showToast({
  2851. icon: "none",
  2852. title: res.msg || "接口获取数据失败!",
  2853. });
  2854. }
  2855. })
  2856. },
  2857. onLoad(options) {
  2858. let admStore = uni.getStorageSync("admStore");
  2859. if(admStore.type=='searchAdm'){
  2860. if(Object.keys(admStore).length != 0){
  2861. this.$nextTick(_=>{
  2862. if(admStore.isSearch){
  2863. this.isShowExecFilter = true
  2864. }else{
  2865. this.isShowExecFilter = false
  2866. }
  2867. this.deptName = admStore.dept //科室名称
  2868. this.deptId = admStore.deptId //科室id
  2869. this.currentId = admStore.currentId //工单状态
  2870. this.taskTypeId = admStore.taskType //任务类型
  2871. this.selectedLabelSlots = admStore.selectedLabelSlots //tab选中状态
  2872. this.taskData = JSON.parse(admStore.taskData) //任务类型数据
  2873. })
  2874. }
  2875. }
  2876. this.workState = uni.getStorageSync('userData').user.workState ? uni.getStorageSync('userData').user.workState.value : '1';
  2877. // 获取菜单权限
  2878. this.getMenu();
  2879. post("/auth/getUserWorkDept", {}).then((ress) => {
  2880. if (ress.status == 200) {
  2881. let userId = uni.getStorageSync("userData").user.id;
  2882. let groupManager = ress.settings && ress.settings.groupManager; //当前工作组合选择的组
  2883. let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
  2884. let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员,4是科室绑定分组,2是绑定分组
  2885. if (workType == 2 && (ruleType == 3 || (ruleType == 4 && userId == groupManager.manager))) {
  2886. //自选排班,科室绑定分组,当前登陆人是组长
  2887. this.content.unshift({
  2888. text: "负责科室",
  2889. });
  2890. }
  2891. }
  2892. });
  2893. // let setDeptConfg = uni.getStorageSync("setDeptConfg");
  2894. // let manager = uni.getStorageSync("manager");
  2895. // let userId = uni.getStorageSync("userData").user.id;
  2896. // console.log(setDeptConfg, manager, userId);
  2897. // if (
  2898. // setDeptConfg.workSchemeType == 2 &&
  2899. // (setDeptConfg.ruleType == 3 ||
  2900. // (setDeptConfg.ruleType == 4 && userId == manager))
  2901. // ) {
  2902. // //自选排班,科室绑定人员 || 科室绑定分组 && 组长是当前登陆人
  2903. // this.content.unshift({
  2904. // text: "负责科室",
  2905. // });
  2906. // }
  2907. // #ifdef APP-PLUS
  2908. // this.content.push({
  2909. // text: "退出登录",
  2910. // });
  2911. // #endif
  2912. this.selectedLabelSlots = "执行中";
  2913. this.initList();
  2914. this.getConfig();
  2915. // 科室二维码切换科室回显
  2916. if (options.showDepartmentQrcodeId && options.showDepartmentQrcodeDept) {
  2917. this.updateUser({id: options.showDepartmentQrcodeId, dept: options.showDepartmentQrcodeDept})
  2918. }
  2919. // #ifdef APP-PLUS
  2920. webHandle("no", "app");
  2921. // #endif
  2922. // #ifdef H5
  2923. webHandle("no", "wx");
  2924. // #endif
  2925. },
  2926. onShow() {
  2927. this.getConfig();
  2928. let that = this
  2929. // #ifdef APP-PLUS
  2930. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  2931. uni.$on('scan', function(data) {
  2932. that.padChange(data)
  2933. })
  2934. // #endif
  2935. this.SMFlag = true;
  2936. // #ifdef H5
  2937. document.body.addEventListener("touchmove", this.stop, {
  2938. passive: false,
  2939. });
  2940. // #endif
  2941. },
  2942. onHide() {
  2943. // #ifdef H5
  2944. document.body.removeEventListener("touchmove", this.stop, {
  2945. passive: false,
  2946. });
  2947. // #endif
  2948. },
  2949. }
  2950. };
  2951. </script>
  2952. <style lang="less">
  2953. .hideInput{
  2954. height: 40px;
  2955. position: absolute;
  2956. width: 100px;
  2957. top: 100px;
  2958. left: 100px;
  2959. z-index: 99999;
  2960. border: 1px solid;
  2961. padding-left: 10px;
  2962. }
  2963. /deep/ .uni-drawer__content{
  2964. width: 600rpx !important;
  2965. }
  2966. /deep/ .selected-item-active{
  2967. border-bottom: 4rpx solid #49b856;
  2968. }
  2969. .Receiptpage {
  2970. width: 100%;
  2971. height: 100%;
  2972. position: relative;
  2973. .execFilterMask{
  2974. // position: fixed;
  2975. // top: 0;
  2976. // right: 0;
  2977. // bottom: 0;
  2978. // left: 0;
  2979. // z-index: 9999;
  2980. // background-color: rgba(0, 0, 0, 0.5);
  2981. // display: flex;
  2982. // flex-direction: column;
  2983. // justify-content: flex-end;
  2984. .execFilter{
  2985. position: relative;
  2986. background-color: #fff;
  2987. height: 100vh;
  2988. border-radius: 100rpx 100rpx 0 0;
  2989. .execFilterHeader{
  2990. height: 70rpx;
  2991. display: flex;
  2992. justify-content: center;
  2993. align-items: center;
  2994. border-bottom: 2rpx solid #ccc;
  2995. }
  2996. .execFilterBody{
  2997. .execFilterItem{
  2998. padding: 32rpx;
  2999. border-bottom: 2rpx dashed #ccc;
  3000. &:last-of-type{
  3001. border-bottom: none;
  3002. }
  3003. .execFilterItemHeader{}
  3004. .execFilterItemBody{
  3005. display: flex;
  3006. flex-wrap: wrap;
  3007. padding: 32rpx 0 0;
  3008. justify-content: space-between;
  3009. text-align: left;
  3010. .execFilterItemBox{
  3011. width: 200rpx;
  3012. height: 80rpx;
  3013. text-align: center;
  3014. line-height: 80rpx;
  3015. background-color: #f6f6f6;
  3016. margin-bottom: 20rpx;
  3017. border-radius: 80rpx;
  3018. &.active{
  3019. color: #fff;
  3020. background-color: #49b856;
  3021. }
  3022. }
  3023. .deptName {
  3024. height: 80rpx;
  3025. background-color: #f6f6f6;
  3026. border-radius: 20rpx;
  3027. padding: 0 20rpx;
  3028. width: 100%;
  3029. }
  3030. }
  3031. }
  3032. }
  3033. .execFilterFooter {
  3034. position: absolute;
  3035. bottom: 0;
  3036. right: 0;
  3037. left: 0;
  3038. line-height: 66rpx;
  3039. height: 100rpx;
  3040. display: flex;
  3041. justify-content: space-between;
  3042. .btn {
  3043. height: 66rpx;
  3044. flex: 1;
  3045. margin: 0 1%;
  3046. background-image: linear-gradient(to right, #72c172, #3bb197);
  3047. color: #fff;
  3048. border-radius: 8rpx;
  3049. font-size: 28rpx;
  3050. margin-top: 16rpx;
  3051. text-align: center;
  3052. }
  3053. }
  3054. }
  3055. }
  3056. .more {
  3057. position: absolute;
  3058. right: 20rpx;
  3059. width: 40rpx;
  3060. height: 4rpx;
  3061. border-top: 2px solid #49b856;
  3062. border-bottom: 2px solid #49b856;
  3063. background-color: #49b856;
  3064. padding: 5px 0;
  3065. background-clip: content-box;
  3066. z-index: 9999;
  3067. top: 50%;
  3068. transform: translateY(-50%);
  3069. }
  3070. .more_picker {
  3071. position: absolute;
  3072. right: 0;
  3073. top: 0;
  3074. height: 100%;
  3075. opacity: 0;
  3076. z-index: 9999;
  3077. }
  3078. .bigScreenWrap{
  3079. position: fixed;
  3080. left: 0;
  3081. right: 0;
  3082. bottom: 30rpx;
  3083. z-index: 999;
  3084. height: 88rpx;
  3085. padding: 0 8rpx;
  3086. display: flex;
  3087. .left{
  3088. width: 25%;
  3089. background-color: #e5e9ed;
  3090. margin-right: 8rpx;
  3091. display: flex;
  3092. align-items: center;
  3093. justify-content: center;
  3094. .left-title{
  3095. font-size: 34rpx;
  3096. }
  3097. .left-icon{
  3098. font-size: 34rpx;
  3099. color: #07863c;
  3100. }
  3101. }
  3102. .right{
  3103. width: 75%;
  3104. background-color: #e5e9ed;
  3105. }
  3106. .right-100{
  3107. width: 100% !important;
  3108. }
  3109. }
  3110. .red {
  3111. color: red !important;
  3112. font-weight: bold !important;
  3113. }
  3114. .page_tab {
  3115. width: 100%;
  3116. height: 96rpx;
  3117. display: flex;
  3118. position: fixed;
  3119. left: 0;
  3120. top: 0;
  3121. z-index: 999;
  3122. .page_tab_bar {
  3123. flex: 1;
  3124. font-size: 36rpx;
  3125. background: #fff;
  3126. display: flex;
  3127. justify-content: center;
  3128. align-items: center;
  3129. position: relative;
  3130. &:after {
  3131. content: "";
  3132. position: absolute;
  3133. left: 0;
  3134. bottom: 0;
  3135. height: 2rpx;
  3136. width: 100%;
  3137. background-color: transparent;
  3138. }
  3139. .tab_num {
  3140. color: #ff3b53;
  3141. margin-left: 8rpx;
  3142. }
  3143. &.active {
  3144. color: #49b856;
  3145. &:after {
  3146. background-color: #49b856;
  3147. }
  3148. }
  3149. }
  3150. }
  3151. .zwsj {
  3152. position: absolute;
  3153. left: 50%;
  3154. top: 180rpx;
  3155. transform: translateX(-50%);
  3156. .zwsj-img {
  3157. width: 560rpx;
  3158. }
  3159. .zwsj-txt {
  3160. font-size: 36rpx;
  3161. font-weight: 700;
  3162. margin-top: 20rpx;
  3163. text-align: center;
  3164. }
  3165. }
  3166. .page_items {
  3167. height: calc(100vh - 214rpx);
  3168. padding: 0 20rpx;
  3169. // padding-bottom: 88rpx;
  3170. padding-top: 96rpx;
  3171. .page_items_scroll {
  3172. height: 100%;
  3173. .page_item_wrap {
  3174. position: relative;
  3175. margin-bottom: 32rpx;
  3176. .page_item {
  3177. margin-bottom: 16rpx;
  3178. // min-height: 356rpx;
  3179. background: #fff;
  3180. border-radius: 8rpx;
  3181. overflow: hidden;
  3182. border: 2rpx solid #e5e9ed;
  3183. .L {
  3184. width: 40rpx;
  3185. height: 40rpx;
  3186. border-radius: 50%;
  3187. background: #f9fafb;
  3188. position: absolute;
  3189. left: -24rpx;
  3190. top: 68rpx;
  3191. border: 2rpx solid #e5e9ed;
  3192. }
  3193. .R {
  3194. width: 40rpx;
  3195. height: 40rpx;
  3196. border-radius: 50%;
  3197. background: #f9fafb;
  3198. position: absolute;
  3199. float: right;
  3200. right: -24rpx;
  3201. top: 68rpx;
  3202. border: 2rpx solid #e5e9ed;
  3203. }
  3204. .starting {
  3205. width: 40rpx;
  3206. height: 40rpx;
  3207. color: #fff;
  3208. background: #49b856;
  3209. display: inline-block;
  3210. border-radius: 50%;
  3211. text-align: center;
  3212. line-height: 40rpx;
  3213. font-size: 28rpx;
  3214. }
  3215. .End {
  3216. width: 40rpx;
  3217. height: 40rpx;
  3218. color: #fff;
  3219. background: #39b199;
  3220. display: inline-block;
  3221. border-radius: 50%;
  3222. text-align: center;
  3223. line-height: 40rpx;
  3224. font-size: 28rpx;
  3225. }
  3226. .page_item_top {
  3227. height: 86rpx;
  3228. border-bottom: 2rpx dashed #e5e9ed;
  3229. padding: 0 16rpx;
  3230. .page_item_top_L {
  3231. height: 100%;
  3232. float: left;
  3233. line-height: 88rpx;
  3234. display: flex;
  3235. align-items: center;
  3236. .emergencys {
  3237. background: #ff3b53 !important;
  3238. width: 124rpx !important;
  3239. }
  3240. .emergency {
  3241. background: #ff3b53 !important;
  3242. }
  3243. .emergency1 {
  3244. background: #49b856 !important;
  3245. }
  3246. .page_item_cont_start {
  3247. text-align: center;
  3248. height: 44rpx;
  3249. width: 104rpx;
  3250. line-height: 44rpx;
  3251. border-radius: 8rpx;
  3252. background: #49b856;
  3253. color: #fff;
  3254. .page_item_cont_start-img {
  3255. width: 22rpx;
  3256. position: relative;
  3257. top: 6rpx;
  3258. margin-right: 8rpx;
  3259. }
  3260. }
  3261. .L_iocn {
  3262. display: inline-block;
  3263. width: 44rpx;
  3264. height: 44rpx;
  3265. line-height: 42rpx;
  3266. border-radius: 100rpx;
  3267. color: #6cc076;
  3268. font-size: 32rpx;
  3269. border: 4rpx solid #6cc076;
  3270. background: #f0f6ed;
  3271. text-align: center;
  3272. margin-right: 8rpx;
  3273. }
  3274. .L_time {
  3275. color: #6cc076;
  3276. font-size: 32rpx;
  3277. }
  3278. .L_text {
  3279. font-size: 32rpx;
  3280. }
  3281. }
  3282. .page_item_top_R {
  3283. height: 100%;
  3284. float: right;
  3285. line-height: 88rpx;
  3286. font-size: 32rpx;
  3287. &.type {
  3288. margin-right: 32rpx;
  3289. color: red;
  3290. max-width: 260rpx;
  3291. white-space: nowrap;
  3292. text-overflow: ellipsis;
  3293. overflow: hidden;
  3294. }
  3295. .text_big{
  3296. font-weight: bold;
  3297. }
  3298. }
  3299. }
  3300. .page_item_cont {
  3301. min-height: 180rpx;
  3302. padding: 0 16rpx;
  3303. text-align: left;
  3304. position: relative;
  3305. display: flex;
  3306. flex-direction: column;
  3307. justify-content: space-between;
  3308. .text_big {
  3309. font-size: 32rpx;
  3310. margin-left: 10rpx;
  3311. font-weight: 700;
  3312. }
  3313. .line {
  3314. height: 100%;
  3315. width: 2rpx;
  3316. border-left: 2rpx solid #e5e9ed;
  3317. position: absolute;
  3318. // top: 70rpx;
  3319. top: 50%;
  3320. left: 20rpx;
  3321. transform: translateY(-50%);
  3322. }
  3323. .lines {
  3324. height: 40%;
  3325. width: 2rpx;
  3326. border-left: 2rpx solid #e5e9ed;
  3327. position: absolute;
  3328. top: 23%;
  3329. left: 36rpx;
  3330. }
  3331. .emergencys {
  3332. background: #ff3b53 !important;
  3333. width: 124rpx !important;
  3334. }
  3335. .emergency {
  3336. background: #ff3b53 !important;
  3337. }
  3338. .emergency1 {
  3339. background: #49b856 !important;
  3340. }
  3341. .page_item_cont_T {
  3342. // min-height: 80rpx;
  3343. // max-height: 324rpx;
  3344. font-size: 28rpx;
  3345. margin-top: 16rpx;
  3346. display: flex;
  3347. justify-content: space-between;
  3348. .page_item_cont_title {
  3349. height: 100%;
  3350. // float: left;
  3351. }
  3352. .page_item_cont_start {
  3353. text-align: center;
  3354. // float: right;
  3355. height: 44rpx;
  3356. width: 104rpx;
  3357. line-height: 44rpx;
  3358. border-radius: 8rpx;
  3359. background: #49b856;
  3360. color: #fff;
  3361. .page_item_cont_start-img {
  3362. width: 22rpx;
  3363. position: relative;
  3364. top: 6rpx;
  3365. margin-right: 8rpx;
  3366. }
  3367. }
  3368. }
  3369. .page_item_conts {
  3370. min-height: 30rpx;
  3371. color: rgb(102, 102, 102);
  3372. padding-left: 50rpx;
  3373. font-size: 28rpx;
  3374. margin: 16rpx 0;
  3375. position: relative;
  3376. view:not(.line) {
  3377. line-height: 1.2;
  3378. }
  3379. text {
  3380. color: #49b856;
  3381. }
  3382. }
  3383. .page_item_cont_B {
  3384. // padding-top: 20rpx;
  3385. font-size: 28rpx;
  3386. // overflow: hidden;
  3387. margin-bottom: 16rpx;
  3388. .page_item_cont_title {
  3389. height: 100%;
  3390. float: left;
  3391. }
  3392. }
  3393. }
  3394. .page_item_btn_wrap {
  3395. display: flex;
  3396. justify-content: space-between;
  3397. .page_item_btn {
  3398. height: 88rpx;
  3399. flex: 1;
  3400. margin-left: 1%;
  3401. background-image: linear-gradient(to right, #72c172, #3bb197);
  3402. border-radius: 8rpx;
  3403. line-height: 88rpx;
  3404. color: #fff;
  3405. font-size: 36rpx;
  3406. font-weight: 700;
  3407. text-align: center;
  3408. &:first-of-type{
  3409. margin-left: 0;
  3410. }
  3411. }
  3412. }
  3413. .page_item_btn {
  3414. height: 88rpx;
  3415. background-image: linear-gradient(to right, #72c172, #3bb197);
  3416. border-radius: 8rpx;
  3417. line-height: 88rpx;
  3418. color: #fff;
  3419. font-size: 36rpx;
  3420. font-weight: 700;
  3421. text-align: center;
  3422. }
  3423. }
  3424. .L-l {
  3425. width: 2rpx;
  3426. height: 40rpx;
  3427. background: #f9fafb;
  3428. position: absolute;
  3429. left: 20rpx;
  3430. top: 72rpx;
  3431. display: none;
  3432. }
  3433. .R-l {
  3434. width: 2rpx;
  3435. height: 40rpx;
  3436. background: #f9fafb;
  3437. position: absolute;
  3438. right: 20rpx;
  3439. top: 72rpx;
  3440. display: none;
  3441. }
  3442. }
  3443. }
  3444. }
  3445. .text {
  3446. font-size: 36rpx;
  3447. }
  3448. .wt_icon {
  3449. font-size: 40rpx;
  3450. }
  3451. }
  3452. </style>