bigScreen.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. <template>
  2. <view class="toolbar" @click="Scanning()" hover-class="seimin-btn-hover">
  3. <text class="toolbar-icon newicon newicon-saoma"></text>
  4. <text class="toolbar-sao">扫一扫</text>
  5. <!-- 填写交接人工号弹窗 -->
  6. <selectAccount @click.stop.native v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
  7. @cancel="hosCancel">
  8. </selectAccount>
  9. </view>
  10. </template>
  11. <script>
  12. import {
  13. post,
  14. SM
  15. } from "../../http/http.js";
  16. export default {
  17. data() {
  18. return {
  19. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  20. // 填写交接人工号弹窗model
  21. hosModels: {
  22. disjunctor: false,
  23. },
  24. userId: {
  25. ids: [],
  26. },
  27. workData: [],
  28. infoDATA: {},
  29. tabType: "", //当前选中项
  30. selectArr: [], //选中项
  31. code: "",
  32. currentCode: '', //当前小扫描的科室二维码
  33. SMFlag: true,
  34. }
  35. },
  36. methods: {
  37. // 填写交接人工号-确认
  38. hosOk(data) {
  39. console.log(data);
  40. const {
  41. accountName,
  42. account,
  43. accountId
  44. } = data;
  45. if (!accountName && !account) {
  46. //没有填写交接人
  47. uni.showModal({
  48. title: "提示",
  49. content: "请填写交接人工号!",
  50. showCancel: false,
  51. success: function(res) {
  52. if (res.confirm) {
  53. console.log("用户点击确定");
  54. } else if (res.cancel) {
  55. console.log("用户点击取消");
  56. }
  57. },
  58. });
  59. return;
  60. } else if ((!accountName && account) || (accountName && !account)) {
  61. //没有填写交接人
  62. uni.showModal({
  63. title: "提示",
  64. content: "请填写正确的交接人工号!",
  65. showCancel: false,
  66. success: function(res) {
  67. if (res.confirm) {
  68. console.log("用户点击确定");
  69. } else if (res.cancel) {
  70. console.log("用户点击取消");
  71. }
  72. },
  73. });
  74. return;
  75. }
  76. this.hosModels.disjunctor = false;
  77. this.orderDeptHandler(false, data);
  78. },
  79. // 填写交接人工号-取消
  80. hosCancel() {
  81. this.hosModels.disjunctor = false;
  82. this.flag = true;
  83. },
  84. // 填写交接人工号弹窗
  85. showSelectAccount() {
  86. this.hosModels = {
  87. disjunctor: true,
  88. };
  89. },
  90. // 标本配送-待送达-运输过程-标本数字交接,则,科室签到不需要填写交接人
  91. validateHandoverSpecimen(){
  92. return post("/simple/data/fetchDataList/taskType", {
  93. "idx": 0,
  94. "sum": 1,
  95. "taskType": {
  96. "hosId": {
  97. "id": this.hosId
  98. },
  99. "associationType": {
  100. "key": "association_types",
  101. "value": "specimen"
  102. }
  103. }
  104. });
  105. },
  106. //科室签到
  107. //trueBigScanner----判断是否大扫描
  108. //bigScanner----判断是否需要交接人
  109. //accountObj----弹窗填写的交接人信息
  110. async orderDeptHandler(bigScanner, accountObj) {
  111. console.log(this.infoDATA);
  112. uni.showLoading({
  113. title: "加载中",
  114. mask: true,
  115. });
  116. if(this.tabType === 'specimen' && this.infoDATA.specimen && this.infoDATA.specimen[0].gdState.value == 5){
  117. let result = await this.validateHandoverSpecimen();
  118. if (result.status == 200) {
  119. if(result.list.length){
  120. // 标本-运送过程-终点科室-标本数字交接
  121. if(result.list[0].carryingCourses[1].checkoutMethod.value == 3){
  122. bigScanner = false;
  123. }
  124. }else{
  125. uni.showToast({
  126. icon: "none",
  127. title: "请配置标本配送任务类型!",
  128. });
  129. uni.hideLoading();
  130. return;
  131. }
  132. }
  133. }
  134. let type = "orderSign/" + this.code;
  135. let list = {
  136. ids: this.userId.ids,
  137. trueBigScanner: ['666']
  138. };
  139. bigScanner && (list.bigScanner = ['666']);
  140. if (accountObj) {
  141. list.handover = [accountObj.accountId];
  142. }
  143. post("/workerOrder/" + type, list).then((res) => {
  144. console.log(this.tabType)
  145. uni.hideLoading();
  146. if (res.status == 200) {
  147. if (this.tabType == 'specimenPlan') {
  148. // -----------------------------
  149. console.log(this.selectArr, '选中工单')
  150. let gd = this.infoDATA.specimenPlan.find(v => v.id == this.selectArr[0]);
  151. let startDeptId = gd.startDept.id; //起点科室id
  152. let isDigitalHandover = gd.taskType.isDigitalHandover; //是否数字交接开关
  153. let signDeptId = res.deptId; //签到的科室id
  154. let gdId = gd.id;
  155. let gdState = gd.gdState.value;
  156. let endDepts = gd.endDepts.map(v => v.id).toString();
  157. uni.navigateTo({
  158. url: `../scanning_djEnd/scanning_djEnd?type=${
  159. this.tabType
  160. }&type1=${res.type}&code=${this.code}&dept=${
  161. res.dept
  162. }&ids=${encodeURIComponent(
  163. JSON.stringify(this.userId.ids)
  164. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&startDeptId=${startDeptId}&isDigitalHandover=${isDigitalHandover}&signDeptId=${signDeptId}&gdId=${gdId}&gdState=${gdState}&endDepts=${endDepts}`,
  165. });
  166. } else if (this.tabType == 'specimen') {
  167. // 同济是false
  168. if (res.deptType && res.deptType.value === 'middleRoom') {
  169. // if (false) {
  170. // 如果是中转科室
  171. uni.navigateTo({
  172. url: `../checkAfterBigScreen/checkAfterBigScreen?type=${
  173. this.tabType
  174. }&type1=${res.type}&code=${this.code}&dept=${
  175. res.dept
  176. }&ids=${encodeURIComponent(
  177. JSON.stringify(this.userId.ids)
  178. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  179. });
  180. } else if(res.type === 'spe-dsd-4'){
  181. // 检验方式是标本数字交接
  182. uni.navigateTo({
  183. url: `/pages/specimenHandoverNew/specimenHandoverNew?type=${
  184. this.tabType
  185. }&type1=${res.type}&code=${this.code}&dept=${
  186. res.dept
  187. }&ids=${encodeURIComponent(
  188. JSON.stringify(this.userId.ids)
  189. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  190. });
  191. } else{
  192. uni.navigateTo({
  193. url: `../scanning_djEnd/scanning_djEnd?type=${
  194. this.tabType
  195. }&type1=${res.type}&code=${this.code}&dept=${
  196. res.dept
  197. }&ids=${encodeURIComponent(
  198. JSON.stringify(this.userId.ids)
  199. )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
  200. });
  201. }
  202. }
  203. } else if (res.status == "0000") {
  204. this.showSelectAccount();
  205. } else {
  206. this.flag = true;
  207. uni.navigateTo({
  208. url: `../scanning_djEnd/scanning_djEnd?type=${this.tabType}&type1=${
  209. res.type
  210. }&code=${this.code}&dept=${res.dept}&ids=${encodeURIComponent(
  211. JSON.stringify(this.userId.ids)
  212. )}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
  213. });
  214. }
  215. });
  216. },
  217. //获取药包信息
  218. getInfo(responeseData, code){
  219. console.log(responeseData);
  220. uni.showLoading({
  221. title: "加载中",
  222. mask: true,
  223. });
  224. post(`/transflow/scanInfo`, {type: responeseData.drugsBagType, id: responeseData.drugsBagId, orderStateValue: responeseData.orderStateValue}).then(res => {
  225. uni.hideLoading();
  226. if(res.state == 200){
  227. if(res.data){
  228. let drugsBag = res.data.dto || {};
  229. let orderId = responeseData.orderId;
  230. let config = res.data.taskTypeConfig || {};
  231. console.log(res);
  232. if(responeseData.orderStateValue == 2 || responeseData.orderStateValue == 3 || responeseData.orderStateValue == 4){
  233. // 待抢单、待接单、待到达,进入起点科室流程
  234. uni.navigateTo({
  235. url: `/pages/newDrug/createOrder/createOrder?drugsBagType=${responeseData.drugsBagType}&drugsBagId=${responeseData.drugsBagId}&orderId=${responeseData.orderId || ''}`,
  236. });
  237. }else if(responeseData.orderStateValue == 5){
  238. // 待送达,进入起点科室流程
  239. this.pageNavigateByConfig(config, responeseData, responeseData, code)
  240. }
  241. }
  242. }else{
  243. uni.showToast({
  244. icon: "none",
  245. title: res.msg || "接口获取数据失败!",
  246. });
  247. }
  248. })
  249. },
  250. // 工单完成
  251. completeOrder(responseData, queryObj){
  252. console.log(responseData, queryObj)
  253. uni.showLoading({
  254. title: "加载中",
  255. mask: true,
  256. });
  257. let postData = {
  258. "type": queryObj.drugsBagType,
  259. "orderId": responseData.orderId,
  260. };
  261. post('/transflow/checkComplete', postData).then(res => {
  262. uni.hideLoading();
  263. if(res.state == 200){
  264. uni.showToast({
  265. icon: "none",
  266. title: responseData.orderStateValue == 4 ? "交接成功,请尽快送达科室!" : (responseData.orderStateValue == 5 ? "交接成功,完成配送!" : ""),
  267. duration: 60000,
  268. mask: true,
  269. complete(){
  270. setTimeout(() => {
  271. uni.hideToast();
  272. uni.redirectTo({
  273. url: `/pages/receiptpage/receiptpage`,
  274. });
  275. }, 2000)
  276. }
  277. });
  278. }else{
  279. uni.showToast({
  280. icon: "none",
  281. title: res.msg || "接口获取数据失败!",
  282. });
  283. }
  284. })
  285. },
  286. // 根据配置跳转页面
  287. pageNavigateByConfig(config, responseData, queryObj, code){
  288. let drugsBagType = queryObj.drugsBagType;
  289. let orderId = responseData.orderId;
  290. let drugsBagId = responseData.drugsBagId;
  291. let orderStateValue = responseData.orderStateValue;
  292. if(config.drugsModel === 1){
  293. // 一单一码
  294. if(responseData.orderStateValue == 4){
  295. // 待到达
  296. if(config.drugsStartCheck === 1){
  297. // 起点科室支持核对
  298. uni.navigateTo({
  299. url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
  300. });
  301. }else{
  302. // 起点科室不支持核对
  303. if(config.drugsStartPhoto === 1){
  304. // 起点科室支持拍照留存
  305. uni.navigateTo({
  306. url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
  307. });
  308. }else{
  309. // 起点科室不支持拍照留存
  310. this.completeOrder(responseData, queryObj);
  311. }
  312. }
  313. }else if(responseData.orderStateValue == 5){
  314. // 待送达
  315. if(config.drugsEndCheck === 1){
  316. // 起点科室支持核对
  317. uni.navigateTo({
  318. url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
  319. });
  320. }else{
  321. // 起点科室不支持核对
  322. if(config.drugsEndPhoto === 1){
  323. // 起点科室支持拍照留存
  324. uni.navigateTo({
  325. url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
  326. });
  327. }else{
  328. // 终点科室不支持拍照留存
  329. this.completeOrder(responseData, queryObj);
  330. }
  331. }
  332. }
  333. }else if(config.drugsModel === 2){
  334. // 一单多码
  335. uni.showLoading({
  336. title: "加载中",
  337. mask: true,
  338. });
  339. post("/transflow/scanBind", { type: drugsBagType, orderId, code }).then((ress) => {
  340. uni.hideLoading();
  341. if (ress.state == 200 && ress.data.state != 501 && ress.data.state != 502) {
  342. uni.navigateTo({
  343. url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${drugsBagType}&orderId=${orderId}&drugsBagId=${drugsBagId}&orderStateValue=${orderStateValue}`,
  344. });
  345. } else {
  346. uni.showToast({
  347. icon: "none",
  348. title: ress.msg || "接口获取数据失败!",
  349. });
  350. }
  351. });
  352. }
  353. },
  354. // 底部扫描
  355. Scanning(qrcodePrefix = '') {
  356. if (!this.SMFlag) {
  357. return;
  358. }
  359. this.SMFlag = false;
  360. SM().then((content) => {
  361. uni.showLoading({
  362. title: "加载中",
  363. mask: true,
  364. });
  365. //检验二维码的有效性(扫码前必须验证)
  366. post("/dept/scanning", {
  367. content,
  368. })
  369. .then((result) => {
  370. this.currentCode = result.code;
  371. this.SMFlag = true;
  372. // 200检测通过,201没有有效期也通过。
  373. if (result.state == 200 || result.state == 201) {
  374. let data = {
  375. code: result.code, //二维码
  376. };
  377. //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
  378. let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
  379. post("/workerOrder/scanCode", { code, hosId: this.hosId })
  380. .then((res) => {
  381. uni.hideLoading();
  382. if (res.status == 200) {
  383. // 扫描标本码
  384. if (res.type == "specimen") {
  385. let infoDATA = {
  386. stype: res.data.stype,
  387. scode: res.data.scode,
  388. patientName: res.data.patientName,
  389. sickRoom: res.data.sickRoom ?
  390. res.data.sickRoom.dept : "-",
  391. checkDept: res.data.checkDept ?
  392. res.data.checkDept.dept : "-",
  393. bedNum: res.data.bedNum,
  394. };
  395. uni.navigateTo({
  396. url: `../scanning_B/scanning_B?res=${encodeURIComponent(
  397. JSON.stringify(res)
  398. )}&infoDATA=${encodeURIComponent(
  399. JSON.stringify(infoDATA)
  400. )}`,
  401. });
  402. } else if (res.type == "patient") {
  403. //如果是患者腕带码
  404. // code: data.code //二维码
  405. res.workOrder = res.workOrder ? res.workOrder : []; //liao
  406. uni.navigateTo({
  407. url: `../scanning_ins/scanning_ins?code=${
  408. data.code
  409. }&infoDATA=${encodeURIComponent(
  410. JSON.stringify(res.data)
  411. )}&workData=${encodeURIComponent(
  412. JSON.stringify(res.workOrder)
  413. )}&patientOrders=${encodeURIComponent(
  414. JSON.stringify(res.patientOrders)
  415. )}`,
  416. });
  417. } else if (res.type == "quickOrder") {
  418. //快捷建单
  419. if(res.data.isDigitalHandover == 1){
  420. uni.navigateTo({
  421. url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  422. JSON.stringify(res.data)
  423. )}`,
  424. });
  425. }else{
  426. uni.navigateTo({
  427. url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
  428. JSON.stringify(res.data)
  429. )}`,
  430. });
  431. }
  432. } else if (res.type == "dept") {
  433. // 扫描科室码
  434. // code: data.code //二维码
  435. let infoDATA = res.data;
  436. console.log(infoDATA)
  437. // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
  438. // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
  439. if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
  440. this.infoDATA = infoDATA;
  441. this.workData = infoDATA.specimen || infoDATA.specimenPlan;
  442. this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
  443. this.code = data.code;
  444. this.selectArr = [];
  445. for (var i = 0; i < this.workData.length; i++) {
  446. this.selectArr.push(this.workData[i].id);
  447. }
  448. this.userId.ids = this.selectArr;
  449. this.orderDeptHandler(true);
  450. }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
  451. // 医废
  452. uni.navigateTo({
  453. url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  454. });
  455. }else{
  456. uni.navigateTo({
  457. url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
  458. JSON.stringify(infoDATA)
  459. )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  460. });
  461. }
  462. } else if (res.type == 'drugsBag') {
  463. if (res.drugsBagType == 'drugsJpbag' || res.drugsBagType == 'drugsWestern' || res.drugsBagType == 'drugsReturn' || res.drugsBagType == 'drugsPoison' || res.drugsBagType == 'drugsHerbal') {
  464. //新药品-扫静配|西药|退药|毒麻|中草药
  465. if(res.orderId){
  466. // 有工单
  467. this.getInfo(res, code);
  468. }else{
  469. // 没有工单,进入起点科室流程
  470. uni.navigateTo({
  471. url: `/pages/newDrug/createOrder/createOrder?drugsBagType=${res.drugsBagType}&drugsBagId=${res.drugsBagId}&orderId=${res.orderId || ''}`,
  472. });
  473. }
  474. }else{
  475. //扫药包码
  476. uni.navigateTo({
  477. url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
  478. });
  479. }
  480. } else if (res.type == 'nucleicAcid') {
  481. //扫核酸码
  482. uni.navigateTo({
  483. url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
  484. });
  485. } else if (res.type == 'blood') {
  486. //扫血制品
  487. // 判断size,多个则进入新页面选择
  488. if(res.size > 1){
  489. uni.navigateTo({
  490. url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
  491. });
  492. } else {
  493. uni.navigateTo({
  494. url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
  495. });
  496. }
  497. } else if (res.type == 'receiveOrder') {
  498. //扫快捷接单
  499. uni.showModal({
  500. title: "提示",
  501. content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
  502. success: function(result) {
  503. if (result.confirm) {
  504. uni.showLoading({
  505. title: "加载中",
  506. mask: true,
  507. });
  508. post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
  509. uni.hideLoading();
  510. if (result.status == 200) {
  511. uni.showModal({
  512. title: "提示",
  513. content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
  514. showCancel: false,
  515. success: function(res) {
  516. if (res.confirm) {
  517. console.log("用户点击确定");
  518. uni.redirectTo({
  519. url: "../receiptpage/receiptpage",
  520. });
  521. } else if (res.cancel) {
  522. console.log("用户点击取消");
  523. }
  524. },
  525. });
  526. } else {
  527. uni.showToast({
  528. icon: "none",
  529. title: result.msg || "接口获取数据失败!",
  530. });
  531. }
  532. });
  533. } else if (result.cancel) {
  534. console.log("用户点击取消");
  535. }
  536. },
  537. });
  538. } else if (res.type == 'bloodTake') {
  539. if(res.data){
  540. //新血制品-扫科室
  541. uni.navigateTo({
  542. url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
  543. });
  544. }else{
  545. // 走type是dept的流程
  546. // 扫描科室码
  547. // code: data.code //二维码
  548. let infoDATA = res.data;
  549. console.log(infoDATA)
  550. // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
  551. // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
  552. if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
  553. this.infoDATA = infoDATA;
  554. this.workData = infoDATA.specimen || infoDATA.specimenPlan;
  555. this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
  556. this.code = data.code;
  557. this.selectArr = [];
  558. for (var i = 0; i < this.workData.length; i++) {
  559. this.selectArr.push(this.workData[i].id);
  560. }
  561. this.userId.ids = this.selectArr;
  562. this.orderDeptHandler(true);
  563. }else{
  564. uni.navigateTo({
  565. url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
  566. JSON.stringify(infoDATA)
  567. )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
  568. });
  569. }
  570. }
  571. } else if(res.type == 'clinicalWaste'){
  572. // 医废
  573. if(res.wasteDetails){
  574. uni.navigateTo({
  575. url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
  576. });
  577. }else{
  578. uni.navigateTo({
  579. url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
  580. });
  581. }
  582. }
  583. } else {
  584. if(res.bigScanSpecialMsg){
  585. uni.navigateTo({
  586. url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
  587. });
  588. }else{
  589. uni.navigateTo({
  590. url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
  591. });
  592. }
  593. }
  594. });
  595. } else {
  596. uni.hideLoading();
  597. uni.showToast({
  598. icon: "none",
  599. title: result.info || "接口获取数据失败!",
  600. });
  601. }
  602. })
  603. }).catch(err => {
  604. this.SMFlag = true;
  605. });
  606. },
  607. },
  608. onShow() {
  609. this.SMFlag = true;
  610. }
  611. };
  612. </script>
  613. <style lang="less">
  614. // 底部扫一扫
  615. .toolbar {
  616. position: fixed;
  617. left: 0;
  618. right: 0;
  619. bottom: 30rpx;
  620. z-index: 999;
  621. height: 88rpx;
  622. display: flex;
  623. justify-content: center;
  624. align-items: center;
  625. box-sizing: border-box;
  626. border-radius: 4rpx;
  627. box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.24);
  628. background-color: #e5e9ed;
  629. .toolbar-icon {
  630. font-size: 52rpx;
  631. margin-right: 16rpx;
  632. color: #07863c;
  633. }
  634. .toolbar-sao {
  635. font-size: 36rpx;
  636. color: #333;
  637. }
  638. }
  639. </style>