receiptpage.vue 41 KB

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