scanning_drug.vue 16 KB

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