scanning_djInfo.vue 19 KB

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