scanning_djEnd.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. <template>
  2. <view class="Scanning_djEnd">
  3. <view class="Scanning_top" v-if="infoDATA.status == 200">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok icon_transport transport-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1">操作成功</view>
  9. </view>
  10. </view>
  11. <view
  12. class="Scanning_top"
  13. v-if="
  14. infoDATA.status == 10005 ||
  15. infoDATA.status == 100018 ||
  16. infoDATA.status == 10004 ||
  17. infoDATA.status == 100021 ||
  18. infoDATA.status == 500 ||
  19. infoDATA.status == 100031
  20. "
  21. >
  22. <view class="Scanning_top_icon">
  23. <text class="cubeic-close icon_transport transport-shibai"></text>
  24. </view>
  25. <view class="Scanning_top_text">
  26. <view class="text1">操作失败</view>
  27. </view>
  28. </view>
  29. <view
  30. class="Scanning_cont"
  31. v-if="
  32. (infoDATA.status == 200 && type == 'specimenPlan') ||
  33. (infoDATA.status == 200 && type == 'specimen')
  34. "
  35. ></view>
  36. <view
  37. class="Scanning_cont"
  38. v-if="
  39. (infoDATA.status == 200 && type == 'patientTransport') ||
  40. (infoDATA.status == 200 && type == 'inspect')
  41. "
  42. >扫描患者腕带并将患者送往目标科室.</view
  43. >
  44. <view
  45. class="Scanning_cont"
  46. v-if="
  47. (infoDATA.status == 200 &&
  48. type == 'drugsBag' &&
  49. (type1 == 'drug-ddd-2' || type1 == 'drug-dsd-2')) ||
  50. (infoDATA.status == 200 &&
  51. type == 'jPBag' &&
  52. (type1 == 'jp-ddd-2' || type1 == 'jp-dsd-2'))
  53. "
  54. >已到达目标科室,请扫描药包或静配包.</view
  55. >
  56. <view
  57. class="Scanning_cont"
  58. v-if="
  59. (infoDATA.status == 200 &&
  60. type == 'drugsBag' &&
  61. (type1 == 'drug-ddd-1' || type1 == 'drug-dsd-1')) ||
  62. (infoDATA.status == 200 &&
  63. type == 'jPBag' &&
  64. (type1 == 'jp-ddd-1' || type1 == 'jp-dsd-1'))
  65. "
  66. >已到达目标科室,请取药包或静配包后送达目标科室.</view
  67. >
  68. <view
  69. class="Scanning_cont"
  70. v-if="
  71. infoDATA.status == 200 && type == 'other' && infoDATA.type == 'qt-ddd-1'
  72. "
  73. >已到达目标科室,请执行该工单.</view
  74. >
  75. <view
  76. class="Scanning_cont"
  77. v-if="
  78. (infoDATA.state == 'finish' &&
  79. infoDATA.status == 200 &&
  80. type == 'specimenPlan' &&
  81. infoDATA.type == 'plan-spe-dsd-1') ||
  82. (infoDATA.status == 200 &&
  83. type == 'other' &&
  84. infoDATA.type == 'qt-dsd-1')
  85. "
  86. >已到达目标科室,工单已完成.</view
  87. >
  88. <view
  89. class="Scanning_cont"
  90. v-if="
  91. (infoDATA.status == 200 &&
  92. type == 'specimenPlan' &&
  93. infoDATA.type != 'plan-spe-ddd-1' &&
  94. infoDATA.type != 'plan-spe-dsd-1') ||
  95. (infoDATA.status == 200 &&
  96. type == 'specimen' &&
  97. infoDATA.type != 'spe-ddd-1' &&
  98. infoDATA.type != 'spe-dsd-1')
  99. "
  100. >已到达目标科室,请扫描标本.</view
  101. >
  102. <view
  103. class="Scanning_cont"
  104. v-if="
  105. (infoDATA.status == 200 &&
  106. type == 'specimenPlan' &&
  107. infoDATA.type == 'plan-spe-ddd-1') ||
  108. (infoDATA.status == 200 &&
  109. type == 'specimen' &&
  110. infoDATA.type == 'spe-ddd-1')
  111. "
  112. >已到达目标科室,请取标本后送达目标科室.</view
  113. >
  114. <view
  115. class="Scanning_cont"
  116. v-if="
  117. (infoDATA.state != 'finish' &&
  118. infoDATA.status == 200 &&
  119. type == 'specimenPlan' &&
  120. infoDATA.type == 'plan-spe-dsd-1') ||
  121. (infoDATA.status == 200 &&
  122. type == 'specimen' &&
  123. infoDATA.type == 'spe-dsd-1')
  124. "
  125. >已到达目标科室,请放置标本完成该工单.</view
  126. >
  127. <view class="Scanning_cont" v-if="infoDATA.status != 200">
  128. <view>{{ infoDATA.msg }}</view>
  129. </view>
  130. <view
  131. class="foot_btn"
  132. v-if="type == 'inspect' || type == 'patientTransport'"
  133. >
  134. <view class="btn3" @click="Scanning_again()">继续扫描</view>
  135. </view>
  136. <view class="foot_btn" v-if="type == 'drugsBag' || type == 'jPBag'">
  137. <view
  138. class="btn3"
  139. @click="Scanning_again()"
  140. v-if="
  141. type1 === 'drug-ddd-2' ||
  142. type1 === 'drug-dsd-2' ||
  143. type1 === 'jp-ddd-2' ||
  144. type1 === 'jp-dsd-2'
  145. "
  146. >继续扫描</view
  147. >
  148. <view
  149. class="btn3"
  150. @click="showAlert()"
  151. v-if="
  152. type1 === 'drug-ddd-1' ||
  153. type1 === 'drug-dsd-1' ||
  154. type1 === 'jp-ddd-1' ||
  155. type1 === 'jp-dsd-1'
  156. "
  157. >知道了</view
  158. >
  159. </view>
  160. <view
  161. class="foot_btn"
  162. v-if="
  163. (type == 'specimenPlan' &&
  164. type1 != 'plan-spe-dsd-1' &&
  165. (type1 != 'plan-spe-ddd-1') & (type1 != 'plan-spe-ddd-2')) ||
  166. (type == 'specimen' &&
  167. type1 != 'spe-dsd-1' &&
  168. (type1 != 'spe-ddd-1') & (type1 != 'spe-ddd-2'))
  169. "
  170. >
  171. <view class="btn1" @click="Scanning_again()">继续扫描标本</view>
  172. <!-- <view class="btn3" @click="getNoScanSpecimen()">查看未扫描标本</view> -->
  173. <!-- <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view> -->
  174. </view>
  175. <view
  176. class="foot_btn"
  177. v-if="
  178. (type == 'specimenPlan' && type1 == 'plan-spe-ddd-2') ||
  179. (type == 'specimen' && type1 == 'spe-ddd-2')
  180. "
  181. >
  182. <view class="btn1" @click="Scanning_again()">继续扫描标本</view>
  183. <!-- <view class="btn3" @click="getNoScanSpecimen()">查看未扫描标本</view> -->
  184. <!-- <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view> -->
  185. </view>
  186. <view
  187. class="foot_btn"
  188. v-if="
  189. (infoDATA.state != 'finish' &&
  190. type == 'specimenPlan' &&
  191. type1 == 'plan-spe-dsd-1') ||
  192. (type == 'specimen' && type1 == 'spe-dsd-1')
  193. "
  194. >
  195. <view class="btn1" @click="Scanning_complete1(ids)">完成工单</view>
  196. <view class="btn2" @click="showAlert()">继续配送</view>
  197. </view>
  198. <view
  199. class="foot_btn"
  200. v-if="
  201. infoDATA.status != 200 &&
  202. type != 'specimenPlan' &&
  203. type != 'specimen' &&
  204. type !== 'jPBag' &&
  205. type !== 'inspect' &&
  206. type !== 'drugsBag' &&
  207. type !== 'patientTransport'
  208. "
  209. >
  210. <view class="btn3" @click="showAlert()">知道了</view>
  211. </view>
  212. <view
  213. class="foot_btn"
  214. v-if="
  215. (infoDATA.status == 200 && type1 == 'spe-ddd-1') ||
  216. (infoDATA.status == 200 && type1 == 'plan-spe-ddd-1')
  217. "
  218. >
  219. <view class="btn3" @click="showAlert()">知道了</view>
  220. </view>
  221. <view
  222. class="foot_btn"
  223. v-if="
  224. (infoDATA.state == 'finish' &&
  225. infoDATA.status == 200 &&
  226. type == 'specimenPlan' &&
  227. type1 == 'plan-spe-dsd-1') ||
  228. (infoDATA.status == 200 && type == 'other')
  229. "
  230. >
  231. <view class="btn3" @click="showAlert()">知道了</view>
  232. </view>
  233. <!-- 弹窗 -->
  234. <showModel
  235. :title="models.title"
  236. :icon="models.icon"
  237. :disjunctor="models.disjunctor"
  238. :content="models.content"
  239. @ok="ok"
  240. @cancel="cancel"
  241. :operate="models.operate"
  242. ></showModel>
  243. <!-- 弹窗 -->
  244. <showModel
  245. :title="models2.title"
  246. :icon="models2.icon"
  247. :disjunctor="models2.disjunctor"
  248. :content="models2.content"
  249. @ok="ok2"
  250. @cancel="cancel2"
  251. :operate="models2.operate"
  252. >
  253. </showModel>
  254. </view>
  255. </template>
  256. <script>
  257. import showModel from "../../components/showModel/showModel.vue";
  258. import { get, post, SM, webHandle } from "../../http/http.js";
  259. export default {
  260. data() {
  261. return {
  262. // 弹窗model
  263. models: {
  264. disjunctor: false,
  265. },
  266. // 完成扫描弹窗model1
  267. models2: {
  268. disjunctor: false,
  269. },
  270. wcId: "", //工单完成ID
  271. modelFlag: "", //工单完成类型
  272. infoDATA: [],
  273. ids: [],
  274. type: "",
  275. type1: "",
  276. queryObj: {}, //路由传递过来的参数
  277. gotoFlag: true,
  278. };
  279. },
  280. methods: {
  281. // 查看未扫描标本
  282. getNoScanSpecimen() {
  283. if (!this.gotoFlag) {
  284. return;
  285. }
  286. this.gotoFlag = false;
  287. let id = JSON.parse(this.queryObj.ids)[0];
  288. uni.navigateTo({
  289. url: `../noScanSpecimen/noScanSpecimen?workOrderId=${id}`,
  290. });
  291. },
  292. // 正常完成扫描
  293. overFinish() {
  294. //完成扫描
  295. let postType = "";
  296. if (
  297. this.queryObj.type1 === "plan-spe-ddd-2" ||
  298. this.queryObj.type1 === "plan-spe-dsd-2" ||
  299. this.queryObj.type1 === "plan-spe-dsd-3"
  300. ) {
  301. postType = "finishPlanSpes";
  302. } else if (this.queryObj.type1 == "spe-ddd-2") {
  303. postType = "finishSpes";
  304. }
  305. let data = {
  306. type: this.queryObj.type1,
  307. ids: this.wcId,
  308. };
  309. uni.showLoading({
  310. title: "加载中",
  311. mask: true,
  312. });
  313. post("/workerOrder/" + postType, data).then((res) => {
  314. if (res.status == 200) {
  315. uni.reLaunch({
  316. url: "../receiptpage/receiptpage",
  317. });
  318. } else {
  319. uni.hideLoading();
  320. uni.showToast({
  321. icon: "none",
  322. title: "请求失败!",
  323. });
  324. }
  325. });
  326. },
  327. // 确定
  328. ok() {
  329. this.models.disjunctor = false;
  330. if (this.modelFlag === "complete") {
  331. uni.showLoading({
  332. title: "加载中",
  333. mask: true,
  334. });
  335. let id = JSON.parse(this.queryObj.ids)[0];
  336. let postData = {
  337. ids: [id],
  338. sign: true
  339. };
  340. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  341. uni.hideLoading();
  342. if (ress.status == 200) {
  343. if (ress.actualReceiveNum === undefined) {
  344. //正常完成扫描
  345. this.overFinish();
  346. } else {
  347. this.models2 = {
  348. disjunctor: true,
  349. title: "提示",
  350. content: `您扫描的标本<strong class="red">${ress.actualReceiveNum}</strong>个,与系统预计标本${ress.expectReceiveNum}个标本不一致,您确认要完成扫描码?`,
  351. icon: "warn",
  352. operate: {
  353. ok: "确定",
  354. cancel: "取消",
  355. },
  356. };
  357. }
  358. } else {
  359. uni.showToast({
  360. icon: "none",
  361. title: "请求失败!",
  362. });
  363. }
  364. });
  365. } else if (this.modelFlag === "complete1") {
  366. //1对1标本完成工单
  367. let ids = this.wcId;
  368. uni.showLoading({
  369. title: "加载中",
  370. mask: true,
  371. });
  372. post("/workerOrder/finishSpeOrder", ids).then((res) => {
  373. if (res.status == 200) {
  374. uni.reLaunch({
  375. url: "../receiptpage/receiptpage",
  376. });
  377. } else {
  378. uni.hideLoading();
  379. uni.showToast({
  380. icon: "none",
  381. title: "请求失败!",
  382. });
  383. }
  384. });
  385. }
  386. },
  387. // 取消
  388. cancel() {
  389. this.models.disjunctor = false;
  390. },
  391. // 确定
  392. ok2() {
  393. this.models2.disjunctor = false;
  394. let id = JSON.parse(this.queryObj.ids)[0];
  395. let postData = {
  396. ids: [id],
  397. };
  398. uni.showLoading({
  399. title: "加载中",
  400. mask: true,
  401. });
  402. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  403. uni.hideLoading();
  404. if (ress.status == 200) {
  405. uni.navigateTo({
  406. url: "../receiptpage/receiptpage",
  407. });
  408. } else {
  409. uni.showToast({
  410. icon: "none",
  411. title: "请求失败!",
  412. });
  413. }
  414. });
  415. },
  416. // 取消
  417. cancel2() {
  418. this.models2.disjunctor = false;
  419. },
  420. //完成扫描
  421. Scanning_complete(id) {
  422. this.modelFlag = "complete";
  423. if (
  424. this.queryObj.type1 == "plan-spe-ddd-2" ||
  425. this.queryObj.type1 == "spe-ddd-2"
  426. ) {
  427. this.wcId = id;
  428. this.models = {
  429. disjunctor: true,
  430. title: "提示",
  431. content: "是否确定标本已扫描完成?",
  432. icon: "warn",
  433. operate: {
  434. ok: "确定",
  435. cancel: "取消",
  436. },
  437. };
  438. } else {
  439. uni.navigateTo({
  440. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  441. this.queryObj.type1
  442. }&deptCode=${this.queryObj.code}&dept=${
  443. this.queryObj.dept
  444. }&id=${encodeURIComponent(JSON.stringify(this.ids))}`,
  445. });
  446. }
  447. },
  448. //一对一完成工单
  449. Scanning_complete1(id) {
  450. this.modelFlag = "complete1";
  451. this.wcId = id;
  452. this.models = {
  453. disjunctor: true,
  454. title: "提示",
  455. content: "是否确定标本配送完成?",
  456. icon: "warn",
  457. operate: {
  458. ok: "确定",
  459. cancel: "取消",
  460. },
  461. };
  462. },
  463. //继续扫描
  464. Scanning_again() {
  465. SM().then((ress1) => {
  466. // ----------------
  467. //检验二维码的有效性
  468. post("/dept/scanning", {
  469. content: ress1,
  470. }).then((result) => {
  471. if (result.state == 200 || result.state == 201) {
  472. let ress = result.code;
  473. let speCode = ress;
  474. let data = {
  475. code: speCode,
  476. type: this.queryObj.type1,
  477. deptCode: this.code,
  478. ids: this.ids,
  479. };
  480. let postType = "";
  481. if (this.type == "jPBag" || this.type == "drugsBag") {
  482. postType = "handleDrugsAndJp";
  483. }
  484. if (this.type == "specimen") {
  485. postType = "handleSpes";
  486. data["speCode"] = data.code;
  487. delete data.code;
  488. }
  489. if (this.type == "specimenPlan") {
  490. postType = "handlePlanSpes";
  491. data["speCode"] = data.code;
  492. delete data.code;
  493. }
  494. if (this.type == "inspect") {
  495. postType = "handleIns";
  496. }
  497. if (this.type == "patientTransport") {
  498. postType = "handleTrans";
  499. }
  500. post("/workerOrder/" + postType, data).then((ress) => {
  501. if (ress.status == 200) {
  502. uni.navigateTo({
  503. url: `../scanning_djInfo/scanning_djInfo?type=${
  504. this.queryObj.type
  505. }&type1=${this.queryObj.type1}&infoData=${encodeURIComponent(
  506. JSON.stringify(ress.data)
  507. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  508. this.queryObj.code
  509. }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
  510. JSON.stringify(this.ids)
  511. )}&model=${encodeURIComponent(JSON.stringify(ress))}`,
  512. });
  513. } else {
  514. uni.navigateTo({
  515. url: `../scanning_djInfo/scanning_djInfo?type=${
  516. this.queryObj.type
  517. }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
  518. ress.msg
  519. }&deptCode=${this.queryObj.code}&dept=${
  520. this.queryObj.dept
  521. }&ids=${encodeURIComponent(
  522. JSON.stringify(this.ids)
  523. )}&infoData=${encodeURIComponent(
  524. JSON.stringify(ress.data)
  525. )}&model=${encodeURIComponent(JSON.stringify(ress))}`,
  526. });
  527. }
  528. });
  529. } else {
  530. uni.showToast({
  531. icon: "none",
  532. title: "请求失败!",
  533. });
  534. }
  535. });
  536. // ------------------------------
  537. });
  538. },
  539. // 知道了
  540. showAlert() {
  541. uni.navigateTo({
  542. url: "../receiptpage/receiptpage",
  543. });
  544. },
  545. },
  546. onShow() {
  547. this.gotoFlag = true;
  548. },
  549. onLoad(options) {
  550. console.log(options, "djEnd");
  551. this.queryObj = options;
  552. let list = JSON.parse(options.model); //签到返回的信息
  553. this.code = options.code; //二维码code
  554. this.ids = options.ids && JSON.parse(options.ids); //科室ID数组
  555. this.infoDATA = list;
  556. if (options.type) {
  557. //关联类型
  558. this.type = options.type;
  559. } else {
  560. this.type = list.type;
  561. }
  562. this.type1 = options.type1;
  563. // #ifdef APP-PLUS
  564. webHandle("no", "app");
  565. // #endif
  566. // #ifdef H5
  567. webHandle("no", "wx");
  568. // #endif
  569. },
  570. };
  571. </script>
  572. <style lang="less">
  573. .Scanning_djEnd {
  574. padding: 0px 20rpx;
  575. .Scanning_top {
  576. height: 270rpx;
  577. .Scanning_top_icon {
  578. width: 140rpx;
  579. height: 140rpx;
  580. margin: 0 auto;
  581. // margin-top: 116rpx;
  582. border-radius: 50%;
  583. line-height: 140rpx;
  584. .cubeic-ok {
  585. font-size: 140rpx;
  586. color: #35b34a;
  587. }
  588. .cubeic-close {
  589. font-size: 140rpx;
  590. color: #ff3b53;
  591. }
  592. }
  593. .Scanning_top_text {
  594. .text1 {
  595. margin-top: 40rpx;
  596. font-size: 48rpx;
  597. text-align: center;
  598. }
  599. }
  600. }
  601. .Scanning_cont {
  602. font-size: 32rpx;
  603. text-align: center;
  604. view {
  605. margin-bottom: 16rpx;
  606. }
  607. .text {
  608. margin-top: 24rpx;
  609. color: #35b34a;
  610. }
  611. .text1 {
  612. margin-top: 24rpx;
  613. color: #ff3b53;
  614. }
  615. }
  616. .foot_btn {
  617. line-height: 88rpx;
  618. height: 100rpx;
  619. margin-top: 40rpx;
  620. text-align: center;
  621. display: flex;
  622. view {
  623. height: 88rpx;
  624. flex: 1;
  625. margin: 0 1%;
  626. background-image: linear-gradient(to right, #72c172, #3bb197);
  627. color: #fff;
  628. border-radius: 8rpx;
  629. font-size: 32rpx;
  630. margin-top: 16rpx;
  631. }
  632. }
  633. }
  634. </style>