receiptpage.vue 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294
  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 === '执行中'"></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. <text class="L_time" v-if="item.overdueTime">{{ item.overdueTime }}前送达</text>
  39. </view>
  40. <view class="page_item_top_R" v-if="
  41. !(
  42. item.taskType.associationType.value == 'inspect' &&
  43. item.gdState.value == 5
  44. )
  45. ">
  46. {{ item.gdState.name }}
  47. <!-- 待取货 -->
  48. </view>
  49. <view class="page_item_top_R" v-if="
  50. item.taskType.associationType.value == 'inspect' &&
  51. item.gdState.value == 5
  52. ">
  53. 待送回
  54. <!-- 待取货 -->
  55. </view>
  56. <view class="page_item_top_R type">
  57. {{
  58. item.isHalfInspect === 1 ? "半程陪检" : item.taskType.taskName
  59. }}<template v-if="item.goodsRemark">-{{item.goodsRemark}}</template>
  60. </view>
  61. </view>
  62. <view class="page_item_cont" @click="itemInfo(item)">
  63. <view class="page_item_cont_T">
  64. <view class="page_item_cont_title">
  65. <text> <text class="starting">起</text> 点科室 </text>
  66. <text class="text_big">{{ item.startDept.dept }}</text>
  67. </view>
  68. <view class="page_item_cont_start emergency1" v-if="item.emergencyType.value == 1">
  69. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  70. </image>
  71. {{ item.emergencyType.name }}
  72. </view>
  73. <view class="page_item_cont_start emergency" v-if="item.emergencyType.value == 2">
  74. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  75. </image>
  76. {{ item.emergencyType.name }}
  77. </view>
  78. <view class="page_item_cont_start emergencys" v-if="item.emergencyType.value == 3">
  79. <image mode="widthFix" class="page_item_cont_start-img" src="../../static/img/icon_shandian.png">
  80. </image>
  81. {{ item.emergencyType.name }}
  82. </view>
  83. </view>
  84. <view class="page_item_conts" v-if="item.taskType.associationType.value == 'specimen'">
  85. <view>扫描标本数量 : {{ item.actualReceiveNum || '无'}}</view>
  86. <view class="line"></view>
  87. </view>
  88. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'inspect'">
  89. <view>
  90. 预约时间 : {{ item.yyTime | yyTimeFilter
  91. }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
  92. </view>
  93. <view>
  94. 床号 : {{ item.patient ? item.patient.patientName : "-" }}({{
  95. item.patient ? item.patient.bedNum : "-"
  96. }})
  97. </view>
  98. <view>
  99. 携带设备 :
  100. <text>{{ item.goods || "暂无" }}</text>
  101. </view>
  102. <view v-if="item.patient.careLevel">
  103. 护理等级 :
  104. <text :class="[
  105. item.patient.careLevel.value == 0 ||
  106. item.patient.careLevel.value == 1
  107. ? 'red'
  108. : 'green',
  109. ]">{{ item.patient.careLevel.name }}</text>
  110. </view>
  111. <view v-if="item.patient.illnessState">
  112. 病情级别 :
  113. <text :class="{
  114. red:
  115. item.patient.illnessState.value == 2 ||
  116. item.patient.illnessState.value == 3,
  117. }">{{ item.patient.illnessState.name }}</text>
  118. </view>
  119. <view v-if="item.isAccompany === 1 || item.isAccompany === 0">
  120. 陪同情况 :
  121. <text :class="{ red: item.isAccompany === 1 }">{{
  122. item.isAccompany === 1 ? "需要医护陪同" : "无需医护陪同"
  123. }}</text>
  124. </view>
  125. <view class="line"></view>
  126. </view>
  127. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'patientTransport'">
  128. <view>
  129. 预约时间 : {{ item.yyjdTime | yyTimeFilter
  130. }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
  131. </view>
  132. <view>
  133. 床号 : {{ item.patient ? item.patient.patientName : "-" }}({{
  134. item.patient ? item.patient.bedNum : "-"
  135. }})
  136. </view>
  137. <view>
  138. 携带设备 :
  139. <text>{{ item.goods || "暂无" }}</text>
  140. </view>
  141. <view v-if="item.patient.careLevel">
  142. 护理等级 :
  143. <text :class="[
  144. item.patient.careLevel.value == 0 ||
  145. item.patient.careLevel.value == 1
  146. ? 'red'
  147. : 'green',
  148. ]">{{ item.patient.careLevel.name }}</text>
  149. </view>
  150. <view v-if="item.patient.illnessState">
  151. 病情级别 :
  152. <text :class="{
  153. red:
  154. item.patient.illnessState.value == 2 ||
  155. item.patient.illnessState.value == 3,
  156. }">{{ item.patient.illnessState.name }}</text>
  157. </view>
  158. <view v-if="item.isAccompany === 1 || item.isAccompany === 0">
  159. 陪同情况 :
  160. <text :class="{ red: item.isAccompany === 1 }">{{
  161. item.isAccompany === 1 ? "需要医护陪同" : "无需医护陪同"
  162. }}</text>
  163. </view>
  164. <view class="line"></view>
  165. </view>
  166. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'drugsBag'">
  167. <view>
  168. 药包编码 : {{ item.drugs ? item.drugs.packid : "无" }}
  169. </view>
  170. <view class="line"></view>
  171. </view>
  172. <view class="page_item_conts" v-else-if="item.taskType.associationType.value == 'jPBag'">
  173. <view>
  174. 药包编码 :
  175. {{ item.staticDistri ? item.staticDistri.packid : "无" }}
  176. </view>
  177. <view class="line"></view>
  178. </view>
  179. <view class="page_item_conts" v-else>
  180. <view class="line"></view>
  181. </view>
  182. <view class="page_item_cont_B">
  183. <view class="page_item_cont_title" v-if="item.taskType.associationType.value != 'inspect'">
  184. <text> <text class="End">终</text> 点科室 </text>
  185. <text class="text_big" v-for="(dept, i) of item.endDepts" :key="i">{{ dept.dept }}</text>
  186. </view>
  187. <view class="page_item_cont_title" v-if="item.taskType.associationType.value == 'inspect'">
  188. <text> <text class="End">检</text> 查科室 </text>
  189. <text class="text_big" v-for="(dept, i) of item.middleDept" :key="i">{{ dept.dept }}</text>
  190. </view>
  191. </view>
  192. </view>
  193. <view v-if="
  194. item.taskType.associationType.value == 'inspect' ||
  195. item.taskType.associationType.value == 'patientTransport'
  196. ">
  197. <!-- 待抢单 -->
  198. <text class="red" v-if="item.gdState.value == 2">请扫描患者腕带,或者请扫描科室码</text>
  199. <!-- 待到达 -->
  200. <text class="red" v-if="item.gdState.value == 4">请扫描患者腕带</text>
  201. <!-- 执行中 -->
  202. <text class="red" v-if="item.gdState.value == 8">请扫描检查科室码,并扫描患者腕带</text>
  203. <!-- 待送达 -->
  204. <text class="red" v-if="item.gdState.value == 5">请扫描终点科室码,并扫描患者腕带</text>
  205. </view>
  206. <!-- 如果不是患者陪检或患者转运或其他 -->
  207. <view class="page_item_btn" v-if="
  208. selectedLabelSlots == '执行中' &&
  209. item.taskType.associationType.value != 'patientTransport' &&
  210. item.taskType.associationType.value != 'inspect' &&
  211. item.taskType.associationType.value != 'other'
  212. " hover-class="seimin-btn-hover">
  213. <smallScreen :sData="item" :sType="2">扫码</smallScreen>
  214. </view>
  215. <!-- 如果不是静配,药配,标本配送,标本轮巡 -->
  216. <view class="page_item_btn_wrap" v-if="
  217. selectedLabelSlots == '执行中' &&
  218. item.taskType.associationType.value != 'jPBag' &&
  219. item.taskType.associationType.value != 'drugsBag' &&
  220. item.taskType.associationType.value != 'specimen' &&
  221. item.taskType.associationType.value != 'specimenPlan'
  222. ">
  223. <view class="page_item_btn" :style="{
  224. width:
  225. item.taskType.associationType.value != 'other' &&
  226. item.gdState.value == 4
  227. ? '50%'
  228. : '100%',
  229. }" hover-class="seimin-btn-hover">
  230. <smallScreen :sData="item" :sType="1">扫码</smallScreen>
  231. </view>
  232. <view v-if="
  233. item.taskType.associationType.value != 'other' &&
  234. item.gdState.value == 4
  235. " class="page_item_btn" @click="photograph(item)" hover-class="seimin-btn-hover">拍照</view>
  236. </view>
  237. <view class="page_item_btn" v-if="selectedLabelSlots == '待接单'" @click="showAlerts(item)"
  238. hover-class="seimin-btn-hover">接单</view>
  239. </view>
  240. <view class="L-l"></view>
  241. <view class="R-l"></view>
  242. </view>
  243. </scroll-view>
  244. </view>
  245. <!-- 底部扫一扫 -->
  246. <bigScreen></bigScreen>
  247. <!-- 悬浮按钮 -->
  248. <uni-fab :pattern="pattern" :content="content" :direction="direction" @trigger="trigger"></uni-fab>
  249. <!-- 弹窗 -->
  250. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  251. @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
  252. <!-- 手动查询标本弹窗 -->
  253. <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
  254. @ok="speOk" @cancel="speCancel">
  255. </handViewSpecimen>
  256. <!-- 手动查询药品弹窗 -->
  257. <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title" :disjunctor="drugbagModels.disjunctor"
  258. @ok="drugbagOk" @cancel="drugbagCancel">
  259. </handViewDrugsBag>
  260. </view>
  261. </template>
  262. <script>
  263. import smallScreen from "../../components/smallScreen/smallScreen.vue";
  264. import showModel from "../../components/showModel/showModel.vue";
  265. import bigScreen from "../../components/bigScreen/bigScreen.vue";
  266. // https://ext.dcloud.net.cn/plugin?id=144
  267. import uniFab from "@/components/uni-fab/uni-fab.vue";
  268. import {
  269. get,
  270. post,
  271. SM,
  272. deleteIt,
  273. webHandle
  274. } from "../../http/http.js";
  275. import {
  276. photographTool
  277. } from "../../tools/photograph.js";
  278. export default {
  279. data() {
  280. return {
  281. // 手动查询标本弹窗model
  282. speModels: {
  283. disjunctor: false,
  284. },
  285. // 手动查询药品弹窗model
  286. drugbagModels: {
  287. disjunctor: false,
  288. },
  289. // 筛选条件
  290. array: [{
  291. id: 0,
  292. name: "全部",
  293. },
  294. {
  295. id: 71,
  296. name: "待到达",
  297. },
  298. {
  299. id: 72,
  300. name: "待送达",
  301. },
  302. {
  303. id: 75,
  304. name: "执行中",
  305. },
  306. ],
  307. index: 0,
  308. arrayKey: 0,
  309. // 当前登录人是否是药房角色
  310. pharmacistFlag: false,
  311. // 抢单的id
  312. qdId: "",
  313. // 弹窗model
  314. models: {
  315. disjunctor: false,
  316. },
  317. // 悬浮按钮样式
  318. pattern: {
  319. buttonColor: "#6cc076",
  320. },
  321. // 悬浮按钮展开菜单显示方式
  322. direction: "vertical",
  323. // 悬浮按钮展开菜单内容配置项
  324. content: [{
  325. text: "我的任务",
  326. }, ],
  327. // 当前选中tab页名称
  328. selectedLabelSlots: "待接单",
  329. // tab页信息
  330. tabs: [{
  331. label: "待接单", //tab页名称
  332. value: "1", //值
  333. num: 0, //数量
  334. },
  335. {
  336. label: "执行中",
  337. value: "2",
  338. num: 0,
  339. },
  340. ],
  341. //列表数据
  342. zxzData: [],
  343. //分页页码
  344. idx: 0,
  345. // 列表项总数
  346. totalNum: -1,
  347. triggered: false, //下拉刷新状态
  348. freshing: false, //上拉加载开关
  349. scroll_top: 0, //距离顶部的距离
  350. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  351. };
  352. },
  353. filters: {
  354. // 自定义管道 yyTime
  355. yyTimeFilter: function(data) {
  356. if (data) {
  357. let nDate = null;
  358. if(typeof data == 'string'){
  359. let arr = data.split(/[-:\s]/);
  360. nDate = new Date(
  361. arr[0] - 0,
  362. arr[1] - 1,
  363. arr[2] - 0,
  364. arr[3] - 0,
  365. arr[4] - 0,
  366. 0
  367. );
  368. }else if(typeof data == 'number'){
  369. nDate = new Date(data);
  370. }
  371. const month = (nDate.getMonth() + 1).toString().padStart(2, 0);
  372. const date = nDate.getDate().toString().padStart(2, 0);
  373. const hour = nDate.getHours().toString().padStart(2, 0);
  374. const minute = nDate.getMinutes().toString().padStart(2, 0);
  375. return `${month}-${date} ${hour}:${minute}`;
  376. } else {
  377. return "-";
  378. }
  379. },
  380. },
  381. components: {
  382. uniFab,
  383. showModel,
  384. bigScreen,
  385. },
  386. methods: {
  387. // 手动查询药品-确认
  388. drugbagOk(data) {
  389. console.log(data);
  390. if (!data.id) {
  391. //没有查询到药品
  392. uni.showModal({
  393. title: '提示',
  394. content: "没有查询到发药单号!",
  395. showCancel: false,
  396. success: function(res) {
  397. if (res.confirm) {
  398. console.log('用户点击确定');
  399. } else if (res.cancel) {
  400. console.log('用户点击取消');
  401. }
  402. }
  403. });
  404. return;
  405. }
  406. this.drugbagModels.disjunctor = false;
  407. uni.navigateTo({
  408. url: `/pages/scanning_drug/scanning_drug?drugsBagId=${data.id}`,
  409. });
  410. },
  411. // 手动查询药品-取消
  412. drugbagCancel() {
  413. this.drugbagModels.disjunctor = false;
  414. },
  415. // 手动查询药品弹窗
  416. showHandViewDrugsbag() {
  417. console.log(1)
  418. this.drugbagModels = {
  419. title: '填写发药单号',
  420. disjunctor: true,
  421. }
  422. },
  423. // 手动查询标本-确认
  424. speOk(data) {
  425. console.log(data);
  426. if (!data.id) {
  427. //没有查询到标本
  428. uni.showModal({
  429. title: '提示',
  430. content: "没有查询到标本!",
  431. showCancel: false,
  432. success: function(res) {
  433. if (res.confirm) {
  434. console.log('用户点击确定');
  435. } else if (res.cancel) {
  436. console.log('用户点击取消');
  437. }
  438. }
  439. });
  440. return;
  441. }
  442. this.speModels.disjunctor = false;
  443. let infoDATA = {
  444. stype: data.stype,
  445. scode: data.scode,
  446. patientName: data.patientName,
  447. sickRoom: data.sickRoom ?
  448. data.sickRoom.dept : "-",
  449. checkDept: data.checkDept ?
  450. data.checkDept.dept : "-",
  451. bedNum: data.bedNum,
  452. };
  453. uni.navigateTo({
  454. url: `../scanning_B/scanning_B?res=${encodeURIComponent(
  455. JSON.stringify({data,status:666,scanCodeSpecimenOrderSign:data.scanCodeSpecimenOrderSign,workOrder:data.workOrderDTO})
  456. )}&infoDATA=${encodeURIComponent(
  457. JSON.stringify(infoDATA)
  458. )}`,
  459. });
  460. },
  461. // 手动查询标本-取消
  462. speCancel() {
  463. this.speModels.disjunctor = false;
  464. },
  465. // 手动查询标本弹窗
  466. showHandViewSpecimen() {
  467. this.speModels = {
  468. title: '填写标本编码',
  469. disjunctor: true,
  470. }
  471. },
  472. // 执行中筛选
  473. execFilter({
  474. detail: {
  475. value
  476. }
  477. }) {
  478. this.index = value;
  479. this.arrayKey = this.array[value].id;
  480. this.zxzData = [];
  481. this.totalNum = -1;
  482. this.idx = 0;
  483. this.selectedLabelSlots = "执行中";
  484. this.executingOrders(0);
  485. },
  486. // 获取科室二维码设置开关
  487. getMenu() {
  488. let menu = uni.getStorageSync("userData").menu;
  489. //判断当前登陆人具体角色 start
  490. let roles = uni.getStorageSync("userData").user.role;
  491. this.pharmacistFlag = roles.some(
  492. (item) => item.rolecode === "pharmacist"
  493. );
  494. //判断当前登陆人具体角色 end
  495. console.log(menu);
  496. menu.forEach((item) => {
  497. if (item.link === "wxInspect") {
  498. this.content.push({
  499. text: "检查信息",
  500. });
  501. } else if (item.link === "wxPatient") {
  502. this.content.push({
  503. text: "患者信息",
  504. });
  505. } else if (item.link === "wxPharmacy") {
  506. // 如果是配药师人员,则增加药房
  507. if (this.pharmacistFlag) {
  508. this.content.push({
  509. text: "药房",
  510. });
  511. }
  512. } else if (item.link === "wxCode") {
  513. this.content.push({
  514. text: "二维码设置",
  515. });
  516. } else if (item.link === "wxSpecimenEntry") {
  517. this.content.push({
  518. text: "标本录入",
  519. });
  520. } else if (item.link === "wxDrugsbagEntry") {
  521. this.content.push({
  522. text: "药品录入",
  523. });
  524. }
  525. });
  526. },
  527. // 拍照
  528. photograph(data) {
  529. photographTool(data);
  530. },
  531. // 悬浮按钮点击事件
  532. trigger(e) {
  533. if (e.item.text === "我的任务") {
  534. uni.navigateTo({
  535. url: "../mypage/mypage",
  536. });
  537. } else if (e.item.text === "退出登录") {
  538. // 假登录
  539. uni.showToast({
  540. title: "退出成功!",
  541. });
  542. let ip = uni.getStorageSync("ip"); //记住域名或ip
  543. let username = uni.getStorageSync("username"); //记住用户名
  544. let password = uni.getStorageSync("password"); //记住密码
  545. let savePasswordTime = uni.getStorageSync("savePasswordTime"); //记住密码的时间戳
  546. let clientid = uni.getStorageSync("clientid");
  547. uni.clearStorageSync();
  548. if (username) {
  549. uni.setStorageSync("ip", ip); //记住域名或ip
  550. uni.setStorageSync("username", username); //记住用户名
  551. uni.setStorageSync("password", password); //记住密码
  552. uni.setStorageSync("savePasswordTime", savePasswordTime); //记住密码的时间戳
  553. }
  554. uni.setStorageSync("clientid", clientid);
  555. uni.navigateTo({
  556. url: "../homePage/homePage",
  557. });
  558. // 假登录
  559. deleteIt("/auth/logout2").then((result) => {
  560. if (result.status == 200) {
  561. uni.showToast({
  562. title: "退出成功!",
  563. });
  564. let ip = uni.getStorageSync("ip"); //记住域名或ip
  565. let username = uni.getStorageSync("username"); //记住用户名
  566. let password = uni.getStorageSync("password"); //记住密码
  567. let clientid = uni.getStorageSync("clientid");
  568. uni.clearStorageSync();
  569. uni.setStorageSync("ip", ip); //记住域名或ip
  570. uni.setStorageSync("username", username); //记住用户名
  571. uni.setStorageSync("password", password); //记住密码
  572. uni.setStorageSync("clientid", clientid);
  573. uni.navigateTo({
  574. url: "../homePage/homePage",
  575. });
  576. } else {
  577. uni.showToast({
  578. icon: "none",
  579. title: "请求失败!",
  580. });
  581. }
  582. });
  583. } else if (e.item.text === "药房") {
  584. uni.navigateTo({
  585. url: "../pharmacy/pharmacy",
  586. });
  587. } else if (e.item.text === "患者信息") {
  588. uni.navigateTo({
  589. url: "../patientInformationList/patientInformationList",
  590. });
  591. } else if (e.item.text === "负责科室") {
  592. if (uni.getStorageSync("setDepts")) {
  593. uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
  594. }
  595. let obj = uni.getStorageSync("setDeptConfg");
  596. uni.navigateTo({
  597. url: `../setDept/setDept?configName=${obj.configName}&id=${obj.id}&changedept=1`,
  598. });
  599. } else if (e.item.text === "检查信息") {
  600. uni.navigateTo({
  601. url: "../inspectList/inspectList",
  602. });
  603. } else if (e.item.text === "二维码设置") {
  604. uni.navigateTo({
  605. url: "../settingCode/settingCode",
  606. });
  607. } else if (e.item.text === "标本录入") {
  608. this.showHandViewSpecimen();
  609. } else if (e.item.text === "药品录入") {
  610. this.showHandViewDrugsbag();
  611. }
  612. },
  613. // 点击tab页切换
  614. clickHandler(key) {
  615. this.selectedLabelSlots = key;
  616. this.idx = 0;
  617. this.totalNum = -1;
  618. // this.zxzData = [];
  619. this.scroll_top = Math.random(); //回到顶部
  620. if (key === "待接单") {
  621. this.waitingOrders(0);
  622. } else if (key === "执行中") {
  623. this.executingOrders(0);
  624. }
  625. },
  626. // 进入详情页
  627. itemInfo(workOrder) {
  628. console.log(workOrder);
  629. uni.navigateTo({
  630. url: `../receipt_infopage/receipt_infopage?id=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
  631. });
  632. },
  633. //抢单后知道了
  634. know() {
  635. this.models.disjunctor = false;
  636. this.idx = 0;
  637. this.totalNum = -1;
  638. // this.zxzData = [];
  639. this.executingOrdersGetNum();
  640. this.waitingOrders(0); //seimin
  641. this.scroll_top = Math.random(); //回到顶部
  642. },
  643. //抢单确定
  644. ok() {
  645. this.models.disjunctor = false;
  646. get("/workerOrder/takeOrder/" + this.qdId.id).then((res) => {
  647. let msg = "接单失败";
  648. let icon = "error";
  649. if (res.status == 200) {
  650. msg = "接单成功";
  651. icon = "success";
  652. }
  653. this.models = {
  654. disjunctor: true,
  655. content: msg,
  656. icon: icon,
  657. operate: {
  658. know: "知道了",
  659. },
  660. };
  661. });
  662. },
  663. //抢单取消
  664. cancel() {
  665. this.models.disjunctor = false;
  666. },
  667. // 抢单
  668. showAlerts(data) {
  669. this.qdId = data;
  670. this.models = {
  671. disjunctor: true,
  672. title: "提示",
  673. content: "是否确定接单?",
  674. icon: "warn",
  675. operate: {
  676. ok: "确定",
  677. cancel: "取消",
  678. },
  679. };
  680. },
  681. //执行中列表数据获取
  682. executingOrders(idx) {
  683. console.log(this.zxzData.length, this.totalNum);
  684. if (this.zxzData.length == this.totalNum) {
  685. uni.showToast({
  686. icon: "none",
  687. title: "没有更多数据了!",
  688. });
  689. this.freshing = true;
  690. return;
  691. }
  692. let data = {
  693. idx,
  694. sum: 20,
  695. };
  696. if (this.arrayKey) {
  697. data.keyWord = this.arrayKey;
  698. } else {
  699. delete data.keyWord;
  700. }
  701. uni.showLoading({
  702. title: "加载中",
  703. mask: true,
  704. });
  705. post("/workerOrder/executingOrders", data).then((res) => {
  706. uni.hideLoading();
  707. if (res.status == 200) {
  708. this.triggered = false;
  709. this.freshing = true;
  710. this.totalNum = res.data.resultCount;
  711. if (idx === 0) {
  712. this.zxzData = res.data.data;
  713. } else {
  714. this.zxzData.push(...res.data.data);
  715. }
  716. this.tabs[1].num = res.data.resultCount;
  717. } else {
  718. uni.showToast({
  719. icon: "none",
  720. title: "请求失败!",
  721. });
  722. }
  723. });
  724. },
  725. //待抢单列表数据获取
  726. waitingOrders(idx) {
  727. if (this.zxzData.length == this.totalNum) {
  728. uni.showToast({
  729. icon: "none",
  730. title: "没有更多数据了!",
  731. });
  732. this.freshing = true;
  733. return;
  734. }
  735. let data = {
  736. idx,
  737. sum: 20,
  738. };
  739. uni.showLoading({
  740. title: "加载中",
  741. mask: true,
  742. });
  743. // 请求列表数据
  744. post("/workerOrder/waitingOrders", data).then((res) => {
  745. uni.hideLoading();
  746. if (res.status == 200) {
  747. this.triggered = false;
  748. this.freshing = true;
  749. this.totalNum = res.data.resultCount;
  750. if (idx === 0) {
  751. this.zxzData = res.data.data;
  752. } else {
  753. this.zxzData.push(...res.data.data);
  754. }
  755. this.tabs[0].num = res.data.resultCount;
  756. } else {
  757. uni.showToast({
  758. icon: "none",
  759. title: "请求失败!",
  760. });
  761. }
  762. });
  763. },
  764. //刷新
  765. refresherrefresh() {
  766. if (this.triggered) {
  767. return;
  768. }
  769. this.triggered = true;
  770. this.idx = 0;
  771. this.totalNum = -1;
  772. if (this.selectedLabelSlots == "待接单") {
  773. this.waitingOrders(0);
  774. } else if (this.selectedLabelSlots == "执行中") {
  775. this.executingOrders(0);
  776. }
  777. },
  778. // 滚动
  779. scroll(e) {
  780. if (e.detail.scrollTop < 20) {
  781. this.scroll_refresher_enabled = true;
  782. } else {
  783. this.scroll_refresher_enabled = false;
  784. }
  785. },
  786. // 下拉刷新复位
  787. refresherrestore() {
  788. this.triggered = false;
  789. console.log("下拉刷新复位");
  790. },
  791. //下拉刷新中止
  792. refresherabort() {
  793. this.triggered = false;
  794. console.log("下拉刷新中止");
  795. },
  796. //分页,上拉加载
  797. scrolltolower() {
  798. if (this.freshing) {
  799. this.freshing = false;
  800. if (this.selectedLabelSlots == "待接单") {
  801. this.waitingOrders(++this.idx);
  802. } else if (this.selectedLabelSlots == "执行中") {
  803. this.executingOrders(++this.idx);
  804. }
  805. }
  806. },
  807. // 执行中获取数字
  808. executingOrdersGetNum() {
  809. let data = {
  810. idx: 0,
  811. sum: 20,
  812. };
  813. if (this.arrayKey) {
  814. data.keyWord = this.arrayKey;
  815. } else {
  816. delete data.keyWord;
  817. }
  818. post("/workerOrder/executingOrders", data).then((res) => {
  819. if (res.status == 200) {
  820. this.tabs[1].num = res.data.resultCount;
  821. } else {
  822. uni.showToast({
  823. icon: "none",
  824. title: "请求失败!",
  825. });
  826. }
  827. });
  828. },
  829. // 待接单获取数字
  830. waitingOrdersGetNum() {
  831. let data = {
  832. idx: 0,
  833. sum: 20,
  834. };
  835. post("/workerOrder/waitingOrders", data).then((res) => {
  836. if (res.status == 200) {
  837. this.tabs[0].num = res.data.resultCount;
  838. } else {
  839. uni.showToast({
  840. icon: "none",
  841. title: "请求失败!",
  842. });
  843. }
  844. });
  845. },
  846. // 阻止浏览器滑动
  847. stop(e) {
  848. e.preventDefault();
  849. },
  850. },
  851. onLoad() {
  852. // 获取菜单权限
  853. this.getMenu();
  854. post("/auth/getUserWorkDept", {}).then((ress) => {
  855. if (ress.status == 200) {
  856. let userId = uni.getStorageSync("userData").user.id;
  857. let groupManager = ress.settings && ress.settings.groupManager; //当前工作组合选择的组
  858. let workType = ress.settings ? ress.settings.workType : -1; //1是综合,2是自主
  859. let ruleType = ress.settings ? ress.settings.ruleType : -1; //3是科室绑定人员,4是科室绑定分组,2是绑定分组
  860. if (workType == 2 && (ruleType == 3 || (ruleType == 4 && userId == groupManager.manager))) {
  861. //自选排班,科室绑定分组,当前登陆人是组长
  862. this.content.unshift({
  863. text: "负责科室",
  864. });
  865. }
  866. }
  867. });
  868. // let setDeptConfg = uni.getStorageSync("setDeptConfg");
  869. // let manager = uni.getStorageSync("manager");
  870. // let userId = uni.getStorageSync("userData").user.id;
  871. // console.log(setDeptConfg, manager, userId);
  872. // if (
  873. // setDeptConfg.workSchemeType == 2 &&
  874. // (setDeptConfg.ruleType == 3 ||
  875. // (setDeptConfg.ruleType == 4 && userId == manager))
  876. // ) {
  877. // //自选排班,科室绑定人员 || 科室绑定分组 && 组长是当前登陆人
  878. // this.content.unshift({
  879. // text: "负责科室",
  880. // });
  881. // }
  882. // #ifdef APP-PLUS
  883. // this.content.push({
  884. // text: "退出登录",
  885. // });
  886. // #endif
  887. this.selectedLabelSlots = "执行中";
  888. this.waitingOrdersGetNum();
  889. this.executingOrders(0);
  890. // #ifdef APP-PLUS
  891. webHandle("no", "app");
  892. // #endif
  893. // #ifdef H5
  894. webHandle("no", "wx");
  895. // #endif
  896. },
  897. onShow() {
  898. // #ifdef H5
  899. document.body.addEventListener("touchmove", this.stop, {
  900. passive: false,
  901. });
  902. // #endif
  903. },
  904. onHide() {
  905. // #ifdef H5
  906. document.body.removeEventListener("touchmove", this.stop, {
  907. passive: false,
  908. });
  909. // #endif
  910. },
  911. };
  912. </script>
  913. <style lang="less">
  914. .Receiptpage {
  915. width: 100%;
  916. height: 100%;
  917. position: relative;
  918. .red {
  919. color: red !important;
  920. font-weight: bold !important;
  921. }
  922. .page_tab {
  923. width: 100%;
  924. height: 96rpx;
  925. display: flex;
  926. position: fixed;
  927. left: 0;
  928. top: 0;
  929. z-index: 999;
  930. .page_tab_bar {
  931. flex: 1;
  932. font-size: 36rpx;
  933. background: #fff;
  934. display: flex;
  935. justify-content: center;
  936. align-items: center;
  937. position: relative;
  938. &:after {
  939. content: "";
  940. position: absolute;
  941. left: 0;
  942. bottom: 0;
  943. height: 2rpx;
  944. width: 100%;
  945. background-color: transparent;
  946. }
  947. .tab_num {
  948. color: #ff3b53;
  949. margin-left: 8rpx;
  950. }
  951. .more {
  952. position: absolute;
  953. right: 20rpx;
  954. width: 40rpx;
  955. height: 4rpx;
  956. border-top: 2px solid #49b856;
  957. border-bottom: 2px solid #49b856;
  958. background-color: #49b856;
  959. padding: 5px 0;
  960. background-clip: content-box;
  961. }
  962. .more_picker {
  963. position: absolute;
  964. right: 0;
  965. height: 100%;
  966. opacity: 0;
  967. }
  968. &.active {
  969. color: #49b856;
  970. &:after {
  971. background-color: #49b856;
  972. }
  973. }
  974. }
  975. }
  976. .zwsj {
  977. position: absolute;
  978. left: 50%;
  979. top: 180rpx;
  980. transform: translateX(-50%);
  981. .zwsj-img {
  982. width: 560rpx;
  983. }
  984. .zwsj-txt {
  985. font-size: 36rpx;
  986. font-weight: 700;
  987. margin-top: 20rpx;
  988. text-align: center;
  989. }
  990. }
  991. .page_items {
  992. height: calc(100vh - 184rpx);
  993. padding: 0 20rpx;
  994. // padding-bottom: 88rpx;
  995. padding-top: 96rpx;
  996. .page_items_scroll {
  997. height: 100%;
  998. .page_item_wrap {
  999. position: relative;
  1000. margin-bottom: 32rpx;
  1001. .page_item {
  1002. margin-bottom: 16rpx;
  1003. min-height: 356rpx;
  1004. background: #fff;
  1005. border-radius: 8rpx;
  1006. overflow: hidden;
  1007. border: 2rpx solid #e5e9ed;
  1008. .L {
  1009. width: 40rpx;
  1010. height: 40rpx;
  1011. border-radius: 50%;
  1012. background: #f9fafb;
  1013. position: absolute;
  1014. left: -24rpx;
  1015. top: 68rpx;
  1016. border: 2rpx solid #e5e9ed;
  1017. }
  1018. .R {
  1019. width: 40rpx;
  1020. height: 40rpx;
  1021. border-radius: 50%;
  1022. background: #f9fafb;
  1023. position: absolute;
  1024. float: right;
  1025. right: -24rpx;
  1026. top: 68rpx;
  1027. border: 2rpx solid #e5e9ed;
  1028. }
  1029. .starting {
  1030. width: 40rpx;
  1031. height: 40rpx;
  1032. color: #fff;
  1033. background: #49b856;
  1034. display: inline-block;
  1035. border-radius: 50%;
  1036. text-align: center;
  1037. line-height: 40rpx;
  1038. font-size: 28rpx;
  1039. }
  1040. .End {
  1041. width: 40rpx;
  1042. height: 40rpx;
  1043. color: #fff;
  1044. background: #39b199;
  1045. display: inline-block;
  1046. border-radius: 50%;
  1047. text-align: center;
  1048. line-height: 40rpx;
  1049. font-size: 28rpx;
  1050. }
  1051. .page_item_top {
  1052. height: 86rpx;
  1053. border-bottom: 2rpx dashed #e5e9ed;
  1054. padding: 0 16rpx;
  1055. .page_item_top_L {
  1056. height: 100%;
  1057. float: left;
  1058. line-height: 88rpx;
  1059. .L_iocn {
  1060. display: inline-block;
  1061. width: 44rpx;
  1062. height: 44rpx;
  1063. line-height: 42rpx;
  1064. border-radius: 100rpx;
  1065. color: #6cc076;
  1066. font-size: 32rpx;
  1067. border: 4rpx solid #6cc076;
  1068. background: #f0f6ed;
  1069. text-align: center;
  1070. margin-right: 8rpx;
  1071. }
  1072. .L_time {
  1073. color: #6cc076;
  1074. font-size: 32rpx;
  1075. }
  1076. .L_text {
  1077. font-size: 32rpx;
  1078. }
  1079. }
  1080. .page_item_top_R {
  1081. height: 100%;
  1082. float: right;
  1083. line-height: 88rpx;
  1084. font-size: 32rpx;
  1085. &.type {
  1086. margin-right: 32rpx;
  1087. color: red;
  1088. max-width: 260rpx;
  1089. white-space: nowrap;
  1090. text-overflow: ellipsis;
  1091. overflow: hidden;
  1092. }
  1093. }
  1094. }
  1095. .page_item_cont {
  1096. min-height: 180rpx;
  1097. padding: 0 16rpx;
  1098. text-align: left;
  1099. position: relative;
  1100. display: flex;
  1101. flex-direction: column;
  1102. justify-content: space-between;
  1103. .text_big {
  1104. font-size: 32rpx;
  1105. margin-left: 10rpx;
  1106. font-weight: 700;
  1107. }
  1108. .line {
  1109. height: 100%;
  1110. width: 2rpx;
  1111. border-left: 2rpx solid #e5e9ed;
  1112. position: absolute;
  1113. // top: 70rpx;
  1114. top: 50%;
  1115. left: 20rpx;
  1116. transform: translateY(-50%);
  1117. }
  1118. .lines {
  1119. height: 40%;
  1120. width: 2rpx;
  1121. border-left: 2rpx solid #e5e9ed;
  1122. position: absolute;
  1123. top: 23%;
  1124. left: 36rpx;
  1125. }
  1126. .emergencys {
  1127. background: #ff3b53 !important;
  1128. width: 124rpx !important;
  1129. }
  1130. .emergency {
  1131. background: #ff3b53 !important;
  1132. }
  1133. .emergency1 {
  1134. background: #49b856 !important;
  1135. }
  1136. .page_item_cont_T {
  1137. // min-height: 80rpx;
  1138. // max-height: 324rpx;
  1139. font-size: 28rpx;
  1140. margin-top: 16rpx;
  1141. display: flex;
  1142. justify-content: space-between;
  1143. .page_item_cont_title {
  1144. height: 100%;
  1145. // float: left;
  1146. }
  1147. .page_item_cont_start {
  1148. text-align: center;
  1149. // float: right;
  1150. height: 44rpx;
  1151. width: 104rpx;
  1152. line-height: 44rpx;
  1153. border-radius: 8rpx;
  1154. background: #49b856;
  1155. color: #fff;
  1156. .page_item_cont_start-img {
  1157. width: 22rpx;
  1158. position: relative;
  1159. top: 6rpx;
  1160. margin-right: 8rpx;
  1161. }
  1162. }
  1163. }
  1164. .page_item_conts {
  1165. min-height: 30rpx;
  1166. color: rgb(102, 102, 102);
  1167. padding-left: 50rpx;
  1168. font-size: 28rpx;
  1169. margin: 16rpx 0;
  1170. position: relative;
  1171. view:not(.line) {
  1172. line-height: 1.2;
  1173. }
  1174. text {
  1175. color: #49b856;
  1176. }
  1177. }
  1178. .page_item_cont_B {
  1179. // padding-top: 20rpx;
  1180. font-size: 28rpx;
  1181. // overflow: hidden;
  1182. margin-bottom: 16rpx;
  1183. .page_item_cont_title {
  1184. height: 100%;
  1185. float: left;
  1186. }
  1187. }
  1188. }
  1189. .page_item_btn_wrap {
  1190. display: flex;
  1191. justify-content: space-between;
  1192. .page_item_btn {
  1193. height: 88rpx;
  1194. width: 49%;
  1195. background-image: linear-gradient(to right, #72c172, #3bb197);
  1196. border-radius: 8rpx;
  1197. line-height: 88rpx;
  1198. color: #fff;
  1199. font-size: 36rpx;
  1200. font-weight: 700;
  1201. text-align: center;
  1202. }
  1203. }
  1204. .page_item_btn {
  1205. height: 88rpx;
  1206. background-image: linear-gradient(to right, #72c172, #3bb197);
  1207. border-radius: 8rpx;
  1208. line-height: 88rpx;
  1209. color: #fff;
  1210. font-size: 36rpx;
  1211. font-weight: 700;
  1212. text-align: center;
  1213. }
  1214. }
  1215. .L-l {
  1216. width: 2rpx;
  1217. height: 40rpx;
  1218. background: #f9fafb;
  1219. position: absolute;
  1220. left: 20rpx;
  1221. top: 72rpx;
  1222. display: none;
  1223. }
  1224. .R-l {
  1225. width: 2rpx;
  1226. height: 40rpx;
  1227. background: #f9fafb;
  1228. position: absolute;
  1229. right: 20rpx;
  1230. top: 72rpx;
  1231. display: none;
  1232. }
  1233. }
  1234. }
  1235. }
  1236. .text {
  1237. font-size: 36rpx;
  1238. }
  1239. .wt_icon {
  1240. font-size: 40rpx;
  1241. }
  1242. }
  1243. </style>