scanning_djEnd.vue 26 KB

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