scanning_drug.vue 17 KB

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