scanning_djInfo.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  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" @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. // 弹窗model
  128. models: {
  129. disjunctor: false,
  130. },
  131. // 完成扫描弹窗model1
  132. models2: {
  133. disjunctor: false,
  134. },
  135. wcId: "", //工单完成ID
  136. infoDATA: [],
  137. res: {
  138. status: "",
  139. msg: ""
  140. },
  141. infoType: "",
  142. DEPTCode: "",
  143. RESData: {},
  144. DEPT: "",
  145. dataId: "",
  146. type: "",
  147. model: {},
  148. idsType: 1,
  149. packid: "",
  150. speNum: 0,
  151. queryObj: {}, //路由传递过来的参数
  152. gotoFlag: true,
  153. };
  154. },
  155. methods: {
  156. // 查看未扫描标本
  157. getNoScanSpecimen() {
  158. if (!this.gotoFlag) {
  159. return;
  160. }
  161. this.gotoFlag = false;
  162. uni.navigateTo({
  163. url: `../noScanSpecimen/noScanSpecimen?workOrderId=${this.queryObj.ids[0]}`,
  164. });
  165. },
  166. overFinish() {
  167. let postType = "";
  168. if (
  169. this.queryObj.type1 === "plan-spe-ddd-2" ||
  170. this.queryObj.type1 === "plan-spe-dsd-2" ||
  171. this.queryObj.type1 === "plan-spe-dsd-3"
  172. ) {
  173. postType = "finishPlanSpes";
  174. } else if (this.queryObj.type1 == "spe-ddd-2") {
  175. postType = "finishSpes";
  176. }
  177. let data = {
  178. type: this.queryObj.type1,
  179. ids: this.wcId,
  180. };
  181. post("/workerOrder/" + postType, data).then((res) => {
  182. if (res.status == 200) {
  183. uni.navigateTo({
  184. url: "../receiptpage/receiptpage",
  185. });
  186. } else {
  187. uni.showToast({
  188. icon: "none",
  189. title: "请求失败!",
  190. });
  191. }
  192. });
  193. },
  194. // 确定
  195. ok() {
  196. this.models.disjunctor = false;
  197. let postData = {
  198. ids: this.queryObj.ids,
  199. sign: true
  200. };
  201. uni.showLoading({
  202. title: "加载中",
  203. mask: true,
  204. });
  205. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  206. uni.hideLoading();
  207. if (ress.status == 200) {
  208. if (ress.actualReceiveNum === undefined) {
  209. //正常完成扫描
  210. this.overFinish();
  211. } else {
  212. this.models2 = {
  213. disjunctor: true,
  214. title: "提示",
  215. content: `您扫描的标本<strong class="red">${ress.actualReceiveNum}</strong>个,与系统预计标本${ress.expectReceiveNum}个标本不一致,您确认要完成扫描码?`,
  216. icon: "warn",
  217. operate: {
  218. ok: "确定",
  219. cancel: "取消",
  220. },
  221. };
  222. }
  223. } else {
  224. uni.showToast({
  225. icon: "none",
  226. title: "请求失败!",
  227. });
  228. }
  229. });
  230. },
  231. // 取消
  232. cancel() {
  233. this.models.disjunctor = false;
  234. },
  235. // 确定
  236. ok2() {
  237. this.models2.disjunctor = false;
  238. let postData = {
  239. ids: this.queryObj.ids,
  240. };
  241. uni.showLoading({
  242. title: "加载中",
  243. mask: true,
  244. });
  245. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  246. uni.hideLoading();
  247. if (ress.status == 200) {
  248. uni.navigateTo({
  249. url: "../receiptpage/receiptpage",
  250. });
  251. } else {
  252. uni.showToast({
  253. icon: "none",
  254. title: "请求失败!",
  255. });
  256. }
  257. });
  258. },
  259. // 取消
  260. cancel2() {
  261. this.models2.disjunctor = false;
  262. },
  263. //完成扫描
  264. Scanning_complete(id) {
  265. if (
  266. this.queryObj.type1 == "plan-spe-ddd-2" ||
  267. this.queryObj.type1 == "spe-ddd-2"
  268. ) {
  269. this.wcId = id;
  270. this.models = {
  271. disjunctor: true,
  272. title: "提示",
  273. content: "是否确定标本已扫描完成?",
  274. icon: "warn",
  275. operate: {
  276. ok: "确定",
  277. cancel: "取消",
  278. },
  279. };
  280. } else {
  281. uni.navigateTo({
  282. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  283. this.queryObj.type1
  284. }&id=${encodeURIComponent(JSON.stringify(id))}&deptCode=${
  285. this.queryObj.deptCode
  286. }&dept=${this.queryObj.dept}`,
  287. });
  288. }
  289. },
  290. // 继续扫描
  291. Scanning_again() {
  292. let list = [];
  293. let postType = "";
  294. let ids = [];
  295. if (this.ids && this.ids[0]) {
  296. ids = this.ids;
  297. } else if (this.dataId) {
  298. ids = [];
  299. ids.push(this.dataId);
  300. }
  301. let data = {
  302. ids: ids,
  303. deptCode: this.DEPTCode,
  304. code: "", // 2
  305. };
  306. SM().then((ress1) => {
  307. // ----------------
  308. //检验二维码的有效性
  309. post("/dept/scanning", {
  310. content: ress1,
  311. }).then((result) => {
  312. if (result.state == 200 || result.state == 201) {
  313. let ress = result.code;
  314. if (ress) {
  315. data.code = ress;
  316. if (this.type == "inspect") {
  317. postType = "handleIns";
  318. list = data;
  319. }
  320. if (this.type == "jPBag" || this.type == "drugsBag") {
  321. postType = "handleDrugsAndJp";
  322. data["type"] = this.infoType;
  323. list = data;
  324. }
  325. if (this.type == "specimen") {
  326. postType = "handleSpes";
  327. data["speCode"] = data.code;
  328. delete data.code;
  329. data["type"] = this.infoType;
  330. list = data;
  331. }
  332. if (this.type == "specimenPlan") {
  333. postType = "handlePlanSpes";
  334. data["speCode"] = data.code;
  335. delete data.code;
  336. data["type"] = this.infoType;
  337. list = data;
  338. }
  339. if (this.type == "patientTransport") {
  340. postType = "handleTrans";
  341. list = data;
  342. }
  343. post("/workerOrder/" + postType, list).then((res) => {
  344. if (res.status == 200) {
  345. if (
  346. this.type == "inspect" ||
  347. this.type == "patientTransport"
  348. ) {
  349. if (res.ids) {
  350. for (var i = 0; i < this.ids.length; i++) {
  351. if (this.ids[i] == res.ids[0]) {
  352. this.ids.splice(i, 1);
  353. }
  354. }
  355. if (this.ids.length > 1) {
  356. this.idsType = 1;
  357. } else {
  358. this.idsType = 2;
  359. }
  360. }
  361. this.infoDATA = res;
  362. this.type = this.type;
  363. this.DEPTCode = this.DEPTCode;
  364. } else if (this.type == "drugsBag") {
  365. // this.infoDATA.data.packid = res.data.packid;
  366. this.infoDATA = res;
  367. this.res["status"] = res.status;
  368. this.res["msg"] = res.msg;
  369. } else if (
  370. this.type == "specimenPlan" ||
  371. this.type == "specimen"
  372. ) {
  373. this.infoDATA = res;
  374. this.speNum = res.specimenCount;
  375. // --------------------------
  376. this.res["status"] = res.status;
  377. this.res["msg"] = res.msg;
  378. // --------------------------
  379. } else if (this.type == "jPBag") {
  380. // this.infoDATA.data.packid = res.data.packid;
  381. this.infoDATA = res;
  382. this.res["status"] = res.status;
  383. this.res["msg"] = res.msg;
  384. } else {
  385. uni.navigateTo({
  386. url: `../scanning_djEnd/scanning_djEnd?type=${
  387. this.queryObj.type
  388. }&type1=${this.queryObj.type1}&code=${
  389. this.queryObj.deptCode
  390. }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
  391. JSON.stringify(this.ids)
  392. )}&model=${encodeURIComponent(
  393. JSON.stringify(res)
  394. )}`,
  395. });
  396. }
  397. } else {
  398. uni.navigateTo({
  399. url: `../scanning_djEnd/scanning_djEnd?type=${
  400. this.queryObj.type
  401. }&type1=${this.queryObj.type1}&code=${
  402. this.queryObj.deptCode
  403. }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
  404. JSON.stringify(this.ids)
  405. )}&model=${encodeURIComponent(
  406. JSON.stringify(res)
  407. )}`,
  408. });
  409. }
  410. });
  411. }
  412. } else {
  413. uni.showToast({
  414. icon: "none",
  415. title: "请求失败!",
  416. });
  417. }
  418. });
  419. // ------------------------------
  420. });
  421. },
  422. // 知道了
  423. showAlert() {
  424. uni.navigateTo({
  425. url: "../receiptpage/receiptpage",
  426. });
  427. },
  428. },
  429. onLoad(options) {
  430. console.log(options,'options')
  431. this.queryObj = options;
  432. if (this.queryObj.model) {
  433. let list = JSON.parse(this.queryObj.model);
  434. this.infoDATA = list;
  435. } else {
  436. this.infoDATA = this.queryObj.infoData;
  437. }
  438. this.RESData = this.queryObj.resData;
  439. this.res["status"] = this.queryObj.status;
  440. this.res["msg"] = this.queryObj.msg;
  441. this.res["patient"] = this.queryObj.patient;
  442. this.infoType = this.queryObj.type1;
  443. if (this.queryObj.dept) {
  444. this.DEPT = this.queryObj.dept;
  445. }
  446. this.queryObj.ids = JSON.parse(this.queryObj.ids);
  447. if (this.queryObj.ids) {
  448. this.ids = this.queryObj.ids;
  449. if (this.ids.length > 1) {
  450. this.idsType = 1;
  451. } else {
  452. this.idsType = 2;
  453. }
  454. }
  455. this.DEPTCode = this.queryObj.deptCode;
  456. this.type = this.queryObj.type;
  457. // #ifdef APP-PLUS
  458. webHandle("no", "app");
  459. // #endif
  460. // #ifdef H5
  461. webHandle("no", "wx");
  462. // #endif
  463. },
  464. };
  465. </script>
  466. <style lang="less">
  467. .Scanning_djInfo {
  468. padding: 0 20rpx;
  469. .Scanning_top {
  470. height: 270rpx;
  471. .red {
  472. background-color: #ff3b53 !important;
  473. }
  474. .Scanning_top_icon {
  475. width: 140rpx;
  476. height: 140rpx;
  477. margin: 0 auto;
  478. margin-top: 116rpx;
  479. border-radius: 50%;
  480. line-height: 140rpx;
  481. .cubeic-ok {
  482. font-size: 140rpx;
  483. color: #35b34a;
  484. }
  485. .cubeic-close {
  486. font-size: 140rpx;
  487. color: #ff3b53;
  488. }
  489. }
  490. .Scanning_top_text {
  491. .text1 {
  492. margin-top: 40rpx;
  493. font-size: 48rpx;
  494. text-align: center;
  495. }
  496. }
  497. }
  498. .Scanning_cont {
  499. font-size: 32rpx;
  500. text-align: center;
  501. view {
  502. margin-bottom: 16rpx;
  503. }
  504. .text {
  505. margin-top: 24rpx;
  506. color: #35b34a;
  507. }
  508. .text1 {
  509. margin-top: 24rpx;
  510. color: #ff3b53;
  511. }
  512. }
  513. .foot_btn {
  514. line-height: 88rpx;
  515. height: 100rpx;
  516. margin-top: 40rpx;
  517. text-align: center;
  518. display: flex;
  519. .btn1,
  520. .btn2,
  521. .btn3 {
  522. height: 88rpx;
  523. margin: 0 1%;
  524. flex: 1;
  525. background-image: linear-gradient(to right, #72c172, #3bb197);
  526. color: #fff;
  527. border-radius: 8rpx;
  528. font-size: 32rpx;
  529. margin-top: 16rpx;
  530. }
  531. }
  532. }
  533. </style>