pharmacy.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633
  1. <template>
  2. <view class="pharmacy">
  3. <view class="pharmacy_header">
  4. <view class="page_tab_bar pharmacy_changeDept active">
  5. <view class="tab_dept">{{ currenDept.dept
  6. }}<button type="default" size="mini" class="changeDept" @click="changeDept">
  7. 切换科室
  8. </button></view>
  9. </view>
  10. <view
  11. class="scanning_btn"
  12. hover-class="seimin-btn-hover"
  13. @click="drugsScanning()"
  14. >
  15. <text class="icon_transport transport-saoma"></text>
  16. </view>
  17. <view class="scanFont">扫一扫</view>
  18. </view>
  19. <view class="pharmacy-heng">
  20. <view
  21. class="pharmacy-heng-tab"
  22. :class="{ 'cube-tab_active': selectedLabelSlots === item.id }"
  23. v-for="(item, i) in tabs"
  24. :key="i"
  25. @click="clickHandler(item.id)"
  26. >
  27. <view class="pharmacy-heng-label">{{ item.label }}</view>
  28. </view>
  29. </view>
  30. <view>
  31. <scroll-view
  32. scroll-y
  33. :refresher-enabled="scroll_refresher_enabled"
  34. :refresher-triggered="triggered"
  35. @refresherrefresh="refresherrefresh"
  36. @refresherrestore="refresherrestore"
  37. @scroll="scroll"
  38. @scrolltolower="scrolltolower"
  39. :scroll-top="scroll_top"
  40. @refresherabort="refresherabort"
  41. >
  42. <view class="page_scrollIt">
  43. <view
  44. class="page_item_wrap"
  45. v-for="row in list"
  46. :key="row.id"
  47. @click="getDetails(row.id)"
  48. >
  49. <view class="page_item">
  50. <view class="page_item_top">
  51. <view class="page_item_top-inner">
  52. <view class="page_item_top_L">
  53. <text class="L_text">请领单:{{ row.packid }}</text>
  54. </view>
  55. <view class="page_item_top_R">
  56. <text class="L_iocn">{{
  57. row.drugsState && row.drugsState.name
  58. }}</text>
  59. </view>
  60. </view>
  61. </view>
  62. <view class="page_item_cont">
  63. <!-- <view class="page_item_cont_T">
  64. <view class="page_item_cont_title">
  65. <text>批次号</text>
  66. <text class="text_big">{{ row.batchNo }}</text>
  67. </view>
  68. </view> -->
  69. <view class="page_item_cont_B">
  70. <view class="page_item_cont_title">
  71. <text>记账时间</text>
  72. <text class="text_big">
  73. <text>{{ row.creatTime }}</text>
  74. </text>
  75. </view>
  76. </view>
  77. <view class="page_item_cont_C">
  78. <view class="page_item_cont_title_C">
  79. <text>请领科室</text>
  80. <text class="text_big">
  81. <text>{{ row.target && row.target.dept }}</text>
  82. </text>
  83. </view>
  84. </view>
  85. </view>
  86. <view class="L"></view>
  87. <view class="R"></view>
  88. </view>
  89. <view class="L-l"></view>
  90. <view class="R-l"></view>
  91. </view>
  92. <view v-if="list.length == 0" class="zwsj">
  93. <image
  94. class="zwsj_img"
  95. mode="widthFix"
  96. src="../../static/img/zanwushuju.png"
  97. ></image>
  98. <view class="zwsj_txt">暂无数据</view>
  99. </view>
  100. </view>
  101. </scroll-view>
  102. </view>
  103. </view>
  104. </template>
  105. <script>
  106. import { get, post, SM, webHandle } from "../../http/http.js";
  107. export default {
  108. data() {
  109. return {
  110. SMFlag:true,
  111. triggered: false, //下拉刷新状态
  112. freshing: false, //上拉加载开关
  113. scroll_top: 0, //距离顶部的距离
  114. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  115. selectedLabelSlots: 4,
  116. list: [],
  117. idx: 0,
  118. totalNum: -1,
  119. tabs: [
  120. {
  121. id: 4,
  122. label: "待配药",
  123. },
  124. {
  125. id: 5,
  126. label: "配药中",
  127. },
  128. {
  129. id: 6,
  130. label: "核对中",
  131. },
  132. ],
  133. hosId: uni.getStorageSync("userData").user.currentHospital.id,//当前院区
  134. loginUser: uni.getStorageSync("userData"),
  135. currenDept: {},//当前登录人所属科室
  136. };
  137. },
  138. methods: {
  139. // tab切换
  140. clickHandler(id) {
  141. this.selectedLabelSlots = id;
  142. this.idx = 0;
  143. this.totalNum = -1;
  144. this.scroll_top = Math.random();
  145. //4为微信待配药、5为微信配药中、6为微信核对中
  146. this.getPharmacyListData(id, 0);
  147. },
  148. // 请求列表数据
  149. getPharmacyListData(type, idx) {
  150. if (this.list.length == this.totalNum) {
  151. uni.showToast({
  152. icon: "none",
  153. title: "没有更多数据了!",
  154. });
  155. this.freshing = true;
  156. return;
  157. }
  158. let data = {
  159. idx,
  160. sum: 20,
  161. drugsBag: {
  162. searchType: type,
  163. launch:{id:this.currenDept.id}
  164. },
  165. };
  166. uni.showLoading({
  167. title: "加载中",
  168. mask: true,
  169. });
  170. post("/api/fetchDataList/drugsBag", data).then((res) => {
  171. uni.hideLoading();
  172. if (res.status == 200) {
  173. this.triggered = false;
  174. this.freshing = true;
  175. this.totalNum = res.totalNum;
  176. if (idx === 0) {
  177. this.list = res.list;
  178. } else {
  179. this.list.push(...res.list);
  180. }
  181. } else {
  182. uni.showToast({
  183. icon: "none",
  184. title: "请求失败!",
  185. });
  186. }
  187. });
  188. },
  189. // 扫一扫
  190. drugsScanning() {
  191. if (!this.SMFlag) {
  192. return;
  193. }
  194. this.SMFlag = false;
  195. SM().then((ress) => {
  196. uni.navigateTo({
  197. url: "../pharmacyDetails/pharmacyDetails?qrcode=" + ress,
  198. });
  199. }).catch(err=>{
  200. this.SMFlag = true;
  201. });
  202. },
  203. //刷新
  204. refresherrefresh() {
  205. if (this.triggered) {
  206. return;
  207. }
  208. this.triggered = true;
  209. this.idx = 0;
  210. this.totalNum = -1;
  211. this.getPharmacyListData(this.selectedLabelSlots, 0);
  212. },
  213. // 滚动
  214. scroll(e) {
  215. if (e.detail.scrollTop < 20) {
  216. this.scroll_refresher_enabled = true;
  217. } else {
  218. this.scroll_refresher_enabled = false;
  219. }
  220. },
  221. // 下拉刷新复位
  222. refresherrestore() {
  223. this.triggered = false;
  224. console.log("下拉刷新复位");
  225. },
  226. //下拉刷新中止
  227. refresherabort() {
  228. this.triggered = false;
  229. console.log("下拉刷新中止");
  230. },
  231. //分页,上拉加载
  232. scrolltolower() {
  233. if (this.freshing) {
  234. this.freshing = false;
  235. this.getPharmacyListData(this.selectedLabelSlots, ++this.idx);
  236. }
  237. },
  238. // 详情页面
  239. getDetails(id) {
  240. uni.navigateTo({
  241. url: `../pharmacyDetails/pharmacyDetails?id=${id}`,
  242. });
  243. },
  244. // 阻止浏览器滑动
  245. stop(e) {
  246. e.preventDefault();
  247. },
  248. // 切换科室
  249. changeDept() {
  250. uni.navigateTo({
  251. url: `../search/search?type=pharmacy`,
  252. });
  253. },
  254. // 更新用户所在科室
  255. updateUser(dept){
  256. let dataObj = {
  257. user: {
  258. dept: {
  259. id: dept.id,
  260. },
  261. id: this.loginUser.user.id,
  262. },
  263. };
  264. post("/data/updData/user", dataObj).then((res) => {
  265. if (res.status == 200) {
  266. this.getCurrentUserNow();
  267. }
  268. })
  269. },
  270. // 重新获取用户信息
  271. getCurrentUserNow(){
  272. get("/user/data/getCurrentUser").then((res) => {
  273. if (res.status == 200) {
  274. // this.loginUser.dept = this.currenDept;
  275. this.loginUser.user = res.data;
  276. uni.setStorageSync('userData', this.loginUser);
  277. }
  278. })
  279. }
  280. },
  281. onLoad(options) {
  282. //#ifdef H5
  283. console.log(options.login, "login");
  284. if (options.login == 1) {
  285. // uni.setStorageSync('type', 'pharmacy')
  286. uni.redirectTo({
  287. url: "../homePage/homePage?type=pharmacy",
  288. });
  289. }
  290. //#endif
  291. if (options.id && options.dept) {
  292. let {
  293. id,
  294. dept
  295. } = options;
  296. this.currenDept.id = id;
  297. this.currenDept.dept = dept;
  298. this.updateUser(this.currenDept)
  299. } else {
  300. this.currenDept = uni.getStorageSync("userData").user.dept;
  301. }
  302. // 请求列表
  303. this.getPharmacyListData(this.selectedLabelSlots, 0);
  304. // #ifdef APP-PLUS
  305. webHandle("no", "app");
  306. // #endif
  307. // #ifdef H5
  308. webHandle("no", "wx");
  309. // #endif
  310. },
  311. onShow() {
  312. this.SMFlag = true;
  313. // #ifdef H5
  314. document.body.addEventListener("touchmove", this.stop, { passive: false });
  315. // #endif
  316. },
  317. onUnload() {
  318. // #ifdef H5
  319. document.body.removeEventListener("touchmove", this.stop, {
  320. passive: false,
  321. });
  322. // #endif
  323. },
  324. };
  325. </script>
  326. <style lang="less">
  327. // 覆盖cube
  328. .cube-tab-bar {
  329. display: block !important;
  330. }
  331. .pharmacy /deep/ .cube-tab-bar-slider {
  332. display: none !important;
  333. }
  334. .pharmacy {
  335. background-color: rgb(249, 250, 251);
  336. // padding-top: 36rpx;
  337. .pharmacy_header{
  338. position: relative;
  339. .pharmacy_changeDept{
  340. padding: 16rpx 0;
  341. &.page_tab_bar {
  342. flex: 1;
  343. font-size: 36rpx;
  344. background: #fff;
  345. display: flex;
  346. justify-content: center;
  347. align-items: center;
  348. position: relative;
  349. &:after {
  350. content: "";
  351. position: absolute;
  352. left: 0;
  353. bottom: 0;
  354. height: 2rpx;
  355. width: 100%;
  356. background-color: transparent;
  357. }
  358. .tab_dept {
  359. position: relative;
  360. .changeDept {
  361. white-space: nowrap;
  362. margin: 0;
  363. position: absolute;
  364. right: 0;
  365. top: 50%;
  366. transform: translate(105%, -50%);
  367. padding: 0 0.5em;
  368. line-height: 2;
  369. }
  370. }
  371. &.active {
  372. color: #49b856;
  373. &:after {
  374. background-color: #49b856;
  375. }
  376. }
  377. }
  378. }
  379. }
  380. .scanning_btn {
  381. margin: 16rpx auto;
  382. width: 138rpx;
  383. height: 138rpx;
  384. background: #72c172;
  385. border-radius: 50%;
  386. /*偏移*/
  387. line-height: 200rpx;
  388. color: #fff;
  389. font-size: 36rpx;
  390. display: flex;
  391. justify-content: center;
  392. align-items: center;
  393. text {
  394. font-size: 48rpx;
  395. }
  396. }
  397. .zwsj {
  398. // margin-top: 180rpx;
  399. padding-top: 10%;
  400. display: flex;
  401. flex-direction: column;
  402. align-items: center;
  403. .zwsj_txt {
  404. font-size: 36rpx;
  405. font-weight: 700;
  406. margin-top: 20rpx;
  407. }
  408. .zwsj_img {
  409. width: 582rpx;
  410. }
  411. }
  412. .page_item_wrap {
  413. position: relative;
  414. margin-bottom: 32rpx;
  415. .page_item {
  416. margin-top: 16rpx;
  417. margin-bottom: 124rpx;
  418. background: #fff;
  419. border-radius: 8rpx;
  420. margin: 0 20rpx;
  421. border: 2rpx solid #e5e9ed;
  422. position: relative;
  423. overflow: hidden;
  424. padding: 0 16rpx;
  425. .L {
  426. width: 40rpx;
  427. height: 40rpx;
  428. border-radius: 50%;
  429. background: #f9fafb;
  430. position: absolute;
  431. left: -20rpx;
  432. top: 68rpx;
  433. border: 2rpx solid #e5e9ed;
  434. }
  435. .R {
  436. width: 40rpx;
  437. height: 40rpx;
  438. border-radius: 50%;
  439. background: #f9fafb;
  440. position: absolute;
  441. float: right;
  442. right: -20rpx;
  443. top: 68rpx;
  444. border: 2rpx solid #e5e9ed;
  445. }
  446. .page_item_top {
  447. height: 88rpx;
  448. border-bottom: 2rpx dashed #e5e9ed;
  449. padding: 0 16rpx;
  450. .page_item_top-inner {
  451. display: flex;
  452. justify-content: space-between;
  453. align-items: center;
  454. height: 100%;
  455. .page_item_top_L {
  456. .L_text {
  457. font-size: 32rpx;
  458. font-weight: 700;
  459. }
  460. }
  461. .page_item_top_R {
  462. font-size: 32rpx;
  463. .L_iocn {
  464. color: rgb(7, 134, 60);
  465. font-size: 36rpx;
  466. font-weight: 700;
  467. }
  468. }
  469. }
  470. }
  471. .page_item_cont {
  472. min-height: 180rpx;
  473. max-height: 424rpx;
  474. padding: 0 16rpx;
  475. text-align: left;
  476. position: relative;
  477. .text_big {
  478. font-size: 32rpx;
  479. font-weight: 700;
  480. text {
  481. font-weight: 700;
  482. line-height: 1.5;
  483. }
  484. }
  485. .line {
  486. height: 20rpx;
  487. width: 2rpx;
  488. border-left: 2rpx solid #e5e9ed;
  489. position: absolute;
  490. top: 82rpx;
  491. left: 40rpx;
  492. }
  493. .page_item_cont_T {
  494. padding-top: 28rpx;
  495. font-size: 28rpx;
  496. .page_item_cont_title {
  497. height: 100%;
  498. font-size: 32rpx;
  499. display: flex;
  500. justify-content: space-between;
  501. align-items: center;
  502. }
  503. }
  504. .page_item_cont_B {
  505. padding-top: 28rpx;
  506. margin-bottom: 28rpx;
  507. .page_item_cont_title {
  508. font-size: 32rpx;
  509. display: flex;
  510. justify-content: space-between;
  511. align-items: center;
  512. }
  513. }
  514. .page_item_cont_C {
  515. margin-bottom: 28rpx;
  516. .page_item_cont_title_C {
  517. font-size: 32rpx;
  518. display: flex;
  519. justify-content: space-between;
  520. }
  521. }
  522. }
  523. #infos {
  524. display: none;
  525. }
  526. }
  527. .L-l {
  528. width: 2rpx;
  529. height: 40rpx;
  530. background: #f9fafb;
  531. position: absolute;
  532. left: 20rpx;
  533. top: 72rpx;
  534. }
  535. .R-l {
  536. width: 2rpx;
  537. height: 40rpx;
  538. background: #f9fafb;
  539. position: absolute;
  540. right: 20rpx;
  541. top: 72rpx;
  542. }
  543. }
  544. .pharmacy-heng {
  545. height: 90rpx;
  546. display: flex;
  547. background-color: #fff;
  548. margin-bottom: 32rpx;
  549. .pharmacy-heng-tab {
  550. flex: 1 !important;
  551. display: flex;
  552. align-items: center;
  553. .pharmacy-heng-label {
  554. flex: 1;
  555. display: flex;
  556. justify-content: center;
  557. align-items: center;
  558. font-size: 36rpx;
  559. width: 204rpx;
  560. height: 60rpx;
  561. border-radius: 30rpx;
  562. background-color: #fff;
  563. color: rgb(102, 102, 102);
  564. }
  565. &.cube-tab_active {
  566. .pharmacy-heng-label {
  567. display: flex;
  568. justify-content: center;
  569. align-items: center;
  570. font-size: 36rpx;
  571. width: 204rpx;
  572. height: 60rpx;
  573. border-radius: 30rpx;
  574. background-color: rgb(229, 233, 237);
  575. color: rgb(51, 51, 51);
  576. }
  577. }
  578. }
  579. }
  580. // 滚动区域
  581. .page_scrollIt {
  582. height: calc(100vh - 380rpx);
  583. }
  584. // “扫一扫”文字
  585. .scanFont {
  586. font-size: 36rpx;
  587. font-weight: 700;
  588. margin-top: 16rpx;
  589. margin-bottom: 16rpx;
  590. text-align: center;
  591. }
  592. }
  593. </style>