scanning_drug.vue 16 KB

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