pharmacyDetails.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
  1. <template>
  2. <view class="pharmacyDetails">
  3. <view class="pharmacyDetails_title">请领信息</view>
  4. <view class="page_item_wrap">
  5. <view class="page_item">
  6. <view class="page_item_top">
  7. <view class="page_item_top-inner">
  8. <view class="page_item_top_L">
  9. <text class="L_text">请领单:{{ infoDATA.packid }}</text>
  10. </view>
  11. <view class="page_item_top_R">
  12. <text class="L_iocn">{{
  13. infoDATA.drugsState && infoDATA.drugsState.name
  14. }}</text>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="page_item_cont">
  19. <!-- <view class="page_item_cont_T">
  20. <view class="page_item_cont_title">
  21. <text>批次号</text>
  22. <text class="text_big">{{ infoDATA.batchNo }}</text>
  23. </view>
  24. </view> -->
  25. <view class="page_item_cont_B">
  26. <view class="page_item_cont_title">
  27. <text>记账时间</text>
  28. <text class="text_big">
  29. <text>{{ infoDATA.creatTime }}</text>
  30. </text>
  31. </view>
  32. </view>
  33. <view class="page_item_cont_C">
  34. <view class="page_item_cont_title_C">
  35. <text>请领科室</text>
  36. <text class="text_big">
  37. <text>{{ infoDATA.target && infoDATA.target.dept }}</text>
  38. </text>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="L"></view>
  43. <view class="R"></view>
  44. </view>
  45. <view class="L-l"></view>
  46. <view class="R-l"></view>
  47. </view>
  48. <view v-if="infoDATA.drugsState && infoDATA.drugsState.value == 4&&infoDATA.launch.id==loginUser.dept.id"
  49. class="btn-wrap">
  50. <button class="cube-toolbar-item1" :loading="isLoading" :disabled="isLoading" @click="dispensing(4)"
  51. v-if="infoDATA.drugsState && infoDATA.drugsState.value == 4&&infoDATA.launch.id==loginUser.dept.id">
  52. 核对完成
  53. </button>
  54. <button class="cube-toolbar-item1" :loading="isOLoading" :disabled="isOLoading" @click="nursetake()">
  55. 护士自取
  56. </button>
  57. </view>
  58. <button class="cube-toolbar-item" :loading="isOLoading" :disabled="isOLoading" @click="nursetake()"
  59. v-if="infoDATA.drugsState && infoDATA.drugsState.value == 8&&infoDATA.launch.id==loginUser.dept.id">
  60. 护士自取
  61. </button>
  62. <button class="cube-toolbar-item" :loading="isLoading" :disabled="isLoading" @click="dispensing(1)"
  63. v-if="infoDATA.drugsState && infoDATA.drugsState.value == 1&&infoDATA.launch.id==loginUser.dept.id">
  64. 开始配药
  65. </button>
  66. <view v-if="infoDATA.drugsState && infoDATA.drugsState.value == 2&&infoDATA.launch.id==loginUser.dept.id"
  67. class="btn-wrap">
  68. <button class="cube-toolbar-item1" :loading="isLoading" :disabled="isLoading" @click="dispensing(2)">
  69. 进行核对
  70. </button>
  71. <button class="cube-toolbar-item1" :loading="isTLoading" :disabled="isTLoading" @click="replaceOperator()">
  72. 替换配药人
  73. </button>
  74. </view>
  75. <!-- 护士自取账号弹窗 -->
  76. <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  77. @cancel="hosCancel">
  78. </selectAccount>
  79. </view>
  80. </template>
  81. <script>
  82. import selectAccount from "@/components/selectAccount/selectAccount.vue";
  83. import {
  84. get,
  85. post,
  86. SM,
  87. webHandle
  88. } from "../../http/http.js";
  89. export default {
  90. data() {
  91. return {
  92. infoDATA: [],
  93. isLoading: false,
  94. isTLoading: false,
  95. isOLoading: false,
  96. loginUser: {}, //当前登录用户
  97. // 护士自取弹窗model
  98. hosModels: {
  99. disjunctor: false,
  100. },
  101. };
  102. },
  103. components: {
  104. selectAccount
  105. },
  106. methods: {
  107. // 确认
  108. hosOk(data) {
  109. console.log(data);
  110. const {
  111. accountName,
  112. account,
  113. accountId
  114. } = data;
  115. if (!accountName && !account) {
  116. //没有填写交接人
  117. uni.showModal({
  118. title: '提示',
  119. content: "请填写账号!",
  120. showCancel: false,
  121. success: function(res) {
  122. if (res.confirm) {
  123. console.log('用户点击确定');
  124. } else if (res.cancel) {
  125. console.log('用户点击取消');
  126. }
  127. }
  128. });
  129. return;
  130. } else if (!accountName && account || accountName && !account) {
  131. //没有填写
  132. uni.showModal({
  133. title: '提示',
  134. content: "请填写正确的账号!",
  135. showCancel: false,
  136. success: function(res) {
  137. if (res.confirm) {
  138. console.log('用户点击确定');
  139. } else if (res.cancel) {
  140. console.log('用户点击取消');
  141. }
  142. }
  143. });
  144. return;
  145. }
  146. this.hosModels.disjunctor = false;
  147. //请求接口
  148. uni.showLoading({
  149. title: "加载中",
  150. mask: true,
  151. });
  152. let postData = {
  153. id: this.infoDATA.id,
  154. packId: this.infoDATA.packid,
  155. recipient: accountId,
  156. recipientName:accountName
  157. };
  158. if (this.infoDATA.gdId) {
  159. postData.gdId = this.infoDATA.gdId;
  160. }
  161. post('/drugsBag/nurseByHerself', postData).then(result => {
  162. uni.hideLoading();
  163. if (result.state == 200) {
  164. uni.showModal({
  165. title: '提示',
  166. content: result.info || "护士自取成功!",
  167. showCancel: false,
  168. success: function(res) {
  169. if (res.confirm) {
  170. uni.navigateTo({
  171. url: "../pharmacy/pharmacy",
  172. });
  173. } else if (res.cancel) {
  174. console.log('用户点击取消');
  175. }
  176. }
  177. });
  178. } else {
  179. uni.showModal({
  180. title: '提示',
  181. content: "请求失败!",
  182. showCancel: false,
  183. success: function(res) {
  184. if (res.confirm) {
  185. console.log('用户点击确定');
  186. } else if (res.cancel) {
  187. console.log('用户点击取消');
  188. }
  189. }
  190. });
  191. }
  192. })
  193. },
  194. // 取消
  195. hosCancel() {
  196. this.hosModels.disjunctor = false;
  197. },
  198. // 护士自取
  199. nursetake() {
  200. this.hosModels = {
  201. title: '填写账号',
  202. disjunctor: true,
  203. }
  204. },
  205. // 替换配药人
  206. replaceOperator() {
  207. this.isTLoading = true;
  208. uni.showLoading({
  209. title: "加载中",
  210. mask: true,
  211. });
  212. post("/drugsBag/replaceOperator", {
  213. packId: this.infoDATA.packid,
  214. }).then((result) => {
  215. this.isTLoading = false;
  216. uni.hideLoading();
  217. if (result.state == 200) {
  218. uni.showModal({
  219. title: '提示',
  220. content: result.info,
  221. showCancel: false,
  222. success: function(res) {
  223. if (res.confirm) {
  224. console.log('用户点击确定');
  225. } else if (res.cancel) {
  226. console.log('用户点击取消');
  227. }
  228. }
  229. });
  230. } else {
  231. uni.showModal({
  232. title: '提示',
  233. content: "请求失败!",
  234. showCancel: false,
  235. success: function(res) {
  236. if (res.confirm) {
  237. console.log('用户点击确定');
  238. } else if (res.cancel) {
  239. console.log('用户点击取消');
  240. }
  241. }
  242. });
  243. }
  244. })
  245. },
  246. // 开始配药,进行核对,1是待配药,2是配药中,4是核对中
  247. dispensing(type) {
  248. let msg = '';
  249. if (type == 1) {
  250. msg = '是否开始配药?'
  251. } else if (type == 2) {
  252. msg = '是否进行核对?'
  253. } else if (type == 4) {
  254. msg = '是否核对完成?'
  255. }
  256. uni.showModal({
  257. title: '提示',
  258. content: msg,
  259. success: res => {
  260. if (res.confirm) {
  261. console.log('用户点击确定');
  262. this.isLoading = true;
  263. uni.showLoading({
  264. title: "加载中",
  265. mask: true,
  266. });
  267. if (type == 1) {
  268. post("/drugsBag/changeToIng", {
  269. id: this.infoDATA.id,
  270. }).then((result) => {
  271. this.isLoading = false;
  272. uni.hideLoading();
  273. if (result.state == 200) {
  274. uni.showModal({
  275. title: '提示',
  276. content: result.info || "开始配药成功!",
  277. showCancel: false,
  278. success: function(res) {
  279. if (res.confirm) {
  280. uni.navigateTo({
  281. url: "../pharmacy/pharmacy",
  282. });
  283. } else if (res.cancel) {
  284. console.log('用户点击取消');
  285. }
  286. }
  287. });
  288. // let data = {
  289. // launchId: this.infoDATA.launch.id,
  290. // drugsBagId: this.infoDATA.id,
  291. // };
  292. // post("/drugsBag/autoDrugsBags", data).then((result1) => {
  293. // this.isLoading = false;
  294. // if (result1.status == 200) {
  295. // uni.showToast({
  296. // title: "操作成功!",
  297. // success() {
  298. // uni.navigateTo({
  299. // url: "../pharmacy/pharmacy",
  300. // });
  301. // },
  302. // });
  303. // }else if(result1.status == 501){
  304. // uni.showToast({
  305. // icon: "none",
  306. // title: result1.error,
  307. // });
  308. // }else {
  309. // uni.showToast({
  310. // icon: "none",
  311. // title: "请求失败!",
  312. // });
  313. // }
  314. // });
  315. // } else if(result.state == 503){//未建单
  316. // uni.showToast({
  317. // icon: "none",
  318. // title: result.error,
  319. // });
  320. } else {
  321. // this.isLoading = false;
  322. uni.showModal({
  323. title: '提示',
  324. content: "请求失败!",
  325. showCancel: false,
  326. success: function(res) {
  327. if (res.confirm) {
  328. console.log('用户点击确定');
  329. } else if (res.cancel) {
  330. console.log('用户点击取消');
  331. }
  332. }
  333. });
  334. }
  335. });
  336. } else if (type == 2) {
  337. post("/drugsBag/changeToCheck", {
  338. id: this.infoDATA.id,
  339. }).then((result) => {
  340. this.isLoading = false;
  341. uni.hideLoading();
  342. if (result.state == 200) {
  343. uni.showModal({
  344. title: '提示',
  345. content: result.info || "进行核对成功!",
  346. showCancel: false,
  347. success: function(res) {
  348. if (res.confirm) {
  349. uni.navigateTo({
  350. url: "../pharmacy/pharmacy",
  351. });
  352. } else if (res.cancel) {
  353. console.log('用户点击取消');
  354. }
  355. }
  356. });
  357. } else {
  358. uni.showModal({
  359. title: '提示',
  360. content: "请求失败!",
  361. showCancel: false,
  362. success: function(res) {
  363. if (res.confirm) {
  364. console.log('用户点击确定');
  365. } else if (res.cancel) {
  366. console.log('用户点击取消');
  367. }
  368. }
  369. });
  370. }
  371. });
  372. } else if (type == 4) {
  373. post("/drugsBag/checkComplete", {
  374. id: this.infoDATA.id,
  375. packId: this.infoDATA.packid
  376. }).then((result) => {
  377. this.isLoading = false;
  378. uni.hideLoading();
  379. if (result.state == 200) {
  380. uni.showModal({
  381. title: '提示',
  382. content: result.info || "核对完成成功!",
  383. showCancel: false,
  384. success: function(res) {
  385. if (res.confirm) {
  386. uni.navigateTo({
  387. url: "../pharmacy/pharmacy",
  388. });
  389. } else if (res.cancel) {
  390. console.log('用户点击取消');
  391. }
  392. }
  393. });
  394. } else {
  395. uni.showModal({
  396. title: '提示',
  397. content: "请求失败!",
  398. showCancel: false,
  399. success: function(res) {
  400. if (res.confirm) {
  401. console.log('用户点击确定');
  402. } else if (res.cancel) {
  403. console.log('用户点击取消');
  404. }
  405. }
  406. });
  407. }
  408. });
  409. }
  410. } else if (res.cancel) {
  411. console.log('用户点击取消');
  412. }
  413. }
  414. });
  415. },
  416. },
  417. onLoad(options) {
  418. this.loginUser = uni.getStorageSync("userData").user;
  419. console.log(this.loginUser, 'loginUserloginUser')
  420. // #ifdef APP-PLUS
  421. webHandle("no", "app");
  422. // #endif
  423. // #ifdef H5
  424. webHandle("no", "wx");
  425. // #endif
  426. //扫码进入详情
  427. let qrcode = options.qrcode;
  428. if (qrcode) {
  429. uni.showLoading({
  430. title: "加载中",
  431. mask: true,
  432. });
  433. post("/drugsBag/getDrugsBagByQr", {
  434. qrcode,
  435. }).then((result) => {
  436. uni.hideLoading();
  437. if (result.state == 200) {
  438. this.infoDATA = result.result;
  439. if (this.loginUser.dept.id != this.infoDATA.launch.id) {
  440. uni.showModal({
  441. title: '提示',
  442. content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
  443. "】,您不能进行操作",
  444. showCancel: false,
  445. success: function(res) {
  446. if (res.confirm) {
  447. console.log('用户点击确定');
  448. } else if (res.cancel) {
  449. console.log('用户点击取消');
  450. }
  451. }
  452. });
  453. }
  454. } else {
  455. uni.showToast({
  456. icon: "none",
  457. title: "请求失败!",
  458. });
  459. }
  460. });
  461. }
  462. // 点击列表进入详情
  463. let id = options.id;
  464. if (id) {
  465. uni.showLoading({
  466. title: "加载中",
  467. mask: true,
  468. });
  469. get("/api/fetchData/drugsBag/" + id).then((res) => {
  470. uni.hideLoading();
  471. if (res.status == 200) {
  472. this.infoDATA = res.data;
  473. if (this.loginUser.dept.id != this.infoDATA.launch.id) {
  474. uni.showModal({
  475. title: '提示',
  476. content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
  477. "】,您不能进行操作",
  478. showCancel: false,
  479. success: function(res) {
  480. if (res.confirm) {
  481. console.log('用户点击确定');
  482. } else if (res.cancel) {
  483. console.log('用户点击取消');
  484. }
  485. }
  486. });
  487. }
  488. } else {
  489. uni.showToast({
  490. icon: "none",
  491. title: "请求失败!",
  492. });
  493. }
  494. });
  495. }
  496. },
  497. };
  498. </script>
  499. <style lang="less">
  500. .pharmacyDetails {
  501. background-color: rgb(249, 250, 251);
  502. padding-top: 10%;
  503. .pharmacyDetails_title {
  504. font-size: 46rpx;
  505. font-weight: 550;
  506. text-align: center;
  507. }
  508. .page_item_wrap {
  509. position: relative;
  510. margin-top: 32rpx;
  511. .page_item {
  512. margin-top: 16rpx;
  513. margin-bottom: 124rpx;
  514. background: #fff;
  515. border-radius: 8rpx;
  516. margin: 0 20rpx;
  517. border: 2rpx solid #e5e9ed;
  518. position: relative;
  519. overflow: hidden;
  520. padding: 0 16rpx;
  521. .L {
  522. width: 40rpx;
  523. height: 40rpx;
  524. border-radius: 50%;
  525. background: #f9fafb;
  526. position: absolute;
  527. left: -20rpx;
  528. top: 68rpx;
  529. border: 2rpx solid #e5e9ed;
  530. }
  531. .R {
  532. width: 40rpx;
  533. height: 40rpx;
  534. border-radius: 50%;
  535. background: #f9fafb;
  536. position: absolute;
  537. float: right;
  538. right: -20rpx;
  539. top: 68rpx;
  540. border: 2rpx solid #e5e9ed;
  541. }
  542. .page_item_top {
  543. height: 88rpx;
  544. border-bottom: 2rpx dashed #e5e9ed;
  545. padding: 0 16rpx;
  546. .page_item_top-inner {
  547. display: flex;
  548. justify-content: space-between;
  549. align-items: center;
  550. height: 100%;
  551. .page_item_top_L {
  552. .L_text {
  553. font-size: 32rpx;
  554. font-weight: 700;
  555. }
  556. }
  557. .page_item_top_R {
  558. font-size: 32rpx;
  559. .L_iocn {
  560. color: rgb(7, 134, 60);
  561. font-size: 36rpx;
  562. font-weight: 700;
  563. }
  564. }
  565. }
  566. }
  567. .page_item_cont {
  568. min-height: 180rpx;
  569. max-height: 424rpx;
  570. padding: 0 16rpx;
  571. text-align: left;
  572. position: relative;
  573. .text_big {
  574. font-size: 32rpx;
  575. font-weight: 700;
  576. text {
  577. font-weight: 700;
  578. line-height: 1.5;
  579. }
  580. }
  581. .line {
  582. height: 20rpx;
  583. width: 2rpx;
  584. border-left: 2rpx solid #e5e9ed;
  585. position: absolute;
  586. top: 82rpx;
  587. left: 40rpx;
  588. }
  589. .page_item_cont_T {
  590. padding-top: 28rpx;
  591. font-size: 28rpx;
  592. .page_item_cont_title {
  593. height: 100%;
  594. font-size: 32rpx;
  595. display: flex;
  596. justify-content: space-between;
  597. }
  598. }
  599. .page_item_cont_B {
  600. padding-top: 28rpx;
  601. margin-bottom: 28rpx;
  602. .page_item_cont_title {
  603. font-size: 32rpx;
  604. display: flex;
  605. justify-content: space-between;
  606. align-items: center;
  607. }
  608. }
  609. .page_item_cont_C {
  610. margin-bottom: 28rpx;
  611. .page_item_cont_title_C {
  612. font-size: 32rpx;
  613. display: flex;
  614. justify-content: space-between;
  615. align-items: center;
  616. }
  617. }
  618. #infos {
  619. display: none;
  620. }
  621. }
  622. }
  623. .L-l {
  624. width: 2rpx;
  625. height: 40rpx;
  626. background: #f9fafb;
  627. position: absolute;
  628. left: 20rpx;
  629. top: 72rpx;
  630. }
  631. .R-l {
  632. width: 2rpx;
  633. height: 40rpx;
  634. background: #f9fafb;
  635. position: absolute;
  636. right: 20rpx;
  637. top: 72rpx;
  638. }
  639. }
  640. .cube-toolbar-item {
  641. width: 710rpx;
  642. height: 68rpx;
  643. line-height: 68rpx;
  644. position: fixed;
  645. left: 20rpx;
  646. bottom: 160rpx;
  647. border-radius: 8rpx;
  648. background: linear-gradient(to right, #72c172, #3bb197);
  649. font-size: 36rpx;
  650. color: #fff;
  651. text-align: center;
  652. }
  653. .btn-wrap {
  654. width: 100%;
  655. display: flex;
  656. justify-content: space-between;
  657. position: fixed;
  658. left: 0;
  659. bottom: 160rpx;
  660. }
  661. .cube-toolbar-item1 {
  662. flex: 1;
  663. height: 68rpx;
  664. line-height: 68rpx;
  665. border-radius: 8rpx;
  666. margin: 0 1%;
  667. background: linear-gradient(to right, #72c172, #3bb197);
  668. font-size: 36rpx;
  669. color: #fff;
  670. text-align: center;
  671. }
  672. }
  673. </style>