receiptpage.vue 35 KB

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