scanning_Result.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680
  1. <template>
  2. <view class="Scanning_Result">
  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 class="success_tips" v-if="type == 'inspect' || type == 'patientTransport'">
  10. (请您评估患者的意识状况、生命体征、配合程度,如有异常请及时联系护士!)
  11. </view>
  12. </view>
  13. </view>
  14. <view class="Scanning_top" v-if="res.status != 200">
  15. <view class="Scanning_top_icon">
  16. <text class="cubeic-close icon_transport transport-shibai"></text>
  17. </view>
  18. <view class="Scanning_top_text">
  19. <view class="text1"> 操作失败 </view>
  20. </view>
  21. </view>
  22. <view class="Scanning_cont" v-if="
  23. (res.status == 200 && type == 'specimenPlan') ||
  24. (res.status == 200 && type == 'specimen')
  25. ">
  26. <view> 标本类型 : {{ infoDATA.stype.name || "-" }} </view>
  27. <view> 标本编号 : {{ infoDATA.scode || "-" }} </view>
  28. <view> 患者姓名 : {{ infoDATA.patientName || "-" }} </view>
  29. <view> 已扫描 : {{ speNum }} </view>
  30. </view>
  31. <view class="Scanning_cont" v-if="
  32. (res.status == 200 && type == 'inspect') || type == 'patientTransport'
  33. ">
  34. <view v-if="res.patient"> 患者姓名 : {{ res.patient || "-" }} </view>
  35. <view v-if="res.patientCode">
  36. 患者编号 : {{ res.patientCode || "-" }}
  37. </view>
  38. <view v-if="res.deptName">
  39. 住院科室 : {{ res.deptName !== "undefined" ? res.deptName : "-" }}
  40. </view>
  41. <view v-if="res.bedNum">
  42. 床号 : {{ res.bedNum !== "undefined" ? res.bedNum : "-" }}
  43. </view>
  44. <view v-if="res.data">
  45. 检查项目 :
  46. <text v-for="(data, i) in res.data" :key="i">{{
  47. data.inspectName
  48. }}</text>
  49. </view>
  50. <view v-if="
  51. res.status == 200 &&
  52. infoType != 'ins-zxz-1' &&
  53. infoType != 'ins-dsd-1' &&
  54. infoType != 'ins-ddd-1' &&
  55. infoType != 'trans-ddd-1' &&
  56. infoType != 'trans-dsd-1'
  57. ">
  58. {{ res.msg || "" }}
  59. </view>
  60. <view v-if="infoType == 'trans-dsd-1' && res.status == 200">
  61. 工单已完成
  62. </view>
  63. <view v-if="infoType == 'ins-dsd-1' && res.status == 200">
  64. 工单已完成。
  65. </view>
  66. <!-- 半程陪检 -->
  67. <view v-if="infoDATA.type == 'ins-half-ok' && res.status == 200">
  68. 已到达检查科室,工单已完成。
  69. </view>
  70. </view>
  71. <view class="Scanning_cont" v-if="res.status == 200 && (type == 'drugsBag' || type == 'jPBag')">
  72. <view v-if="type == 'drugsBag'"> 药包编码 : #{{ infoDATA.packid }} </view>
  73. <view v-if="type == 'jPBag'">
  74. 静配药包编码 : #{{ infoDATA.packid }}
  75. </view>
  76. <view> 所属科室 : {{ infoDATA.target.dept || "-" }} </view>
  77. <view v-if="infoType === 'drug-dsd-2' || infoType === 'jp-dsd-2'">
  78. 工单已完成。
  79. </view>
  80. </view>
  81. <view class="Scanning_cont" v-if="res.status != 200">
  82. <view class="Scanning_cont_center">
  83. {{ res.msg === "undefined" || !res.msg ? "" : res.msg }}
  84. </view>
  85. </view>
  86. <view class="foot_btn" v-if="
  87. (type == 'specimen' && isKs != '1') ||
  88. (type == 'specimenPlan' && isKs != '1')
  89. ">
  90. <view class="btn1" @click="Scanning_again()"> 继续扫描 </view>
  91. <view class="btn2" @click="Scanning_complete(dataId)"> 完成扫描 </view>
  92. </view>
  93. <view class="foot_btn" v-if="
  94. (type != 'specimenPlan' &&
  95. type != 'specimen' &&
  96. type != 'drugsBag' &&
  97. type != 'jPBag' &&
  98. (type != 'inspect') & (type != 'patientTransport')) ||
  99. (queryObj.status == 200 &&
  100. type == 'drugsBag' &&
  101. infoType == 'drug-ddd-2') ||
  102. (queryObj.status == 200 &&
  103. type == 'drugsBag' &&
  104. infoType == 'drug-dsd-2') ||
  105. (queryObj.status == 200 && type == 'jPBag' && infoType == 'jp-ddd-2') ||
  106. (queryObj.status == 200 && type == 'jPBag' && infoType == 'jp-dsd-2') ||
  107. (queryObj.status == 200 && type == 'inspect') ||
  108. (queryObj.status == 200 && type == 'patientTransport')
  109. ">
  110. <view class="btn3" @click="showAlert(dataId)"> 知道了 </view>
  111. </view>
  112. <view class="foot_btn" v-if="
  113. (isKs != '1' &&
  114. queryObj.status != 200 &&
  115. type == 'drugsBag' &&
  116. infoType == 'drug-ddd-2') ||
  117. (isKs != '1' &&
  118. queryObj.status != 200 &&
  119. type == 'drugsBag' &&
  120. infoType == 'drug-dsd-2') ||
  121. (isKs != '1' &&
  122. queryObj.status != 200 &&
  123. type == 'jPBag' &&
  124. infoType == 'jp-ddd-2') ||
  125. (isKs != '1' &&
  126. queryObj.status != 200 &&
  127. type == 'jPBag' &&
  128. infoType == 'jp-dsd-2') ||
  129. (isKs != '1' && queryObj.status != 200 && type == 'inspect') ||
  130. (isKs != '1' && queryObj.status != 200 && type == 'patientTransport')
  131. ">
  132. <view class="btn3" @click="Scanning_again()"> 继续扫描 </view>
  133. <view class="btn3" @click="photograph(queryObj, { DEPTCode, DEPT, infoType })" v-if="
  134. (isKs != '1' && queryObj.status != 200 && type == 'inspect') ||
  135. (isKs != '1' && queryObj.status != 200 && type == 'patientTransport')
  136. ">
  137. 拍照
  138. </view>
  139. </view>
  140. <view class="foot_btn" v-if="
  141. infoType == 'spe-ddd-1' ||
  142. (isKs == '1' && queryObj.status != 200 && infoType == 'spe-dsd-2') ||
  143. (isKs == '1' && queryObj.status != 200 && infoType == 'spe-dsd-1') ||
  144. (isKs == '1' && queryObj.status != 200 && infoType == 'spe-ddd-2') ||
  145. (isKs == '1' && queryObj.status != 200 && infoType == 'spe-dsd-3') ||
  146. (isKs == '1' &&
  147. queryObj.status != 200 &&
  148. infoType == 'plan-spe-ddd-1') ||
  149. (isKs == '1' &&
  150. queryObj.status != 200 &&
  151. infoType == 'plan-spe-ddd-2') ||
  152. (isKs == '1' &&
  153. queryObj.status != 200 &&
  154. infoType == 'plan-spe-dsd-1') ||
  155. (isKs == '1' &&
  156. queryObj.status != 200 &&
  157. infoType == 'plan-spe-dsd-2') ||
  158. (isKs == '1' && queryObj.status != 200 && infoType == 'drug-ddd-2') ||
  159. (isKs == '1' && queryObj.status != 200 && infoType == 'drug-dsd-2') ||
  160. (isKs == '1' && queryObj.status != 200 && infoType == 'jp-ddd-2') ||
  161. (isKs == '1' && queryObj.status != 200 && infoType == 'jp-dsd-2') ||
  162. (isKs == '1' && queryObj.status != 200 && infoType == 'drug-ddd-1') ||
  163. (isKs == '1' && queryObj.status != 200 && infoType == 'drug-dsd-1') ||
  164. (isKs == '1' && queryObj.status != 200 && infoType == 'jp-ddd-1') ||
  165. (isKs == '1' && queryObj.status != 200 && infoType == 'jp-dsd-1') ||
  166. (isKs == '1' &&
  167. queryObj.status != 200 &&
  168. infoType == 'plan-spe-dsd-3') ||
  169. (isKs == '1' &&
  170. queryObj.status != 200 &&
  171. type == 'inspect' &&
  172. queryObj.type1 === 'undefined') ||
  173. (isKs == '1' &&
  174. queryObj.status != 200 &&
  175. type == 'patientTransport' &&
  176. queryObj.type1 === 'undefined')
  177. ">
  178. <view class="btn3" @click="showAlert(dataId)"> 知道了 </view>
  179. </view>
  180. <view class="foot_btn" v-if="
  181. (isKs == '1' &&
  182. queryObj.status != 200 &&
  183. type == 'inspect' &&
  184. queryObj.type1 === 'ins-zxz-1') ||
  185. (isKs == '1' &&
  186. queryObj.status != 200 &&
  187. type == 'inspect' &&
  188. queryObj.type1 === 'ins-dsd-1') ||
  189. (isKs == '1' &&
  190. queryObj.status != 200 &&
  191. type == 'patientTransport' &&
  192. queryObj.type1 === 'trans-dsd-1')
  193. ">
  194. <view class="btn1" @click="showAlert(dataId)"> 知道了 </view>
  195. <view class="btn2" @click="goToRight(dataId)"> 继续执行工单 </view>
  196. </view>
  197. <!-- 弹窗 -->
  198. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  199. @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
  200. <!-- 弹窗 -->
  201. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor"
  202. :radioItem="models1.radioItem" @ok="ok1" @radioChange="radioChange1" @cancel="cancel1" :operate="models1.operate">
  203. </showModel>
  204. </view>
  205. </template>
  206. <script>
  207. import showModel from "../../components/showModel/showModel.vue";
  208. import {
  209. get,
  210. post,
  211. SM,
  212. webHandle
  213. } from "../../http/http.js";
  214. import {
  215. photographTool
  216. } from "../../tools/photograph.js";
  217. export default {
  218. data() {
  219. return {
  220. // 完成扫描的id
  221. wcId: "",
  222. // 弹窗model
  223. models: {
  224. disjunctor: false,
  225. },
  226. // 单选框弹窗model1
  227. models1: {
  228. disjunctor: false,
  229. },
  230. isKs: "", //是否科室签到 1
  231. infoDATA: {},
  232. res: {},
  233. infoType: "",
  234. DEPTCode: "",
  235. RESData: {},
  236. DEPT: "",
  237. dataId: "",
  238. type: "",
  239. model: {},
  240. speNum: 0,
  241. queryObj: {}, //路由传递过来的数据
  242. selectRadio: [], //单选框选中的数据,第一项是qrcode,第二项是名称
  243. };
  244. },
  245. methods: {
  246. // 拍照
  247. photograph(data, obj) {
  248. photographTool(data, obj);
  249. },
  250. // 继续扫描
  251. Scanning_again() {
  252. SM().then((ress1) => {
  253. // ----------------
  254. uni.showLoading({
  255. title: "加载中",
  256. mask: true,
  257. });
  258. //检验二维码的有效性
  259. post("/dept/scanning", {
  260. content: ress1,
  261. }).then((result) => {
  262. if (result.state == 200 || result.state == 201) {
  263. let codes = result.code;
  264. if (codes) {
  265. let speCode = codes;
  266. let data = {
  267. code: speCode,
  268. type: this.queryObj.type1,
  269. deptCode: this.DEPTCode,
  270. ids: [],
  271. };
  272. data.ids.push(this.dataId);
  273. let postType = "";
  274. if (this.type == "jPBag" || this.type == "drugsBag") {
  275. postType = "handleDrugsAndJp";
  276. }
  277. if (this.type == "specimen") {
  278. data["speCode"] = data.code;
  279. delete data.code;
  280. postType = "handleSpes";
  281. }
  282. if (this.type == "specimenPlan") {
  283. data["speCode"] = data.code;
  284. delete data.code;
  285. postType = "handlePlanSpes";
  286. }
  287. if (this.type == "inspect") {
  288. postType = "handleIns";
  289. }
  290. if (this.type == "patientTransport") {
  291. postType = "handleTrans";
  292. }
  293. post("/workerOrder/" + postType, data).then((ress) => {
  294. uni.hideLoading();
  295. if (ress.status == 200) {
  296. if (this.type == "specimenPlan" || this.type == "specimen") {
  297. this.infoDATA = ress.data;
  298. this.speNum++;
  299. uni.setStorageSync("speNum", this.speNum);
  300. uni.navigateTo({
  301. url: `../scanning_Result/scanning_Result?type=${
  302. this.queryObj.type
  303. }&type1=${
  304. this.queryObj.type1
  305. }&infoData=${encodeURIComponent(
  306. JSON.stringify(ress.data)
  307. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  308. this.queryObj.deptCode
  309. }&dept=${this.queryObj.dept}&id=${this.dataId}&speNum=${
  310. this.speNum
  311. }&model=${encodeURIComponent(JSON.stringify(ress))}`,
  312. });
  313. } else if (
  314. this.type == "inspect" ||
  315. this.type == "patientTransport"
  316. ) {
  317. uni.navigateTo({
  318. url: `../scanning_Result/scanning_Result?type=${
  319. this.queryObj.type //baba
  320. }&type1=${
  321. this.queryObj.type1
  322. }&infoData=${encodeURIComponent(
  323. JSON.stringify(ress.data)
  324. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  325. this.queryObj.deptCode
  326. }&dept=${this.queryObj.dept}&id=${this.dataId}&speNum=${
  327. this.speNum
  328. }&model=${encodeURIComponent(
  329. JSON.stringify(ress)
  330. )}&patient=${ress.patient}&patientCode=${
  331. ress.patientCode
  332. }&deptName=${ress.deptName}&bedNum=${ress.bedNum}`,
  333. });
  334. } else {
  335. uni.navigateTo({
  336. url: `../scanning_Result/scanning_Result?type=${
  337. this.queryObj.type
  338. }&type1=${
  339. this.queryObj.type1
  340. }&infoData=${encodeURIComponent(
  341. JSON.stringify(ress.data)
  342. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  343. this.queryObj.deptCode
  344. }&dept=${this.queryObj.dept}&id=${this.dataId}&speNum=${
  345. this.speNum
  346. }&model=${encodeURIComponent(JSON.stringify(ress))}`,
  347. });
  348. }
  349. } else {
  350. uni.navigateTo({
  351. url: `../scanning_Result/scanning_Result?type=${
  352. this.queryObj.type
  353. }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
  354. ress.msg
  355. }&deptCode=${this.queryObj.deptCode}&dept=${
  356. this.queryObj.dept
  357. }&id=${this.dataId}&speNum=${
  358. this.speNum
  359. }&model=${encodeURIComponent(
  360. JSON.stringify(this.infoDATA)
  361. )}`,
  362. });
  363. }
  364. });
  365. } else {
  366. uni.hideLoading();
  367. }
  368. } else {
  369. uni.hideLoading();
  370. uni.showToast({
  371. icon: "none",
  372. title: "请求失败!",
  373. });
  374. }
  375. });
  376. // ------------------------------
  377. });
  378. },
  379. // 确定
  380. ok() {
  381. this.models.disjunctor = false;
  382. let data = {
  383. type: this.queryObj.type1,
  384. ids: [],
  385. };
  386. data.ids.push(this.wcId);
  387. // uni.showLoading({
  388. // title: '加载中',
  389. // mask: true
  390. // });
  391. //只要是标本轮巡1对多或者多对多
  392. if (
  393. this.queryObj.type1 === "plan-spe-ddd-2" ||
  394. this.queryObj.type1 === "plan-spe-ddd-3" ||
  395. this.queryObj.type1 === "plan-spe-dsd-2" ||
  396. this.queryObj.type1 === "plan-spe-dsd-3"
  397. ) {
  398. post("/workerOrder/finishPlanSpes", data).then((res) => {
  399. // uni.hideLoading()
  400. if (res.status == 200) {
  401. uni.navigateTo({
  402. url: "../receiptpage/receiptpage",
  403. });
  404. } else {
  405. uni.showToast({
  406. icon: "none",
  407. title: "请求失败!",
  408. });
  409. }
  410. });
  411. } else {
  412. post("/workerOrder/finishSpes", data).then((res) => {
  413. // uni.hideLoading()
  414. if (res.status == 200) {
  415. uni.navigateTo({
  416. url: "../receiptpage/receiptpage",
  417. });
  418. } else {
  419. uni.showToast({
  420. icon: "none",
  421. title: "请求失败!",
  422. });
  423. }
  424. });
  425. }
  426. },
  427. // 取消
  428. cancel() {
  429. this.models.disjunctor = false;
  430. },
  431. // 完成扫描
  432. Scanning_complete(id) {
  433. let data = {
  434. type: this.queryObj.type1,
  435. ids: [],
  436. };
  437. data.ids.push(id);
  438. if (
  439. this.queryObj.type1 == "plan-spe-ddd-2" ||
  440. this.queryObj.type1 == "spe-ddd-2"
  441. ) {
  442. this.wcId = id;
  443. this.models = {
  444. disjunctor: true,
  445. title: "提示",
  446. content: "是否确定标本已扫描完成?",
  447. icon: "warn",
  448. operate: {
  449. ok: "确定",
  450. cancel: "取消",
  451. },
  452. };
  453. } else {
  454. uni.navigateTo({
  455. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  456. this.queryObj.type1
  457. }&id=${encodeURIComponent(JSON.stringify(data.ids))}&deptCode=${
  458. this.queryObj.deptCode
  459. }&dept=${this.queryObj.dept}&speNum=${this.speNum}`,
  460. });
  461. }
  462. },
  463. // 继续执行工单,当扫错科室码的时候,直接跳过,默默执行正确的科室码
  464. goToRight(id) {
  465. // flag 为1时查检查科室,flag为2时查终点科室
  466. let flag;
  467. // 患者转科,患者陪检
  468. if (
  469. this.queryObj.type1 == "trans-dsd-1" ||
  470. this.queryObj.type1 == "ins-dsd-1"
  471. ) {
  472. flag = 2;
  473. }
  474. if (this.queryObj.type1 == "ins-zxz-1") {
  475. flag = 1;
  476. }
  477. let postData = {
  478. workOrderId: id,
  479. flag: flag,
  480. };
  481. uni.showLoading({
  482. title: "加载中",
  483. mask: true,
  484. });
  485. post("/workerOrder/continueWorkOrder", postData).then((res) => {
  486. uni.hideLoading();
  487. console.log(res);
  488. if (res.state == 200) {
  489. let radioItem = [];
  490. res.data.forEach((item) => {
  491. let flag = radioItem.every(
  492. (item1) => item1.qrcode !== item.qrcode + "__" + item.deptName
  493. ); //如果radioItem里的所有项都与之不重复
  494. if (flag) {
  495. radioItem.push({
  496. qrcode: item.qrcode + "__" + item.deptName,
  497. deptName: item.deptName,
  498. });
  499. }
  500. });
  501. this.models1 = {
  502. disjunctor: true,
  503. title: "请选择正确的科室",
  504. radioItem,
  505. icon: "",
  506. operate: {
  507. ok: "确定",
  508. cancel: "取消",
  509. },
  510. };
  511. } else {
  512. uni.showToast({
  513. icon: "none",
  514. title: "请求失败!",
  515. });
  516. }
  517. });
  518. },
  519. // 选中单选框
  520. radioChange1(item) {
  521. console.log(item);
  522. this.selectRadio = item.split("__");
  523. },
  524. // 确定
  525. ok1() {
  526. this.models1.disjunctor = false;
  527. if (!this.selectRadio.length) {
  528. //默认选中第一项,选中则是选中项
  529. this.selectRadio = [
  530. this.models1.radioItem[0].qrcode.split("__")[0],
  531. this.models1.radioItem[0].deptName,
  532. ];
  533. }
  534. uni.navigateTo({
  535. url: `../scanning_code/scanning_code?type=${this.queryObj.type}&type1=${this.queryObj.type1}&id=${this.queryObj.id}&deptCode=${this.selectRadio[0]}&dept=${this.selectRadio[1]}`,
  536. });
  537. },
  538. // 取消
  539. cancel1() {
  540. this.models1.disjunctor = false;
  541. },
  542. // 知道了
  543. showAlert(id) {
  544. uni.navigateTo({
  545. url: "../receiptpage/receiptpage",
  546. });
  547. },
  548. },
  549. onLoad(options) {
  550. console.log(options, "result");
  551. this.queryObj = options;
  552. this.isKs = this.queryObj.isKs;
  553. if (options.infoData && options.infoData != "undefined") {
  554. this.infoDATA = JSON.parse(options.infoData);
  555. } else if (options.model) {
  556. this.infoDATA = JSON.parse(options.model);
  557. }
  558. this.dataId = options.id;
  559. this.RESData = options.resData;
  560. this.res["status"] = options.status;
  561. this.res["msg"] = options.msg;
  562. console.log(options.patient);
  563. this.res["patient"] = options.patient;
  564. this.res["patientCode"] = options.patientCode;
  565. this.res["deptName"] = options.deptName;
  566. this.res["bedNum"] = options.bedNum;
  567. this.infoType = options.type1;
  568. if (options.dept) {
  569. this.DEPT = options.dept;
  570. }
  571. if (options.speNum) {
  572. this.speNum = options.speNum;
  573. } else {
  574. this.speNumLocal = uni.getStorageSync("speNum");
  575. if (this.speNumLocal) {
  576. this.speNum = Number(this.speNumLocal);
  577. } else {
  578. this.speNum = 0;
  579. }
  580. }
  581. this.DEPTCode = options.deptCode;
  582. this.type = options.type;
  583. // #ifdef APP-PLUS
  584. webHandle("no", "app");
  585. // #endif
  586. // #ifdef H5
  587. webHandle("no", "wx");
  588. // #endif
  589. },
  590. };
  591. </script>
  592. <style lang="less">
  593. .Scanning_Result {
  594. padding: 0 74rpx;
  595. .Scanning_top {
  596. .Scanning_top_icon {
  597. width: 140rpx;
  598. height: 140rpx;
  599. margin: 0 auto;
  600. margin-top: 116rpx;
  601. border-radius: 50%;
  602. line-height: 140rpx;
  603. .cubeic-ok {
  604. font-size: 140rpx;
  605. color: #35b34a;
  606. }
  607. .cubeic-close {
  608. font-size: 140rpx;
  609. color: #ff3b53;
  610. }
  611. }
  612. .Scanning_top_text {
  613. .text1 {
  614. margin-top: 40rpx;
  615. font-size: 48rpx;
  616. text-align: center;
  617. }
  618. .success_tips {
  619. color: red;
  620. font-size: 30rpx;
  621. }
  622. }
  623. }
  624. .Scanning_cont {
  625. font-size: 32rpx;
  626. text-align: center;
  627. view {
  628. margin-bottom: 16rpx;
  629. }
  630. .Scanning_cont_center {
  631. text-align: center;
  632. }
  633. .text {
  634. margin-top: 24rpx;
  635. color: #35b34a;
  636. }
  637. .text1 {
  638. margin-top: 24rpx;
  639. color: #ff3b53;
  640. }
  641. }
  642. .foot_btn {
  643. line-height: 88rpx;
  644. height: 100rpx;
  645. margin-top: 40rpx;
  646. display: flex;
  647. justify-content: center;
  648. .btn1,
  649. .btn2,
  650. .btn3 {
  651. height: 88rpx;
  652. width: 45%;
  653. margin: 0 1%;
  654. background-image: linear-gradient(to right, #72c172, #3bb197);
  655. color: #fff;
  656. border-radius: 8rpx;
  657. font-size: 32rpx;
  658. margin-top: 16rpx;
  659. text-align: center;
  660. }
  661. }
  662. }
  663. </style>