receiptpage.vue 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324
  1. <template>
  2. <view class="Receiptpage">
  3. <view class="page_tab">
  4. <view class="page_tab_bar" :class="{ active: item.label === selectedLabelSlots }" v-for="item in tabs"
  5. :key="item.value" @click.prevent="clickHandler(item.label)">
  6. {{ item.label }}
  7. <text class="tab_num">( {{ item.num }} )</text>
  8. <view class="more" v-if="item.label === '执行中'" @click.stop="execFilter"></view>
  9. <!-- <picker class="more_picker" v-if="item.label === '执行中'" @click.stop @change="execFilter($event)" :value="index"
  10. :range="array" range-key="name">
  11. <view class="uni-input">{{ array[index].name }}</view>
  12. </picker> -->
  13. </view>
  14. </view>
  15. <view v-if="zxzData.length == 0" class="zwsj">
  16. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  17. <view class="zwsj-txt">暂无数据</view>
  18. </view>
  19. <view class="page_items">
  20. <scroll-view class="page_items_scroll" scroll-y :refresher-enabled="scroll_refresher_enabled"
  21. :refresher-triggered="triggered" @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore"
  22. @scroll="scroll" @scrolltolower="scrolltolower" :scroll-top="scroll_top" @refresherabort="refresherabort">
  23. <view class="page_item_wrap" v-for="(item, index) of zxzData" :key="index">
  24. <view class="page_item">
  25. <view class="L"></view>
  26. <view class="R"></view>
  27. <view class="page_item_top">
  28. <view class="page_item_top_L">
  29. <!-- <text class="L_iocn" v-if="item.taskType.associationType.value == 'specimen'">标</text>
  30. <text class="L_iocn" v-if="item.taskType.associationType.value == 'drugsBag'">药</text>
  31. <text class="L_iocn" v-if="item.taskType.associationType.value == 'specimenPlan'">巡</text>
  32. <text class="L_iocn" v-if="item.taskType.associationType.value == 'jPBag'">静</text>
  33. <text class="L_iocn" v-if="item.taskType.associationType.value == 'inspect'">病</text>
  34. <text class="L_iocn" v-if="
  35. item.taskType.associationType.value == 'patientTransport'
  36. ">病</text>
  37. <text class="L_iocn" v-if="item.taskType.associationType.value == 'other'">其</text> -->
  38. <view class="page_item_cont_start emergency1" v-if="item.emergencyType.value == 1">
  39. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  40. </image>
  41. {{ item.emergencyType.name }}
  42. </view>
  43. <view class="page_item_cont_start emergency" v-if="item.emergencyType.value == 2">
  44. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  45. </image>
  46. {{ item.emergencyType.name }}
  47. </view>
  48. <view class="page_item_cont_start emergencys" v-if="item.emergencyType.value == 3">
  49. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  50. </image>
  51. {{ item.emergencyType.name }}
  52. </view>
  53. <view class="page_item_top_R type" style="margin-left: 16rpx;">
  54. {{
  55. item.isHalfInspect === 1 ? "半程陪检" : item.taskType.taskName
  56. }}<template v-if="item.goodsRemark">-{{item.goodsRemark}}</template>
  57. </view>
  58. <!-- <text class="L_time" v-if="item.overdueTime">{{ item.overdueTime }}前送达</text> -->
  59. </view>
  60. <view class="page_item_top_R" v-if="
  61. !(
  62. item.taskType.associationType.value == 'inspect' &&
  63. item.gdState.value == 5
  64. )
  65. ">
  66. <text class="text_big">{{ item.gdState.name }}</text>
  67. </view>
  68. <view class="page_item_top_R" v-if="
  69. item.taskType.associationType.value == 'inspect' &&
  70. item.gdState.value == 5
  71. ">
  72. <text class="text_big">待送回</text>
  73. </view>
  74. <!-- <view class="page_item_top_R type">
  75. {{
  76. item.isHalfInspect === 1 ? "半程陪检" : item.taskType.taskName
  77. }}<template v-if="item.goodsRemark">-{{item.goodsRemark}}</template>
  78. </view> -->
  79. </view>
  80. <view class="page_item_cont" @click="itemInfo(item)">
  81. <view class="page_item_cont_T">
  82. <view class="page_item_cont_title">
  83. <text> <text class="starting">起</text> 点科室 </text>
  84. <text class="text_big">{{ item.startDept.dept }}</text>
  85. </view>
  86. <!-- <view class="page_item_cont_start emergency1" v-if="item.emergencyType.value == 1">
  87. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  88. </image>
  89. {{ item.emergencyType.name }}
  90. </view>
  91. <view class="page_item_cont_start emergency" v-if="item.emergencyType.value == 2">
  92. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  93. </image>
  94. {{ item.emergencyType.name }}
  95. </view>
  96. <view class="page_item_cont_start emergencys" v-if="item.emergencyType.value == 3">
  97. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  98. </image>
  99. {{ item.emergencyType.name }}
  100. </view> -->
  101. </view>
  102. <view class="page_item_conts" v-if="item.taskType.associationType.value == 'specimen'">
  103. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  104. <view>扫描标本数量 : {{ item.actualReceiveNum || '无'}}</view>
  105. <view class="line"></view>
  106. </view>
  107. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'blood'">
  108. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  109. <view>接收数量 : {{ item.actualReceiveNum || '无'}}</view>
  110. <view class="line"></view>
  111. </view>
  112. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'inspect'">
  113. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  114. <view>
  115. 预约时间 : {{ item.yyTime | yyTimeFilter
  116. }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
  117. </view>
  118. <view>
  119. 患者信息 : {{ item.patient ? item.patient.patientName : "-" }}({{
  120. item.patient ? item.patient.bedNum : "-"
  121. }})
  122. </view>
  123. <view v-if="item.goods">
  124. 携带设备 :
  125. <text>{{ item.goods || "暂无" }}</text>
  126. </view>
  127. <view style="word-break: break-all;" v-if="item.workOrderRemark">
  128. 备注信息 :
  129. <text>{{ item.workOrderRemark || "暂无" }}</text>
  130. </view>
  131. <view v-if="item.patient.careLevel">
  132. 护理等级 :
  133. <text :class="[
  134. item.patient.careLevel.value == 0 ||
  135. item.patient.careLevel.value == 1
  136. ? 'red'
  137. : 'green',
  138. ]">{{ item.patient.careLevel.name }}</text>
  139. </view>
  140. <view v-if="item.patient.illnessState">
  141. 病情级别 :
  142. <text :class="{
  143. red:
  144. item.patient.illnessState.value == 2 ||
  145. item.patient.illnessState.value == 3,
  146. }">{{ item.patient.illnessState.name }}</text>
  147. </view>
  148. <view v-if="item.isAccompany === 1 || item.isAccompany === 0">
  149. 陪同情况 :
  150. <text :class="{ red: item.isAccompany === 1 }">{{
  151. item.isAccompany === 1 ? "需要医护陪同" : "无需医护陪同"
  152. }}</text>
  153. </view>
  154. <view class="line"></view>
  155. </view>
  156. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'patientTransport'">
  157. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  158. <view>
  159. 预约时间 : {{ item.yyjdTime | yyTimeFilter
  160. }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
  161. </view>
  162. <view>
  163. 患者信息 : {{ item.patient ? item.patient.patientName : "-" }}({{
  164. item.patient ? item.patient.bedNum : "-"
  165. }})
  166. </view>
  167. <view v-if="item.goods">
  168. 携带设备 :
  169. <text>{{ item.goods || "暂无" }}</text>
  170. </view>
  171. <view style="word-break: break-all;" v-if="item.workOrderRemark">
  172. 备注信息 :
  173. <text>{{ item.workOrderRemark || "暂无" }}</text>
  174. </view>
  175. <view v-if="item.patient.careLevel">
  176. 护理等级 :
  177. <text :class="[
  178. item.patient.careLevel.value == 0 ||
  179. item.patient.careLevel.value == 1
  180. ? 'red'
  181. : 'green',
  182. ]">{{ item.patient.careLevel.name }}</text>
  183. </view>
  184. <view v-if="item.patient.illnessState">
  185. 病情级别 :
  186. <text :class="{
  187. red:
  188. item.patient.illnessState.value == 2 ||
  189. item.patient.illnessState.value == 3,
  190. }">{{ item.patient.illnessState.name }}</text>
  191. </view>
  192. <view v-if="item.isAccompany === 1 || item.isAccompany === 0">
  193. 陪同情况 :
  194. <text :class="{ red: item.isAccompany === 1 }">{{
  195. item.isAccompany === 1 ? "需要医护陪同" : "无需医护陪同"
  196. }}</text>
  197. </view>
  198. <view class="line"></view>
  199. </view>
  200. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'drugsBag'">
  201. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  202. <view>
  203. 药包编码 : {{ item.drugs ? item.drugs.packid : "无" }}
  204. </view>
  205. <view class="line"></view>
  206. </view>
  207. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'jPBag'">
  208. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  209. <view>
  210. 药包编码 :
  211. {{ item.staticDistri ? item.staticDistri.packid : "无" }}
  212. </view>
  213. <view class="line"></view>
  214. </view>
  215. <view class="page_item_conts" v-else>
  216. <view v-if="item.overdueTime">{{ item.overdueTime }}前送达</view>
  217. <view>
  218. 预约时间 : {{ item.yyjdTime | yyTimeFilter
  219. }}
  220. </view>
  221. <view style="word-break: break-all;" v-if="item.workOrderRemark">
  222. 备注信息 :
  223. <text>{{ item.workOrderRemark || "暂无" }}</text>
  224. </view>
  225. <view class="line"></view>
  226. </view>
  227. <view class="page_item_cont_B">
  228. <view class="page_item_cont_title" v-if="item.taskType.associationType.value != 'inspect'">
  229. <text> <text class="End">终</text> 点科室 </text>
  230. <text class="text_big" v-for="(dept, i) of item.endDepts" :key="i">{{ dept.dept }}</text>
  231. </view>
  232. <view class="page_item_cont_title" v-if="item.taskType.associationType.value == 'inspect'">
  233. <text> <text class="End">检</text> 查科室 </text>
  234. <text class="text_big" v-for="(dept, i) of item.middleDept" :key="i">{{ dept.dept }}</text>
  235. </view>
  236. </view>
  237. </view>
  238. <view v-if="
  239. item.taskType.associationType.value == 'inspect' ||
  240. item.taskType.associationType.value == 'patientTransport'
  241. ">
  242. <!-- 待抢单 -->
  243. <text class="red" v-if="item.gdState.value == 2">请扫描患者腕带,或者请扫描科室码</text>
  244. <!-- 待到达 -->
  245. <text class="red" v-if="item.gdState.value == 4">请扫描患者腕带</text>
  246. <!-- 执行中 -->
  247. <text class="red" v-if="item.gdState.value == 8">请扫描检查科室码,并扫描患者腕带</text>
  248. <!-- 待送达 -->
  249. <text class="red" v-if="item.gdState.value == 5">请扫描终点科室码,并扫描患者腕带</text>
  250. </view>
  251. <view v-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'clothingGet'">
  252. <!-- 待送达 -->
  253. <text class="red" v-if="item.gdState.value == 5">请扫描终点科室二维码</text>
  254. </view>
  255. <view v-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'clothingSend'">
  256. <!-- 待到达 -->
  257. <text class="red" v-if="item.gdState.value == 4">请扫描起点科室二维码</text>
  258. <!-- 待送达 -->
  259. <text class="red" v-if="item.gdState.value == 5">请扫描终点科室二维码</text>
  260. </view>
  261. <view v-else-if="item.taskType.associationType.value == 'other'">
  262. <!-- 待到达 -->
  263. <text class="red" v-if="item.gdState.value == 4 && item.taskType.carryingCourses[0].checkoutMethod.value == 1">可通过扫描科室码或者拍照进行签到</text>
  264. <text class="red" v-if="item.gdState.value == 4 && item.taskType.carryingCourses[0].checkoutMethod.value == 2">扫描交接人员二维码进行交接</text>
  265. </view>
  266. <!-- 如果不是患者陪检或患者转运或其他,万能交接 -->
  267. <view class="page_item_btn" v-if="
  268. selectedLabelSlots == '执行中' &&
  269. item.taskType.associationType.value != 'patientTransport' &&
  270. item.taskType.associationType.value != 'inspect' &&
  271. item.taskType.associationType.value != 'other' &&
  272. item.taskType.associationType.value != 'ordinary' &&
  273. !(item.taskType.associationType.value == 'specimen' && item.taskType.carryingCourses[1].checkoutMethod.value == 3 && item.gdState.value == 5)
  274. " hover-class="seimin-btn-hover">
  275. <smallScreen :sData="item" :sType="2">扫码</smallScreen>
  276. </view>
  277. <!-- 如果不是静配,药配,标本配送,标本轮巡,万能交接 -->
  278. <view class="page_item_btn_wrap" v-if="
  279. selectedLabelSlots == '执行中' &&
  280. item.taskType.associationType.value != 'jPBag' &&
  281. item.taskType.associationType.value != 'drugsBag' &&
  282. item.taskType.associationType.value != 'specimen' &&
  283. item.taskType.associationType.value != 'specimenPlan' &&
  284. item.taskType.associationType.value != 'ordinary'
  285. ">
  286. <view v-if="!(item.taskType.associationType.value == 'other' && (item.gdState.value == 4 && item.taskType.carryingCourses[0].actionsSwitch || item.gdState.value == 5 && item.taskType.carryingCourses[1].actionsSwitch))" class="page_item_btn" hover-class="seimin-btn-hover">
  287. <smallScreen :sData="item" :sType="1">扫码</smallScreen>
  288. </view>
  289. <!-- 其他临床服务-完成工单-待到达 -->
  290. <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 4 && item.taskType.carryingCourses[0].actionsSwitch" class="page_item_btn" @click="otherCompleteOrder(item)" hover-class="seimin-btn-hover">确认到达</view>
  291. <!-- 其他临床服务-完成工单-待送达 -->
  292. <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 5 && item.taskType.carryingCourses[1].actionsSwitch" class="page_item_btn" @click="otherCompleteOrder(item)" hover-class="seimin-btn-hover">完成工单</view>
  293. <!-- 其他临床服务-拍照 -->
  294. <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 4 && item.taskType.carryingCourses[0].photoSwitch" class="page_item_btn" @click="photographToOther(item, 'start')" hover-class="seimin-btn-hover">拍照</view>
  295. <view v-if="item.taskType.associationType.value != 'other' && item.gdState.value == 4" class="page_item_btn" @click="photograph(item)" hover-class="seimin-btn-hover">拍照</view>
  296. <!-- 其他临床服务-追加 -->
  297. <view v-if="item.taskType.associationType.value == 'other' && item.worker && item.worker.id && clinicalMultiplayerMode === 1 && showAppendUser === 1 && item.clinicalTaskIdsFlag && !item.copyBy" class="page_item_btn" @click="additionalUser(item)" hover-class="seimin-btn-hover">追加</view>
  298. </view>
  299. <!-- 如果是万能交接-血制品 -->
  300. <view class="page_item_btn_wrap" v-if="selectedLabelSlots == '执行中' && item.taskType.associationType.value == 'ordinary' && signType4 && item.taskType.ordinaryField.value == 'blood'">
  301. <!-- 送达交接 -->
  302. <view class="page_item_btn" @click="goTobloodEnd(item)" hover-class="seimin-btn-hover" v-if="delivery === 1 && item.gdState.value == 5">送达交接</view>
  303. <!-- 领血证 -->
  304. <view class="page_item_btn" @click="certificatHandler(item)" hover-class="seimin-btn-hover" v-if="useTakeCode == 1">领血证</view>
  305. </view>
  306. <!-- 如果是万能交接-被服洗涤送回 -->
  307. <view class="page_item_btn" v-if="item.taskType.associationType.value == 'ordinary' && item.taskType.ordinaryField.value == 'clothingSend' && item.gdState.value == 5" hover-class="seimin-btn-hover">
  308. <view class="page_item_btn" @click="goToWashingEnd(item)" hover-class="seimin-btn-hover">核对被服</view>
  309. </view>
  310. <view class="page_item_btn" v-if="selectedLabelSlots == '待接单'" @click="showAlerts(item)" hover-class="seimin-btn-hover">接单</view>
  311. </view>
  312. <view class="L-l"></view>
  313. <view class="R-l"></view>
  314. </view>
  315. </scroll-view>
  316. </view>
  317. <!-- 底部扫一扫 -->
  318. <view class="bigScreenWrap">
  319. <bigScreen ref="bigscreen"></bigScreen>
  320. <view class="more" v-if="arrayBigScreen.length"></view>
  321. <picker class="more_picker" @cancel="cancelPicker" @click.stop @change="execFilterBigScreen($event)" :value="indexBigScreen"
  322. :range="arrayBigScreen" range-key="name" v-if="arrayBigScreen.length">
  323. <view class="uni-input">{{ arrayBigScreen[indexBigScreen].name }}</view>
  324. </picker>
  325. </view>
  326. <!-- 悬浮按钮 -->
  327. <uni-fab :pattern="pattern" :content="content" :direction="direction" @fabClick="fabClick" @trigger="trigger"></uni-fab>
  328. <!-- 弹窗 -->
  329. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  330. @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
  331. <!-- 我的二维码-弹窗 -->
  332. <showMyQrcode v-if="showMyQrcodeModel.disjunctor" :disjunctor="showMyQrcodeModel.disjunctor" @know="closeMyQrcodeModel"></showMyQrcode>
  333. <!-- 领血证-弹窗 -->
  334. <showCertificat v-if="showCertificatModel.disjunctor" :disjunctor="showCertificatModel.disjunctor" :id="showCertificatModel.id" @know="closeCertificatModel"></showCertificat>
  335. <!-- 科室二维码-弹窗 -->
  336. <showDepartmentQrcode v-if="showDepartmentQrcodeModel.disjunctor" :disjunctor="showDepartmentQrcodeModel.disjunctor" @know="closeDepartmentQrcodeModel"></showDepartmentQrcode>
  337. <!-- 手动查询标本弹窗 -->
  338. <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
  339. @ok="speOk" @cancel="speCancel">
  340. </handViewSpecimen>
  341. <!-- 手动查询药品弹窗 -->
  342. <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title"
  343. :disjunctor="drugbagModels.disjunctor" @ok="drugbagOk" @cancel="drugbagCancel">
  344. </handViewDrugsBag>
  345. <!-- 填写交接人工号弹窗 -->
  346. <selectAccount v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  347. @cancel="hosCancel">
  348. </selectAccount>
  349. <!-- 手动查询弹窗 -->
  350. <checkboxModal v-if="checkboxModels.disjunctor" :content="checkboxModels.content" :disjunctor="checkboxModels.disjunctor"
  351. @ok="checkboxOk" @cancel="checkboxCancel">
  352. </checkboxModal>
  353. <!-- 执行中筛选 -->
  354. <uni-drawer width="400px" :visible="isShowExecFilter" mode="right" @close="closeDrawer()">
  355. <view class="execFilterMask">
  356. <view class="execFilter" @click.stop>
  357. <view class="execFilterHeader">
  358. 全部筛选
  359. </view>
  360. <view class="execFilterBody">
  361. <view class="execFilterItem">
  362. <view class="execFilterItemHeader">
  363. 工单状态
  364. </view>
  365. <view class="execFilterItemBody">
  366. <view class="execFilterItemBox" @click="currentId = item.id" :class="{active: item.id == currentId}" v-for="item in array" :key="item.id">
  367. {{item.name}}
  368. </view>
  369. </view>
  370. </view>
  371. <view class="execFilterItem">
  372. <view class="execFilterItemHeader">
  373. 申请科室
  374. </view>
  375. <view class="execFilterItemBody">
  376. <input class="deptName" @click="searchAdm" v-model.trim="deptName" placeholder="请选择科室名称" placeholder-style="color:#cecece" />
  377. </view>
  378. </view>
  379. <view class="execFilterItem">
  380. <view class="execFilterItemHeader">
  381. 任务类型
  382. </view>
  383. <view class="execFilterItemBody">
  384. <uni-data-picker class="value" placeholder="请选择任务类型"
  385. :localdata="taskData" v-model="taskTypeId" :clear-icon="false">
  386. </uni-data-picker>
  387. </view>
  388. </view>
  389. </view>
  390. <view class="execFilterFooter">
  391. <view class="btn" @click="execFilterReset()">重置</view>
  392. <view class="btn" @click="execFilterOk()">完成</view>
  393. </view>
  394. </view>
  395. </view>
  396. </uni-drawer>
  397. <!-- </view> -->
  398. <!-- 被服洗涤弹窗 -->
  399. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  400. @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
  401. <!-- 父级科室弹窗 -->
  402. <showModel :title="models2.title" icon="" :disjunctor="models2.disjunctor" :content="models2.content" @ok="ok2" @cancel="cancel2" :operate="models2.operate" :childrenDeptList="models2.list"></showModel>
  403. <!-- 父级科室弹窗 -->
  404. <showModel :title="models3.title" icon="" :disjunctor="models3.disjunctor" :content="models3.content" @know="know3" @ok="ok3" @cancel="cancel3" :operate="models3.operate" :busyContentList="models3.list"></showModel>
  405. <!-- 示闲弹窗 -->
  406. <showModel :title="models4.title" icon="models4.icon" :disjunctor="models4.disjunctor" :content="models4.content" @know="know4" @ok="ok4" @cancel="cancel4" :operate="models4.operate"></showModel>
  407. <scanner></scanner>
  408. </view>
  409. </template>
  410. <script>
  411. import selectAccount from "../../components/selectAccount/selectAccount.vue";
  412. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  413. import scanner from "../../components/scanner/scanner.vue";
  414. import showModel from "../../components/showModel/showModel.vue";
  415. import bigScreen from "../../components/bigScreen/bigScreen.vue";
  416. // https://ext.dcloud.net.cn/plugin?id=144
  417. import uniFab from "@/components/uni-fab/uni-fab.vue";
  418. import uniDrawer from "@/components/uni-drawer/uni-drawer.vue";
  419. import ldSelect from "@/components/ld-select/ld-select.vue";
  420. import MxDatePicker from "@/components/mx-datepicker/mx-datepicker.vue";
  421. import {
  422. get,
  423. post,
  424. SM,
  425. deleteIt,
  426. webHandle
  427. } from "../../http/http.js";
  428. import {
  429. photographTool,
  430. pathUrl
  431. } from "../../tools/photograph.js";
  432. export default {
  433. data() {
  434. return {
  435. workStateList: [],
  436. clothingType: '',//被服回收扫码的类型,dept|user
  437. isShowExecFilter: false,
  438. deptName: '',//科室名称
  439. deptId:null,//科室id
  440. taskTypeId:null,//任务类型id
  441. taskData:[], //任务类型数据
  442. currentId: 0,
  443. otherAssociationTypeId: null,
  444. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  445. workState: '1',
  446. clinicalMultiplayerMode: 0,
  447. showAppendUser: 0,
  448. signType4: false,
  449. delivery: 0,
  450. useTakeCode: 0,
  451. takeCodeType: {},
  452. clinicalTaskIds: [],
  453. other: {
  454. user: {},
  455. data: {},
  456. },
  457. // 手动查询弹窗model
  458. checkboxModels: {
  459. disjunctor: false,
  460. },
  461. // 填写交接人工号弹窗model
  462. hosModels: {
  463. disjunctor: false,
  464. },
  465. currentCode: '', //当前拍照使用的科室二维码
  466. currentData: {}, //当前小扫描的工单对象
  467. // 弹窗model
  468. showMyQrcodeModel: {
  469. disjunctor: false,
  470. },
  471. // 弹窗model
  472. showCertificatModel: {
  473. disjunctor: false,
  474. },
  475. // 弹窗model
  476. showDepartmentQrcodeModel: {
  477. disjunctor: false,
  478. },
  479. SMFlag: true,
  480. // 手动查询标本弹窗model
  481. speModels: {
  482. disjunctor: false,
  483. },
  484. // 手动查询药品弹窗model
  485. drugbagModels: {
  486. disjunctor: false,
  487. },
  488. // 筛选条件
  489. array: [{
  490. id: 0,
  491. name: "全部",
  492. },
  493. {
  494. id: 71,
  495. name: "待到达",
  496. },
  497. {
  498. id: 72,
  499. name: "待送达",
  500. },
  501. {
  502. id: 75,
  503. name: "执行中",
  504. },
  505. ],
  506. // 筛选条件
  507. arrayBigScreen: [],
  508. index: 0,
  509. indexBigScreen: 0,
  510. arrayKey: 0,
  511. arrayKeyBigScreen: 0,
  512. // 当前登录人是否是药房角色
  513. pharmacistFlag: false,
  514. // 抢单的id
  515. qdId: "",
  516. quiltData: {},
  517. // 弹窗model
  518. models: {
  519. disjunctor: false,
  520. },
  521. // 弹窗model
  522. models1: {
  523. disjunctor: false,
  524. },
  525. // 弹窗model
  526. models2: {
  527. disjunctor: false,
  528. },
  529. // 弹窗model
  530. models3: {
  531. disjunctor: false,
  532. },
  533. // 弹窗model
  534. models4: {
  535. disjunctor: false,
  536. },
  537. // 悬浮按钮样式
  538. pattern: {
  539. buttonColor: "#6cc076",
  540. },
  541. // 悬浮按钮展开菜单显示方式
  542. direction: "vertical",
  543. // 悬浮按钮展开菜单内容配置项
  544. content: [{
  545. text: "我的任务",
  546. },],
  547. // 当前选中tab页名称
  548. selectedLabelSlots: "待接单",
  549. // tab页信息
  550. tabs: [{
  551. label: "待接单", //tab页名称
  552. value: "1", //值
  553. num: 0, //数量
  554. },
  555. {
  556. label: "执行中",
  557. value: "2",
  558. num: 0,
  559. },
  560. ],
  561. //列表数据
  562. zxzData: [],
  563. //分页页码
  564. idx: 0,
  565. // 列表项总数
  566. totalNum: -1,
  567. triggered: false, //下拉刷新状态
  568. freshing: false, //上拉加载开关
  569. scroll_top: 0, //距离顶部的距离
  570. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  571. quiltCode: '',
  572. };
  573. },
  574. components: {
  575. uniDrawer,
  576. MxDatePicker,
  577. ldSelect
  578. },
  579. filters: {
  580. // 自定义管道 yyTime
  581. yyTimeFilter: function(data) {
  582. if (data) {
  583. let nDate = null;
  584. if (typeof data == 'string') {
  585. let arr = data.split(/[-:\s]/);
  586. nDate = new Date(
  587. arr[0] - 0,
  588. arr[1] - 1,
  589. arr[2] - 0,
  590. arr[3] - 0,
  591. arr[4] - 0,
  592. 0
  593. );
  594. } else if (typeof data == 'number') {
  595. nDate = new Date(data);
  596. }
  597. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  598. const date = nDate.getDate().toString().padStart(2, 0);
  599. const hour = nDate.getHours().toString().padStart(2, 0);
  600. const minute = nDate.getMinutes().toString().padStart(2, 0);
  601. return `${month}-${date} ${hour}:${minute}`;
  602. } else {
  603. return "-";
  604. }
  605. },
  606. },
  607. components: {
  608. uniFab,
  609. showModel,
  610. bigScreen,
  611. scanner,
  612. selectAccount,
  613. },
  614. methods: {
  615. padChange(scannerCode){
  616. scannerCode = scannerCode.replace('\n','')
  617. // if(e.detail.value.length<5){
  618. // return
  619. // }
  620. if (!this.SMFlag) {
  621. return;
  622. }
  623. let qrcodePrefix = '';
  624. this.SMFlag = false;
  625. // SM().then((content) => {
  626. uni.showLoading({
  627. title: "加载中",
  628. mask: true,
  629. });
  630. //检验二维码的有效性(扫码前必须验证)
  631. post("/dept/scanning", {
  632. content:scannerCode
  633. })
  634. .then((result) => {
  635. this.currentCode = result.code;
  636. this.SMFlag = true;
  637. // 200检测通过,201没有有效期也通过。
  638. if (result.state == 200 || result.state == 201) {
  639. let data = {
  640. code: result.code, //二维码
  641. };
  642. //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
  643. let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
  644. post("/workerOrder/scanCode", { code, hosId: this.hosId })
  645. .then((res) => {
  646. uni.hideLoading();
  647. if (res.status == 200) {
  648. // 扫描标本码
  649. if (res.type == "specimen") {
  650. let infoDATA = {
  651. stype: res.data.stype,
  652. scode: res.data.scode,
  653. patientName: res.data.patientName,
  654. sickRoom: res.data.sickRoom ?
  655. res.data.sickRoom.dept : "-",
  656. checkDept: res.data.checkDept ?
  657. res.data.checkDept.dept : "-",
  658. bedNum: res.data.bedNum,
  659. };
  660. uni.navigateTo({
  661. url: `../scanning_B/scanning_B?res=${encodeURIComponent(
  662. JSON.stringify(res)
  663. )}&infoDATA=${encodeURIComponent(
  664. JSON.stringify(infoDATA)
  665. )}`,
  666. });
  667. } else if (res.type == "patient") {
  668. //如果是患者腕带码
  669. // code: data.code //二维码
  670. res.workOrder = res.workOrder ? res.workOrder : []; //liao
  671. uni.navigateTo({
  672. url: `../scanning_ins/scanning_ins?code=${
  673. data.code
  674. }&infoDATA=${encodeURIComponent(
  675. JSON.stringify(res.data)
  676. )}&workData=${encodeURIComponent(
  677. JSON.stringify(res.workOrder)
  678. )}&patientOrders=${encodeURIComponent(
  679. JSON.stringify(res.patientOrders)
  680. )}`,
  681. });
  682. } else if (res.type == "quickOrder") {
  683. //快捷建单
  684. if(res.data.isDigitalHandover == 1){
  685. uni.navigateTo({
  686. url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  687. JSON.stringify(res.data)
  688. )}`,
  689. });
  690. }else{
  691. uni.navigateTo({
  692. url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
  693. JSON.stringify(res.data)
  694. )}`,
  695. });
  696. }
  697. } else if (res.type == "dept") {
  698. // 扫描科室码
  699. // code: data.code //二维码
  700. let infoDATA = res.data;
  701. console.log(infoDATA)
  702. // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
  703. // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
  704. if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
  705. this.infoDATA = infoDATA;
  706. this.workData = infoDATA.specimen || infoDATA.specimenPlan;
  707. this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
  708. this.code = data.code;
  709. this.selectArr = [];
  710. for (var i = 0; i < this.workData.length; i++) {
  711. this.selectArr.push(this.workData[i].id);
  712. }
  713. this.userId.ids = this.selectArr;
  714. this.orderDeptHandler(true);
  715. }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
  716. // 医废
  717. uni.navigateTo({
  718. url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  719. });
  720. }else{
  721. uni.navigateTo({
  722. url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
  723. JSON.stringify(infoDATA)
  724. )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  725. });
  726. }
  727. } else if (res.type == 'drugsBag') {
  728. //扫药包码
  729. uni.navigateTo({
  730. url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
  731. });
  732. } else if (res.type == 'nucleicAcid') {
  733. //扫核酸码
  734. uni.navigateTo({
  735. url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
  736. });
  737. } else if (res.type == 'blood') {
  738. //扫血制品
  739. // 判断size,多个则进入新页面选择
  740. if(res.size > 1){
  741. uni.navigateTo({
  742. url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
  743. });
  744. } else {
  745. uni.navigateTo({
  746. url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
  747. });
  748. }
  749. } else if (res.type == 'receiveOrder') {
  750. //扫快捷接单
  751. uni.showModal({
  752. title: "提示",
  753. content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
  754. success: function(result) {
  755. if (result.confirm) {
  756. uni.showLoading({
  757. title: "加载中",
  758. mask: true,
  759. });
  760. post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
  761. uni.hideLoading();
  762. if (result.status == 200) {
  763. uni.showModal({
  764. title: "提示",
  765. content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
  766. showCancel: false,
  767. success: function(res) {
  768. if (res.confirm) {
  769. console.log("用户点击确定");
  770. uni.redirectTo({
  771. url: "../receiptpage/receiptpage",
  772. });
  773. } else if (res.cancel) {
  774. console.log("用户点击取消");
  775. }
  776. },
  777. });
  778. } else {
  779. uni.showToast({
  780. icon: "none",
  781. title: result.msg || "接口获取数据失败!",
  782. });
  783. }
  784. });
  785. } else if (result.cancel) {
  786. console.log("用户点击取消");
  787. }
  788. },
  789. });
  790. } else if (res.type == 'bloodTake') {
  791. if(res.data){
  792. //新血制品-扫科室
  793. uni.navigateTo({
  794. url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
  795. });
  796. }else{
  797. // 走type是dept的流程
  798. // 扫描科室码
  799. // code: data.code //二维码
  800. let infoDATA = res.data;
  801. console.log(infoDATA)
  802. // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
  803. // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
  804. if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
  805. this.infoDATA = infoDATA;
  806. this.workData = infoDATA.specimen || infoDATA.specimenPlan;
  807. this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
  808. this.code = data.code;
  809. this.selectArr = [];
  810. for (var i = 0; i < this.workData.length; i++) {
  811. this.selectArr.push(this.workData[i].id);
  812. }
  813. this.userId.ids = this.selectArr;
  814. this.orderDeptHandler(true);
  815. }else{
  816. uni.navigateTo({
  817. url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
  818. JSON.stringify(infoDATA)
  819. )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  820. });
  821. }
  822. }
  823. } else if(res.type == 'clinicalWaste'){
  824. // 医废
  825. if(res.wasteDetails){
  826. uni.navigateTo({
  827. url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
  828. });
  829. }else{
  830. uni.navigateTo({
  831. url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
  832. });
  833. }
  834. }
  835. } else {
  836. if(res.bigScanSpecialMsg){
  837. uni.navigateTo({
  838. url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
  839. });
  840. }else{
  841. uni.navigateTo({
  842. url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
  843. });
  844. }
  845. }
  846. });
  847. } else {
  848. uni.hideLoading();
  849. uni.showToast({
  850. icon: "none",
  851. title: result.info || "接口获取数据失败!",
  852. });
  853. }
  854. })
  855. // }).catch(err => {
  856. // this.SMFlag = true;
  857. // });
  858. },
  859. // 搜索科室
  860. searchAdm(){
  861. let data = {
  862. currentId:this.currentId, //工单状态
  863. taskType:this.taskTypeId, //任务类型
  864. selectedLabelSlots:this.selectedLabelSlots, //tab选中状态
  865. taskData:JSON.stringify(this.taskData)
  866. }
  867. uni.setStorageSync("admStore",data)
  868. let setDeptConfg = uni.getStorageSync("setDeptConfg") || {};
  869. uni.navigateTo({
  870. url: `../search/search?type=takeOrder&id=${this.id}&changedept=${this.changedept}&quickCombinationId=${setDeptConfg.id || ''}`,
  871. });
  872. },
  873. goTobloodEnd(order){
  874. uni.navigateTo({
  875. url: `/pages/newBlood/endOrderSignBlood/endOrderSignBlood?orderIds=${order.id}&deptName=${order.endDepts[0].dept}&deptId=${order.endDepts[0].id}&type=delivery`,
  876. });
  877. },
  878. goToWashingEnd(order){
  879. uni.navigateTo({
  880. url: `../quiltWashing/quiltWashingSendSignIn/quiltWashingSendSignIn?orderId=${order.id}&endDeptId=${order.endDepts[0].id}&endDeptName=${order.endDepts[0].dept}`,
  881. });
  882. },
  883. async initList(){
  884. uni.showLoading({
  885. title: "加载中",
  886. mask: true,
  887. });
  888. //获取其他临床服务业务类型
  889. let res = await this.getOtherAssociationTypes();
  890. let otherAssociationType = res.find(v => v.value === 'other');
  891. this.otherAssociationTypeId = otherAssociationType ? otherAssociationType.id : null;
  892. if(this.otherAssociationTypeId){
  893. // 获取临床服务页面控制开关
  894. let result = await this.getTaskOtherConfig();
  895. if (result.status == 200) {
  896. if(result.list && result.list[0]){
  897. this.clinicalMultiplayerMode = result.list[0].clinicalMultiplayerMode;
  898. this.showAppendUser = result.list[0].showAppendUser;
  899. this.clinicalTaskIds = result.list[0].clinicalTaskIds ? result.list[0].clinicalTaskIds.split(',') : [] ;
  900. }else{
  901. this.clinicalMultiplayerMode = 0;
  902. this.showAppendUser = 0;
  903. }
  904. } else {
  905. this.clinicalMultiplayerMode = 0;
  906. this.showAppendUser = 0;
  907. }
  908. }else{
  909. uni.showToast({
  910. icon: 'none',
  911. title: '未设置其他临床服务业务类型!'
  912. })
  913. }
  914. this.getBloodPageConfig()
  915. this.waitingOrdersGetNum();
  916. this.executingOrders(0);
  917. this.getWorkStateList();
  918. },
  919. getWorkStateList(){
  920. post('/common/common/getDictionary', {
  921. "type": "list",
  922. "key": "user_work_state"
  923. }).then(res => {
  924. this.workStateList = res;
  925. });
  926. },
  927. // 获取血制品页面控制开关
  928. async getBloodPageConfig(){
  929. let result = await this.getTaskBloodConfig();
  930. if (result.status == 200) {
  931. if(result.list && result.list[0]){
  932. let signTypeList = result.list[0].signTypeList || [];
  933. this.signType4 = signTypeList.some(v => v.value == 4);
  934. this.delivery = result.list[0].delivery;
  935. this.useTakeCode = result.list[0].useTakeCode;
  936. this.takeCodeType = result.list[0].takeCodeType;
  937. }else{
  938. this.signType4 = false;
  939. this.delivery = 0;
  940. this.useTakeCode = 0;
  941. this.takeCodeType = {};
  942. }
  943. } else {
  944. this.signType4 = false;
  945. this.delivery = 0;
  946. this.useTakeCode = 0;
  947. this.takeCodeType = {};
  948. }
  949. },
  950. //获取其他临床服务业务类型
  951. getOtherAssociationTypes(){
  952. return post('/common/common/getDictionary', {
  953. "type": "list",
  954. "key": "association_types"
  955. });
  956. },
  957. // 获取临床服务页面控制开关
  958. getTaskOtherConfig(){
  959. return post("/simple/data/fetchDataList/taskTypeConfig", {
  960. "idx": 0,
  961. "sum": 10,
  962. "taskTypeConfig": {
  963. "hosId": this.hosId,
  964. "associationType": this.otherAssociationTypeId,
  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. // 科室二维码切换科室回显
  2728. if (options.showDepartmentQrcodeId && options.showDepartmentQrcodeDept) {
  2729. this.updateUser({id: options.showDepartmentQrcodeId, dept: options.showDepartmentQrcodeDept})
  2730. }
  2731. // #ifdef APP-PLUS
  2732. webHandle("no", "app");
  2733. // #endif
  2734. // #ifdef H5
  2735. webHandle("no", "wx");
  2736. // #endif
  2737. },
  2738. onShow() {
  2739. let that = this
  2740. // #ifdef APP-PLUS
  2741. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  2742. uni.$on('scan', function(data) {
  2743. console.log(888,data)
  2744. that.padChange(data)
  2745. })
  2746. // #endif
  2747. this.SMFlag = true;
  2748. // #ifdef H5
  2749. document.body.addEventListener("touchmove", this.stop, {
  2750. passive: false,
  2751. });
  2752. // #endif
  2753. },
  2754. onHide() {
  2755. // #ifdef H5
  2756. document.body.removeEventListener("touchmove", this.stop, {
  2757. passive: false,
  2758. });
  2759. // #endif
  2760. },
  2761. }
  2762. };
  2763. </script>
  2764. <style lang="less">
  2765. .hideInput{
  2766. height: 40px;
  2767. position: absolute;
  2768. width: 100px;
  2769. top: 100px;
  2770. left: 100px;
  2771. z-index: 99999;
  2772. border: 1px solid;
  2773. padding-left: 10px;
  2774. }
  2775. /deep/ .uni-drawer__content{
  2776. width: 600rpx !important;
  2777. }
  2778. /deep/ .selected-item-active{
  2779. border-bottom: 4rpx solid #49b856;
  2780. }
  2781. .Receiptpage {
  2782. width: 100%;
  2783. height: 100%;
  2784. position: relative;
  2785. .execFilterMask{
  2786. // position: fixed;
  2787. // top: 0;
  2788. // right: 0;
  2789. // bottom: 0;
  2790. // left: 0;
  2791. // z-index: 9999;
  2792. // background-color: rgba(0, 0, 0, 0.5);
  2793. // display: flex;
  2794. // flex-direction: column;
  2795. // justify-content: flex-end;
  2796. .execFilter{
  2797. position: relative;
  2798. background-color: #fff;
  2799. height: 100vh;
  2800. border-radius: 100rpx 100rpx 0 0;
  2801. .execFilterHeader{
  2802. height: 70rpx;
  2803. display: flex;
  2804. justify-content: center;
  2805. align-items: center;
  2806. border-bottom: 2rpx solid #ccc;
  2807. }
  2808. .execFilterBody{
  2809. .execFilterItem{
  2810. padding: 32rpx;
  2811. border-bottom: 2rpx dashed #ccc;
  2812. &:last-of-type{
  2813. border-bottom: none;
  2814. }
  2815. .execFilterItemHeader{}
  2816. .execFilterItemBody{
  2817. display: flex;
  2818. flex-wrap: wrap;
  2819. padding: 32rpx 0 0;
  2820. justify-content: space-between;
  2821. text-align: left;
  2822. .execFilterItemBox{
  2823. width: 200rpx;
  2824. height: 80rpx;
  2825. text-align: center;
  2826. line-height: 80rpx;
  2827. background-color: #f6f6f6;
  2828. margin-bottom: 20rpx;
  2829. border-radius: 80rpx;
  2830. &.active{
  2831. color: #fff;
  2832. background-color: #49b856;
  2833. }
  2834. }
  2835. .deptName {
  2836. height: 80rpx;
  2837. background-color: #f6f6f6;
  2838. border-radius: 20rpx;
  2839. padding: 0 20rpx;
  2840. width: 100%;
  2841. }
  2842. }
  2843. }
  2844. }
  2845. .execFilterFooter {
  2846. position: absolute;
  2847. bottom: 0;
  2848. right: 0;
  2849. left: 0;
  2850. line-height: 66rpx;
  2851. height: 100rpx;
  2852. display: flex;
  2853. justify-content: space-between;
  2854. .btn {
  2855. height: 66rpx;
  2856. flex: 1;
  2857. margin: 0 1%;
  2858. background-image: linear-gradient(to right, #72c172, #3bb197);
  2859. color: #fff;
  2860. border-radius: 8rpx;
  2861. font-size: 28rpx;
  2862. margin-top: 16rpx;
  2863. text-align: center;
  2864. }
  2865. }
  2866. }
  2867. }
  2868. .more {
  2869. position: absolute;
  2870. right: 20rpx;
  2871. width: 40rpx;
  2872. height: 4rpx;
  2873. border-top: 2px solid #49b856;
  2874. border-bottom: 2px solid #49b856;
  2875. background-color: #49b856;
  2876. padding: 5px 0;
  2877. background-clip: content-box;
  2878. z-index: 9999;
  2879. top: 50%;
  2880. transform: translateY(-50%);
  2881. }
  2882. .more_picker {
  2883. position: absolute;
  2884. right: 0;
  2885. height: 100%;
  2886. opacity: 0;
  2887. z-index: 9999;
  2888. }
  2889. .bigScreenWrap{
  2890. position: fixed;
  2891. left: 0;
  2892. right: 0;
  2893. bottom: 30rpx;
  2894. z-index: 999;
  2895. height: 88rpx;
  2896. }
  2897. .red {
  2898. color: red !important;
  2899. font-weight: bold !important;
  2900. }
  2901. .page_tab {
  2902. width: 100%;
  2903. height: 96rpx;
  2904. display: flex;
  2905. position: fixed;
  2906. left: 0;
  2907. top: 0;
  2908. z-index: 999;
  2909. .page_tab_bar {
  2910. flex: 1;
  2911. font-size: 36rpx;
  2912. background: #fff;
  2913. display: flex;
  2914. justify-content: center;
  2915. align-items: center;
  2916. position: relative;
  2917. &:after {
  2918. content: "";
  2919. position: absolute;
  2920. left: 0;
  2921. bottom: 0;
  2922. height: 2rpx;
  2923. width: 100%;
  2924. background-color: transparent;
  2925. }
  2926. .tab_num {
  2927. color: #ff3b53;
  2928. margin-left: 8rpx;
  2929. }
  2930. &.active {
  2931. color: #49b856;
  2932. &:after {
  2933. background-color: #49b856;
  2934. }
  2935. }
  2936. }
  2937. }
  2938. .zwsj {
  2939. position: absolute;
  2940. left: 50%;
  2941. top: 180rpx;
  2942. transform: translateX(-50%);
  2943. .zwsj-img {
  2944. width: 560rpx;
  2945. }
  2946. .zwsj-txt {
  2947. font-size: 36rpx;
  2948. font-weight: 700;
  2949. margin-top: 20rpx;
  2950. text-align: center;
  2951. }
  2952. }
  2953. .page_items {
  2954. height: calc(100vh - 214rpx);
  2955. padding: 0 20rpx;
  2956. // padding-bottom: 88rpx;
  2957. padding-top: 96rpx;
  2958. .page_items_scroll {
  2959. height: 100%;
  2960. .page_item_wrap {
  2961. position: relative;
  2962. margin-bottom: 32rpx;
  2963. .page_item {
  2964. margin-bottom: 16rpx;
  2965. // min-height: 356rpx;
  2966. background: #fff;
  2967. border-radius: 8rpx;
  2968. overflow: hidden;
  2969. border: 2rpx solid #e5e9ed;
  2970. .L {
  2971. width: 40rpx;
  2972. height: 40rpx;
  2973. border-radius: 50%;
  2974. background: #f9fafb;
  2975. position: absolute;
  2976. left: -24rpx;
  2977. top: 68rpx;
  2978. border: 2rpx solid #e5e9ed;
  2979. }
  2980. .R {
  2981. width: 40rpx;
  2982. height: 40rpx;
  2983. border-radius: 50%;
  2984. background: #f9fafb;
  2985. position: absolute;
  2986. float: right;
  2987. right: -24rpx;
  2988. top: 68rpx;
  2989. border: 2rpx solid #e5e9ed;
  2990. }
  2991. .starting {
  2992. width: 40rpx;
  2993. height: 40rpx;
  2994. color: #fff;
  2995. background: #49b856;
  2996. display: inline-block;
  2997. border-radius: 50%;
  2998. text-align: center;
  2999. line-height: 40rpx;
  3000. font-size: 28rpx;
  3001. }
  3002. .End {
  3003. width: 40rpx;
  3004. height: 40rpx;
  3005. color: #fff;
  3006. background: #39b199;
  3007. display: inline-block;
  3008. border-radius: 50%;
  3009. text-align: center;
  3010. line-height: 40rpx;
  3011. font-size: 28rpx;
  3012. }
  3013. .page_item_top {
  3014. height: 86rpx;
  3015. border-bottom: 2rpx dashed #e5e9ed;
  3016. padding: 0 16rpx;
  3017. .page_item_top_L {
  3018. height: 100%;
  3019. float: left;
  3020. line-height: 88rpx;
  3021. display: flex;
  3022. align-items: center;
  3023. .emergencys {
  3024. background: #ff3b53 !important;
  3025. width: 124rpx !important;
  3026. }
  3027. .emergency {
  3028. background: #ff3b53 !important;
  3029. }
  3030. .emergency1 {
  3031. background: #49b856 !important;
  3032. }
  3033. .page_item_cont_start {
  3034. text-align: center;
  3035. height: 44rpx;
  3036. width: 104rpx;
  3037. line-height: 44rpx;
  3038. border-radius: 8rpx;
  3039. background: #49b856;
  3040. color: #fff;
  3041. .page_item_cont_start-img {
  3042. width: 22rpx;
  3043. position: relative;
  3044. top: 6rpx;
  3045. margin-right: 8rpx;
  3046. }
  3047. }
  3048. .L_iocn {
  3049. display: inline-block;
  3050. width: 44rpx;
  3051. height: 44rpx;
  3052. line-height: 42rpx;
  3053. border-radius: 100rpx;
  3054. color: #6cc076;
  3055. font-size: 32rpx;
  3056. border: 4rpx solid #6cc076;
  3057. background: #f0f6ed;
  3058. text-align: center;
  3059. margin-right: 8rpx;
  3060. }
  3061. .L_time {
  3062. color: #6cc076;
  3063. font-size: 32rpx;
  3064. }
  3065. .L_text {
  3066. font-size: 32rpx;
  3067. }
  3068. }
  3069. .page_item_top_R {
  3070. height: 100%;
  3071. float: right;
  3072. line-height: 88rpx;
  3073. font-size: 32rpx;
  3074. &.type {
  3075. margin-right: 32rpx;
  3076. color: red;
  3077. max-width: 260rpx;
  3078. white-space: nowrap;
  3079. text-overflow: ellipsis;
  3080. overflow: hidden;
  3081. }
  3082. .text_big{
  3083. font-weight: bold;
  3084. }
  3085. }
  3086. }
  3087. .page_item_cont {
  3088. min-height: 180rpx;
  3089. padding: 0 16rpx;
  3090. text-align: left;
  3091. position: relative;
  3092. display: flex;
  3093. flex-direction: column;
  3094. justify-content: space-between;
  3095. .text_big {
  3096. font-size: 32rpx;
  3097. margin-left: 10rpx;
  3098. font-weight: 700;
  3099. }
  3100. .line {
  3101. height: 100%;
  3102. width: 2rpx;
  3103. border-left: 2rpx solid #e5e9ed;
  3104. position: absolute;
  3105. // top: 70rpx;
  3106. top: 50%;
  3107. left: 20rpx;
  3108. transform: translateY(-50%);
  3109. }
  3110. .lines {
  3111. height: 40%;
  3112. width: 2rpx;
  3113. border-left: 2rpx solid #e5e9ed;
  3114. position: absolute;
  3115. top: 23%;
  3116. left: 36rpx;
  3117. }
  3118. .emergencys {
  3119. background: #ff3b53 !important;
  3120. width: 124rpx !important;
  3121. }
  3122. .emergency {
  3123. background: #ff3b53 !important;
  3124. }
  3125. .emergency1 {
  3126. background: #49b856 !important;
  3127. }
  3128. .page_item_cont_T {
  3129. // min-height: 80rpx;
  3130. // max-height: 324rpx;
  3131. font-size: 28rpx;
  3132. margin-top: 16rpx;
  3133. display: flex;
  3134. justify-content: space-between;
  3135. .page_item_cont_title {
  3136. height: 100%;
  3137. // float: left;
  3138. }
  3139. .page_item_cont_start {
  3140. text-align: center;
  3141. // float: right;
  3142. height: 44rpx;
  3143. width: 104rpx;
  3144. line-height: 44rpx;
  3145. border-radius: 8rpx;
  3146. background: #49b856;
  3147. color: #fff;
  3148. .page_item_cont_start-img {
  3149. width: 22rpx;
  3150. position: relative;
  3151. top: 6rpx;
  3152. margin-right: 8rpx;
  3153. }
  3154. }
  3155. }
  3156. .page_item_conts {
  3157. min-height: 30rpx;
  3158. color: rgb(102, 102, 102);
  3159. padding-left: 50rpx;
  3160. font-size: 28rpx;
  3161. margin: 16rpx 0;
  3162. position: relative;
  3163. view:not(.line) {
  3164. line-height: 1.2;
  3165. }
  3166. text {
  3167. color: #49b856;
  3168. }
  3169. }
  3170. .page_item_cont_B {
  3171. // padding-top: 20rpx;
  3172. font-size: 28rpx;
  3173. // overflow: hidden;
  3174. margin-bottom: 16rpx;
  3175. .page_item_cont_title {
  3176. height: 100%;
  3177. float: left;
  3178. }
  3179. }
  3180. }
  3181. .page_item_btn_wrap {
  3182. display: flex;
  3183. justify-content: space-between;
  3184. .page_item_btn {
  3185. height: 88rpx;
  3186. flex: 1;
  3187. margin-left: 1%;
  3188. background-image: linear-gradient(to right, #72c172, #3bb197);
  3189. border-radius: 8rpx;
  3190. line-height: 88rpx;
  3191. color: #fff;
  3192. font-size: 36rpx;
  3193. font-weight: 700;
  3194. text-align: center;
  3195. &:first-of-type{
  3196. margin-left: 0;
  3197. }
  3198. }
  3199. }
  3200. .page_item_btn {
  3201. height: 88rpx;
  3202. background-image: linear-gradient(to right, #72c172, #3bb197);
  3203. border-radius: 8rpx;
  3204. line-height: 88rpx;
  3205. color: #fff;
  3206. font-size: 36rpx;
  3207. font-weight: 700;
  3208. text-align: center;
  3209. }
  3210. }
  3211. .L-l {
  3212. width: 2rpx;
  3213. height: 40rpx;
  3214. background: #f9fafb;
  3215. position: absolute;
  3216. left: 20rpx;
  3217. top: 72rpx;
  3218. display: none;
  3219. }
  3220. .R-l {
  3221. width: 2rpx;
  3222. height: 40rpx;
  3223. background: #f9fafb;
  3224. position: absolute;
  3225. right: 20rpx;
  3226. top: 72rpx;
  3227. display: none;
  3228. }
  3229. }
  3230. }
  3231. }
  3232. .text {
  3233. font-size: 36rpx;
  3234. }
  3235. .wt_icon {
  3236. font-size: 40rpx;
  3237. }
  3238. }
  3239. </style>