scanning_drug.vue 19 KB

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