receiptpage.vue 117 KB

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