scanning_drug.vue 19 KB

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