scanning_drug.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  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" :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. disjunctor: true,
  287. };
  288. },
  289. // 接单---data就是交接人信息
  290. commonBuild(data) {
  291. let postData = {
  292. packId: this.workOrder.drugs.packid,
  293. orderId: this.workOrder.id,
  294. };
  295. if (data) {
  296. //有交接人
  297. postData.handover = data.accountId;
  298. }
  299. uni.showLoading({
  300. title: "加载中",
  301. mask: true,
  302. });
  303. post("/workerOrder/drugBagReceiving", postData).then((ress) => {
  304. uni.hideLoading();
  305. if (ress.status == 200) {
  306. this.grabOrders = ress.grabOrders ? ["666"] : null;
  307. // this.orderSign(ress.workOrder, 2, ress.content);
  308. let info = {
  309. targetDept: ress.data.target.dept, //所属科室
  310. packid: ress.data.packid, //药包编码
  311. batchNo: ress.data.batchNo, //药包批次
  312. status: ress.status,
  313. msg: ress.msg,
  314. };
  315. if (data) {
  316. //有交接人
  317. info.accountName = data.accountName; //交接人姓名
  318. info.account = data.account; //交接人工号
  319. }
  320. uni.navigateTo({
  321. url: `../scanning_result_seimin/scanning_result_seimin?info=${encodeURIComponent(
  322. JSON.stringify(info)
  323. )}`,
  324. });
  325. } else if (ress.status == "0000") {
  326. uni.hideLoading();
  327. this.showSelectAccount();
  328. } else {
  329. uni.showToast({
  330. icon: "none",
  331. title: ress.msg || "接口获取数据失败!",
  332. });
  333. }
  334. });
  335. },
  336. ok() {
  337. this.models.disjunctor = false;
  338. this.commonBuild();
  339. },
  340. // 取消
  341. cancel() {
  342. this.models.disjunctor = false;
  343. this.gotoFlag = true;
  344. },
  345. // 接单并签到
  346. receiveOrderAndSign() {
  347. if (!this.gotoFlag) {
  348. return;
  349. }
  350. this.gotoFlag = false;
  351. if (this.workOrder.gdState) {
  352. let state = this.workOrder.gdState.value;
  353. if (state == 4 || state == 5) {
  354. //待到达,待送达
  355. this.models = {
  356. disjunctor: true,
  357. title: "提示",
  358. content: "您想接单的药品,工单正在执行中。请确认是否继续接单签到?",
  359. icon: "warn",
  360. operate: {
  361. ok: "确定",
  362. cancel: "取消",
  363. },
  364. };
  365. } else {
  366. // 待接单 待抢单
  367. this.commonBuild();
  368. }
  369. }
  370. },
  371. // 建单并签到
  372. buildOrderAndSign() {
  373. if (!this.gotoFlag) {
  374. return;
  375. }
  376. this.gotoFlag = false;
  377. uni.showModal({
  378. title: "提示",
  379. content: "请确认是否建单并签到?",
  380. success: (result) => {
  381. if (result.confirm) {
  382. console.log("用户点击确定");
  383. let postData = {
  384. packId: this.drugsBagDto.packid,
  385. };
  386. uni.showLoading({
  387. title: "加载中",
  388. mask: true,
  389. });
  390. post("/workerOrder/drugBagReceiving", postData).then((ress) => {
  391. uni.hideLoading();
  392. if (ress.status == 200) {
  393. let info = {
  394. targetDept: ress.data.target.dept, //所属科室
  395. packid: ress.data.packid, //药包编码
  396. batchNo: ress.data.batchNo, //药包批次
  397. status: ress.status,
  398. msg: ress.msg,
  399. };
  400. uni.navigateTo({
  401. url: `../scanning_result_seimin/scanning_result_seimin?info=${encodeURIComponent(
  402. JSON.stringify(info)
  403. )}`,
  404. });
  405. } else {
  406. uni.showToast({
  407. icon: "none",
  408. title: ress.msg || "接口获取数据失败!",
  409. });
  410. }
  411. });
  412. } else if (result.cancel) {
  413. console.log("用户点击取消");
  414. }
  415. },
  416. });
  417. },
  418. //获取药包信息及其关联的工单信息
  419. queryDrugsBagForId(drugsBagId) {
  420. uni.showLoading({
  421. title: "加载中",
  422. mask: true,
  423. });
  424. post("/workerOrder/queryDrugsBagForId", {
  425. drugsBagId,
  426. }).then((res) => {
  427. uni.hideLoading();
  428. if (res.status == 200) {
  429. this.drugsBagDto = res.drugsBagDto || {};
  430. this.workOrder = res.workOrder || {};
  431. console.log(this.workOrder)
  432. } else {
  433. uni.showToast({
  434. icon: "none",
  435. title: res.msg || "接口获取数据失败!",
  436. });
  437. }
  438. });
  439. },
  440. },
  441. onShow() {
  442. this.gotoFlag = true;
  443. },
  444. onLoad(options) {
  445. this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
  446. console.log(options);
  447. let {
  448. drugsBagId,
  449. drugsBagBatchNo,
  450. } = options;
  451. if (drugsBagId) {
  452. this.queryDrugsBagForId(drugsBagId);
  453. }
  454. // this.infoDATA = JSON.parse(options.infoDATA); //详细信息
  455. // console.log(this.infoDATA)
  456. // this.res["status"] = options.status; //状态码
  457. // this.res["msg"] = options.msg; //返回的信息
  458. // #ifdef APP-PLUS
  459. webHandle("no", "app");
  460. // #endif
  461. // #ifdef H5
  462. webHandle("no", "wx");
  463. // #endif
  464. },
  465. };
  466. </script>
  467. <style lang="less" scoped>
  468. .pharmacyDetails {
  469. background-color: rgb(249, 250, 251);
  470. padding-top: 10%;
  471. .pharmacyDetails_title {
  472. font-size: 46rpx;
  473. font-weight: 550;
  474. text-align: center;
  475. }
  476. .page_item_wrap {
  477. position: relative;
  478. margin-top: 32rpx;
  479. .page_item {
  480. margin-top: 16rpx;
  481. margin-bottom: 124rpx;
  482. background: #fff;
  483. border-radius: 8rpx;
  484. margin: 0 20rpx;
  485. border: 2rpx solid #e5e9ed;
  486. position: relative;
  487. overflow: hidden;
  488. padding: 0 16rpx;
  489. .L {
  490. width: 40rpx;
  491. height: 40rpx;
  492. border-radius: 50%;
  493. background: #f9fafb;
  494. position: absolute;
  495. left: -20rpx;
  496. top: 68rpx;
  497. border: 2rpx solid #e5e9ed;
  498. }
  499. .R {
  500. width: 40rpx;
  501. height: 40rpx;
  502. border-radius: 50%;
  503. background: #f9fafb;
  504. position: absolute;
  505. float: right;
  506. right: -20rpx;
  507. top: 68rpx;
  508. border: 2rpx solid #e5e9ed;
  509. }
  510. .page_item_top {
  511. height: 88rpx;
  512. border-bottom: 2rpx dashed #e5e9ed;
  513. padding: 0 16rpx;
  514. .page_item_top-inner {
  515. display: flex;
  516. justify-content: space-between;
  517. align-items: center;
  518. height: 100%;
  519. .page_item_top_L {
  520. .L_text {
  521. font-size: 32rpx;
  522. font-weight: 700;
  523. }
  524. }
  525. .page_item_top_R {
  526. font-size: 32rpx;
  527. .L_iocn {
  528. color: rgb(7, 134, 60);
  529. font-size: 36rpx;
  530. font-weight: 700;
  531. }
  532. }
  533. }
  534. }
  535. .page_item_cont {
  536. min-height: 180rpx;
  537. max-height: 424rpx;
  538. padding: 0 16rpx;
  539. text-align: left;
  540. position: relative;
  541. .text_big {
  542. font-size: 32rpx;
  543. font-weight: 700;
  544. text {
  545. font-weight: 700;
  546. line-height: 1.5;
  547. }
  548. }
  549. .line {
  550. height: 20rpx;
  551. width: 2rpx;
  552. border-left: 2rpx solid #e5e9ed;
  553. position: absolute;
  554. top: 82rpx;
  555. left: 40rpx;
  556. }
  557. .page_item_cont_T {
  558. padding-top: 28rpx;
  559. font-size: 28rpx;
  560. .page_item_cont_title {
  561. height: 100%;
  562. font-size: 32rpx;
  563. display: flex;
  564. justify-content: space-between;
  565. }
  566. }
  567. .page_item_cont_B {
  568. padding-top: 28rpx;
  569. margin-bottom: 28rpx;
  570. .page_item_cont_title {
  571. font-size: 32rpx;
  572. display: flex;
  573. justify-content: space-between;
  574. align-items: center;
  575. }
  576. }
  577. .page_item_cont_C {
  578. margin-bottom: 28rpx;
  579. .page_item_cont_title_C {
  580. font-size: 32rpx;
  581. display: flex;
  582. justify-content: space-between;
  583. align-items: center;
  584. }
  585. }
  586. #infos {
  587. display: none;
  588. }
  589. }
  590. }
  591. .L-l {
  592. width: 2rpx;
  593. height: 40rpx;
  594. background: #f9fafb;
  595. position: absolute;
  596. left: 20rpx;
  597. top: 72rpx;
  598. }
  599. .R-l {
  600. width: 2rpx;
  601. height: 40rpx;
  602. background: #f9fafb;
  603. position: absolute;
  604. right: 20rpx;
  605. top: 72rpx;
  606. }
  607. }
  608. .cube-toolbar-item {
  609. width: 710rpx;
  610. height: 68rpx;
  611. line-height: 68rpx;
  612. position: fixed;
  613. left: 20rpx;
  614. bottom: 160rpx;
  615. border-radius: 8rpx;
  616. background: linear-gradient(to right, #72c172, #3bb197);
  617. font-size: 36rpx;
  618. color: #fff;
  619. text-align: center;
  620. }
  621. .btn-wrap {
  622. display: flex;
  623. justify-content: space-between;
  624. position: fixed;
  625. left: 20rpx;
  626. bottom: 160rpx;
  627. }
  628. .cube-toolbar-item1 {
  629. width: 350rpx;
  630. height: 68rpx;
  631. line-height: 68rpx;
  632. border-radius: 8rpx;
  633. margin: 0 5rpx;
  634. background: linear-gradient(to right, #72c172, #3bb197);
  635. font-size: 36rpx;
  636. color: #fff;
  637. text-align: center;
  638. }
  639. }
  640. </style>