scanning_djInfo.vue 21 KB

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