pharmacy.vue 17 KB

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