scanning_djEnd.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  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. >
  67. <view v-if="accountObj"> 交接人账号 : {{ accountObj.account }} </view>
  68. <view v-if="accountObj"> 交接人姓名 : {{ accountObj.accountName }} </view>
  69. <view>已到达目标科室,请取药包或静配包后送达目标科室.</view>
  70. </view>
  71. <view
  72. class="Scanning_cont"
  73. v-if="
  74. infoDATA.status == 200 && type == 'other' && infoDATA.type == 'qt-ddd-1'
  75. "
  76. >已到达目标科室,请执行该工单.</view
  77. >
  78. <view
  79. class="Scanning_cont"
  80. v-if="
  81. (infoDATA.state == 'finish' &&
  82. infoDATA.status == 200 &&
  83. type == 'specimenPlan' &&
  84. infoDATA.type == 'plan-spe-dsd-1') ||
  85. (infoDATA.status == 200 &&
  86. type == 'other' &&
  87. infoDATA.type == 'qt-dsd-1')
  88. "
  89. >已到达目标科室,工单已完成.</view
  90. >
  91. <view
  92. class="Scanning_cont"
  93. v-if="
  94. (infoDATA.status == 200 &&
  95. type == 'specimenPlan' &&
  96. infoDATA.type != 'plan-spe-ddd-1' &&
  97. infoDATA.type != 'plan-spe-dsd-1') ||
  98. (infoDATA.status == 200 &&
  99. type == 'specimen' &&
  100. infoDATA.type != 'spe-ddd-1' &&
  101. infoDATA.type != 'spe-dsd-1')
  102. "
  103. >已到达目标科室,请扫描标本.</view
  104. >
  105. <view
  106. class="Scanning_cont"
  107. v-if="
  108. (infoDATA.status == 200 &&
  109. type == 'specimenPlan' &&
  110. infoDATA.type == 'plan-spe-ddd-1') ||
  111. (infoDATA.status == 200 &&
  112. type == 'specimen' &&
  113. infoDATA.type == 'spe-ddd-1')
  114. "
  115. >
  116. <view v-if="accountObj"> 交接人账号 : {{ accountObj.account }} </view>
  117. <view v-if="accountObj"> 交接人姓名 : {{ accountObj.accountName }} </view>
  118. <view>已到达目标科室,请取标本后送达目标科室.</view>
  119. </view>
  120. <view
  121. class="Scanning_cont"
  122. v-if="
  123. (infoDATA.state != 'finish' &&
  124. infoDATA.status == 200 &&
  125. type == 'specimenPlan' &&
  126. infoDATA.type == 'plan-spe-dsd-1') ||
  127. (infoDATA.status == 200 &&
  128. type == 'specimen' &&
  129. infoDATA.type == 'spe-dsd-1')
  130. "
  131. >
  132. <view v-if="accountObj"> 交接人账号 : {{ accountObj.account }} </view>
  133. <view v-if="accountObj"> 交接人姓名 : {{ accountObj.accountName }} </view>
  134. <view>已到达目标科室,请放置标本完成该工单.</view>
  135. </view
  136. >
  137. <view class="Scanning_cont" v-if="infoDATA.status != 200">
  138. <view>{{ infoDATA.msg }}</view>
  139. </view>
  140. <view
  141. class="foot_btn"
  142. v-if="type == 'inspect' || type == 'patientTransport'"
  143. >
  144. <view class="btn3" @click="Scanning_again()">继续扫描</view>
  145. </view>
  146. <view class="foot_btn" v-if="type == 'drugsBag' || type == 'jPBag'">
  147. <view
  148. class="btn3"
  149. @click="Scanning_again()"
  150. v-if="
  151. type1 === 'drug-ddd-2' ||
  152. type1 === 'drug-dsd-2' ||
  153. type1 === 'jp-ddd-2' ||
  154. type1 === 'jp-dsd-2'
  155. "
  156. >继续扫描</view
  157. >
  158. <view
  159. class="btn3"
  160. @click="showAlert()"
  161. v-if="
  162. type1 === 'drug-ddd-1' ||
  163. type1 === 'drug-dsd-1' ||
  164. type1 === 'jp-ddd-1' ||
  165. type1 === 'jp-dsd-1'
  166. "
  167. >知道了</view
  168. >
  169. </view>
  170. <view
  171. class="foot_btn"
  172. v-if="
  173. (type == 'specimenPlan' &&
  174. type1 != 'plan-spe-dsd-1' &&
  175. (type1 != 'plan-spe-ddd-1') & (type1 != 'plan-spe-ddd-2')) ||
  176. (type == 'specimen' &&
  177. type1 != 'spe-dsd-1' &&
  178. (type1 != 'spe-ddd-1') & (type1 != 'spe-ddd-2'))
  179. "
  180. >
  181. <view class="btn1" @click="Scanning_again()">扫描标本</view>
  182. <view class="btn3" @click="getNoScanSpecimen()">查看未扫描标本</view>
  183. <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view>
  184. </view>
  185. <view
  186. class="foot_btn"
  187. v-if="
  188. (type == 'specimenPlan' && type1 == 'plan-spe-ddd-2') ||
  189. (type == 'specimen' && type1 == 'spe-ddd-2')
  190. "
  191. >
  192. <view class="btn1" @click="Scanning_again()">扫描标本</view>
  193. <view class="btn3" @click="getNoScanSpecimen()">查看未扫描标本</view>
  194. <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view>
  195. </view>
  196. <view
  197. class="foot_btn"
  198. v-if="
  199. (infoDATA.state != 'finish' &&
  200. type == 'specimenPlan' &&
  201. type1 == 'plan-spe-dsd-1') ||
  202. (type == 'specimen' && type1 == 'spe-dsd-1')
  203. "
  204. >
  205. <view class="btn1" @click="Scanning_complete1(ids)">完成工单</view>
  206. <view class="btn2" @click="showAlert()">继续配送</view>
  207. </view>
  208. <view
  209. class="foot_btn"
  210. v-if="
  211. infoDATA.status != 200 &&
  212. type != 'specimenPlan' &&
  213. type != 'specimen' &&
  214. type !== 'jPBag' &&
  215. type !== 'inspect' &&
  216. type !== 'drugsBag' &&
  217. type !== 'patientTransport'
  218. "
  219. >
  220. <view class="btn3" @click="showAlert()">知道了</view>
  221. </view>
  222. <view
  223. class="foot_btn"
  224. v-if="
  225. (infoDATA.status == 200 && type1 == 'spe-ddd-1') ||
  226. (infoDATA.status == 200 && type1 == 'plan-spe-ddd-1')
  227. "
  228. >
  229. <view class="btn3" @click="showAlert()">知道了</view>
  230. </view>
  231. <view
  232. class="foot_btn"
  233. v-if="
  234. (infoDATA.state == 'finish' &&
  235. infoDATA.status == 200 &&
  236. type == 'specimenPlan' &&
  237. type1 == 'plan-spe-dsd-1') ||
  238. (infoDATA.status == 200 && type == 'other')
  239. "
  240. >
  241. <view class="btn3" @click="showAlert()">知道了</view>
  242. </view>
  243. <!-- 弹窗 -->
  244. <showModel
  245. :title="models.title"
  246. :icon="models.icon"
  247. :disjunctor="models.disjunctor"
  248. :content="models.content"
  249. @ok="ok"
  250. @cancel="cancel"
  251. :operate="models.operate"
  252. ></showModel>
  253. <!-- 弹窗 -->
  254. <showModel
  255. :title="models2.title"
  256. :icon="models2.icon"
  257. :disjunctor="models2.disjunctor"
  258. :content="models2.content"
  259. @ok="ok2"
  260. @know="know2"
  261. @cancel="cancel2"
  262. :operate="models2.operate"
  263. >
  264. </showModel>
  265. </view>
  266. </template>
  267. <script>
  268. import showModel from "../../components/showModel/showModel.vue";
  269. import { get, post, SM, webHandle } from "../../http/http.js";
  270. export default {
  271. data() {
  272. return {
  273. // 交接人信息
  274. accountObj: undefined,
  275. //传给后端查询是否继续扫描
  276. deptId: undefined,
  277. SMFlag: true,
  278. // 弹窗model
  279. models: {
  280. disjunctor: false,
  281. },
  282. // 完成扫描弹窗model1
  283. models2: {
  284. disjunctor: false,
  285. },
  286. wcId: "", //工单完成ID
  287. wcFlag: false,
  288. modelFlag: "", //工单完成类型
  289. infoDATA: [],
  290. ids: [],
  291. type: "",
  292. type1: "",
  293. queryObj: {}, //路由传递过来的参数
  294. gotoFlag: true,
  295. speNum: 0,
  296. content: "",
  297. };
  298. },
  299. methods: {
  300. // 查看未扫描标本
  301. getNoScanSpecimen() {
  302. if (!this.gotoFlag) {
  303. return;
  304. }
  305. this.gotoFlag = false;
  306. let ids = JSON.parse(this.queryObj.ids);
  307. uni.navigateTo({
  308. url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(
  309. JSON.stringify(ids)
  310. )}&deptCode=${this.queryObj.code}`,
  311. });
  312. },
  313. // 正常完成扫描
  314. overFinish() {
  315. //完成扫描
  316. let postType = "";
  317. if (
  318. this.queryObj.type1 === "plan-spe-ddd-2" ||
  319. this.queryObj.type1 === "plan-spe-dsd-2" ||
  320. this.queryObj.type1 === "plan-spe-dsd-3"
  321. ) {
  322. postType = "finishPlanSpes";
  323. } else if (this.queryObj.type1 == "spe-ddd-2") {
  324. postType = "finishSpes";
  325. }
  326. let data = {
  327. type: this.queryObj.type1,
  328. ids: this.wcId,
  329. };
  330. uni.showLoading({
  331. title: "加载中",
  332. mask: true,
  333. });
  334. post("/workerOrder/" + postType, data).then((res) => {
  335. if (res.status == 200) {
  336. this.models2 = {
  337. disjunctor: true,
  338. title: "提示",
  339. content: `完成扫描成功`,
  340. icon: "success",
  341. operate: {
  342. know: "知道了",
  343. },
  344. };
  345. } else {
  346. uni.hideLoading();
  347. uni.showToast({
  348. icon: "none",
  349. title: "请求失败!",
  350. });
  351. }
  352. });
  353. },
  354. // 确定
  355. ok() {
  356. this.models.disjunctor = false;
  357. if (this.modelFlag === "complete") {
  358. uni.showLoading({
  359. title: "加载中",
  360. mask: true,
  361. });
  362. let ids = JSON.parse(this.queryObj.ids);
  363. let postData = {
  364. ids,
  365. sign: true,
  366. deptQrCode: this.queryObj.code,
  367. };
  368. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  369. uni.hideLoading();
  370. if (ress.status == 200) {
  371. if (this.wcFlag) {
  372. //正常完成扫描
  373. this.overFinish();
  374. } else {
  375. this.gotoOver();
  376. }
  377. } else if (ress.status == 1000035) {
  378. let content = "";
  379. if (
  380. this.queryObj.type1 === "spe-ddd-2" ||
  381. this.queryObj.type1 === "plan-spe-ddd-2"
  382. ) {
  383. //待到达
  384. content = `系统内预计标本<strong class="red">${ress.expectReceiveNum}</strong>只,您扫描收取标本<strong class="red">${ress.actualReceiveNum}</strong>只,其中<strong class="red">${ress.notReceiveNum}</strong>只未扫描;`;
  385. } else {
  386. //待送达
  387. this.content = `本工单已签到<strong class="red">${
  388. ress.scanSet ? ress.scanSet.join("、") : ""
  389. }</strong>,剩余需签到科室<strong class="red">${
  390. ress.notScanSet ? ress.notScanSet.join("、") : ""
  391. }</strong>,总签收<strong class="red">${
  392. ress.totalAcceptance
  393. }</strong>只,剩余<strong class="red">${
  394. ress.notAcceptance
  395. }</strong>只未签收,您确定完成工单吗?`;
  396. content = `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
  397. }
  398. this.models2 = {
  399. disjunctor: true,
  400. title: "提示",
  401. content,
  402. icon: "warn",
  403. operate: {
  404. ok: "确定",
  405. cancel: "取消",
  406. },
  407. };
  408. } else {
  409. uni.showToast({
  410. icon: "none",
  411. title: "请求失败!",
  412. });
  413. }
  414. });
  415. } else if (this.modelFlag === "complete1") {
  416. //1对1标本完成工单
  417. let ids = this.wcId;
  418. uni.showLoading({
  419. title: "加载中",
  420. mask: true,
  421. });
  422. post("/workerOrder/finishSpeOrder", ids).then((res) => {
  423. if (res.status == 200) {
  424. uni.reLaunch({
  425. url: "../receiptpage/receiptpage",
  426. });
  427. } else {
  428. uni.hideLoading();
  429. uni.showToast({
  430. icon: "none",
  431. title: "请求失败!",
  432. });
  433. }
  434. });
  435. }
  436. },
  437. // 取消
  438. cancel() {
  439. this.models.disjunctor = false;
  440. },
  441. // 确定
  442. ok2() {
  443. this.models2.disjunctor = false;
  444. let ids = JSON.parse(this.queryObj.ids);
  445. let postData = {
  446. ids,
  447. deptQrCode: this.queryObj.code,
  448. };
  449. uni.showLoading({
  450. title: "加载中",
  451. mask: true,
  452. });
  453. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  454. uni.hideLoading();
  455. if (ress.status == 200) {
  456. if (this.wcFlag) {
  457. this.overFinish();
  458. } else {
  459. this.gotoOver();
  460. }
  461. } else {
  462. uni.showToast({
  463. icon: "none",
  464. title: "请求失败!",
  465. });
  466. }
  467. });
  468. },
  469. // 取消
  470. cancel2() {
  471. this.models2.disjunctor = false;
  472. },
  473. know2() {
  474. this.models2.disjunctor = false;
  475. uni.reLaunch({
  476. url: "../receiptpage/receiptpage",
  477. });
  478. },
  479. //完成扫描
  480. Scanning_complete(id) {
  481. this.modelFlag = "complete";
  482. this.wcId = id;
  483. if (
  484. this.queryObj.type1 == "plan-spe-ddd-2" ||
  485. this.queryObj.type1 == "spe-ddd-2"
  486. ) {
  487. this.wcFlag = true;
  488. this.models = {
  489. disjunctor: true,
  490. title: "提示",
  491. content: "是否确定标本已扫描完成?",
  492. icon: "warn",
  493. operate: {
  494. ok: "确定",
  495. cancel: "取消",
  496. },
  497. };
  498. } else if (
  499. this.queryObj.type1 == "plan-spe-dsd-2" ||
  500. this.queryObj.type1 == "plan-spe-dsd-3" ||
  501. this.queryObj.type1 == "spe-dsd-2" ||
  502. this.queryObj.type1 == "spe-dsd-3"
  503. ) {
  504. this.wcFlag = false;
  505. this.models = {
  506. disjunctor: true,
  507. title: "提示",
  508. content: "是否确定标本已扫描完成?",
  509. icon: "warn",
  510. operate: {
  511. ok: "确定",
  512. cancel: "取消",
  513. },
  514. };
  515. } else {
  516. this.gotoOver();
  517. }
  518. },
  519. // 跳转完成工单页面
  520. gotoOver() {
  521. uni.navigateTo({
  522. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  523. this.queryObj.type1
  524. }&deptCode=${this.queryObj.code}&dept=${
  525. this.queryObj.dept
  526. }&id=${encodeURIComponent(JSON.stringify(this.wcId))}&content=${
  527. this.content
  528. }`,
  529. });
  530. },
  531. //一对一完成工单
  532. Scanning_complete1(id) {
  533. this.modelFlag = "complete1";
  534. this.wcId = id;
  535. this.models = {
  536. disjunctor: true,
  537. title: "提示",
  538. content: "是否确定标本配送完成?",
  539. icon: "warn",
  540. operate: {
  541. ok: "确定",
  542. cancel: "取消",
  543. },
  544. };
  545. },
  546. //继续扫描
  547. Scanning_again() {
  548. if (!this.SMFlag) {
  549. return;
  550. }
  551. this.SMFlag = false;
  552. SM()
  553. .then((ress1) => {
  554. uni.showLoading({
  555. title: "加载中",
  556. mask: true,
  557. });
  558. // ----------------
  559. //检验二维码的有效性
  560. post("/dept/scanning", {
  561. content: ress1,
  562. }).then((result) => {
  563. this.SMFlag = true;
  564. if (result.state == 200 || result.state == 201) {
  565. let ress = result.code;
  566. let speCode = ress;
  567. let data = {
  568. code: speCode,
  569. type: this.queryObj.type1,
  570. deptCode: this.code,
  571. ids: this.ids,
  572. };
  573. let postType = "";
  574. if (this.type == "jPBag" || this.type == "drugsBag") {
  575. postType = "handleDrugsAndJp";
  576. delete data.ids;
  577. if (this.accountObj) {
  578. data.handover = this.accountObj.accountId;
  579. }
  580. data.deptId = this.deptId;
  581. }
  582. if (this.type == "specimen") {
  583. postType = "handleSpes";
  584. data["speCode"] = data.code;
  585. delete data.code;
  586. if (this.accountObj) {
  587. data.handover = this.accountObj.accountId;
  588. }
  589. }
  590. if (this.type == "specimenPlan") {
  591. postType = "handlePlanSpes";
  592. data["speCode"] = data.code;
  593. delete data.code;
  594. if (this.accountObj) {
  595. data.handover = this.accountObj.accountId;
  596. }
  597. }
  598. if (this.type == "inspect") {
  599. postType = "handleIns";
  600. }
  601. if (this.type == "patientTransport") {
  602. postType = "handleTrans";
  603. }
  604. post("/workerOrder/" + postType, data).then((ress) => {
  605. uni.hideLoading();
  606. if (ress.status == 200) {
  607. //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
  608. if (this.type == "specimenPlan" || this.type == "specimen") {
  609. this.Scanning_again();
  610. }
  611. this.speNum = ress.specimenCount;
  612. uni.navigateTo({
  613. url: `../scanning_djInfo/scanning_djInfo?type=${
  614. this.queryObj.type
  615. }&type1=${
  616. this.queryObj.type1
  617. }&infoData=${encodeURIComponent(
  618. JSON.stringify(ress.data)
  619. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  620. this.queryObj.code
  621. }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
  622. JSON.stringify(this.ids)
  623. )}&model=${encodeURIComponent(
  624. JSON.stringify(ress)
  625. )}&speNum=${this.speNum}&accountObj=${encodeURIComponent(
  626. JSON.stringify(this.accountObj)
  627. )}&deptId=${this.deptId}`,
  628. });
  629. } else {
  630. uni.navigateTo({
  631. url: `../scanning_djInfo/scanning_djInfo?type=${
  632. this.queryObj.type
  633. }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
  634. ress.msg
  635. }&deptCode=${this.queryObj.code}&dept=${
  636. this.queryObj.dept
  637. }&ids=${encodeURIComponent(
  638. JSON.stringify(this.ids)
  639. )}&infoData=${encodeURIComponent(
  640. JSON.stringify(ress.data)
  641. )}&model=${encodeURIComponent(
  642. JSON.stringify(ress)
  643. )}&accountObj=${encodeURIComponent(
  644. JSON.stringify(this.accountObj)
  645. )}&deptId=${this.deptId}`,
  646. });
  647. }
  648. });
  649. } else {
  650. uni.hideLoading();
  651. uni.showToast({
  652. icon: "none",
  653. title: "请求失败!",
  654. });
  655. }
  656. });
  657. // ------------------------------
  658. })
  659. .catch((err) => {
  660. this.SMFlag = true;
  661. });
  662. },
  663. // 知道了
  664. showAlert() {
  665. uni.navigateTo({
  666. url: "../receiptpage/receiptpage",
  667. });
  668. },
  669. },
  670. onShow() {
  671. this.SMFlag = true;
  672. this.gotoFlag = true;
  673. },
  674. onLoad(options) {
  675. console.log(options, "djEnd");
  676. if (options.speNum) {
  677. this.speNum = options.speNum;
  678. }
  679. if (options.accountObj && options.accountObj != "undefined") {
  680. this.accountObj = JSON.parse(options.accountObj);
  681. }
  682. if (options.deptId && options.deptId != "undefined") {
  683. this.deptId = options.deptId;
  684. }
  685. this.queryObj = options;
  686. let list = JSON.parse(options.model); //签到返回的信息
  687. this.code = options.code; //二维码code
  688. this.ids = options.ids && JSON.parse(options.ids); //科室ID数组
  689. this.infoDATA = list;
  690. if (options.type) {
  691. //关联类型
  692. this.type = options.type;
  693. } else {
  694. this.type = list.type;
  695. }
  696. this.type1 = options.type1;
  697. // #ifdef APP-PLUS
  698. webHandle("no", "app");
  699. // #endif
  700. // #ifdef H5
  701. webHandle("no", "wx");
  702. // #endif
  703. },
  704. };
  705. </script>
  706. <style lang="less">
  707. .Scanning_djEnd {
  708. padding: 0px 20rpx;
  709. .Scanning_top {
  710. height: 270rpx;
  711. .Scanning_top_icon {
  712. width: 140rpx;
  713. height: 140rpx;
  714. margin: 0 auto;
  715. // margin-top: 116rpx;
  716. border-radius: 50%;
  717. line-height: 140rpx;
  718. .cubeic-ok {
  719. font-size: 140rpx;
  720. color: #35b34a;
  721. }
  722. .cubeic-close {
  723. font-size: 140rpx;
  724. color: #ff3b53;
  725. }
  726. }
  727. .Scanning_top_text {
  728. .text1 {
  729. margin-top: 40rpx;
  730. font-size: 48rpx;
  731. text-align: center;
  732. }
  733. }
  734. }
  735. .Scanning_cont {
  736. font-size: 32rpx;
  737. text-align: center;
  738. view {
  739. margin-bottom: 16rpx;
  740. }
  741. .text {
  742. margin-top: 24rpx;
  743. color: #35b34a;
  744. }
  745. .text1 {
  746. margin-top: 24rpx;
  747. color: #ff3b53;
  748. }
  749. }
  750. .foot_btn {
  751. line-height: 88rpx;
  752. height: 100rpx;
  753. margin-top: 40rpx;
  754. text-align: center;
  755. display: flex;
  756. view {
  757. height: 88rpx;
  758. flex: 1;
  759. margin: 0 1%;
  760. background-image: linear-gradient(to right, #72c172, #3bb197);
  761. color: #fff;
  762. border-radius: 8rpx;
  763. font-size: 32rpx;
  764. margin-top: 16rpx;
  765. }
  766. }
  767. }
  768. </style>