receiptpage.vue 103 KB

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