purchase.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. <template>
  2. <layout bgImgName="purchase-img" bgColor="#FDF2E3" bgHeight="188" @goBack="goBack">
  3. <div class="purchase">
  4. <div class="purchase-privilege">
  5. <div>
  6. <img src="@/assets/image/claimCloudPhone/privilege-1.png" alt="" />
  7. 应用预装已完成
  8. </div>
  9. <div>
  10. <img src="@/assets/image/claimCloudPhone/privilege-2.png" alt="" />
  11. 任意下单
  12. </div>
  13. <div>
  14. <img src="@/assets/image/claimCloudPhone/privilege-3.png" alt="" />
  15. 立即使用云机
  16. </div>
  17. </div>
  18. <template v-for="item in packageList">
  19. <setMealItem
  20. :key="item.serialNumber"
  21. :data="item"
  22. v-if="item.mealList && item.mealList.length"
  23. :type="0"
  24. @buy="buy"
  25. />
  26. </template>
  27. <van-popup
  28. v-model="visible"
  29. position="bottom"
  30. :style="{ background: 'transparent' }"
  31. >
  32. <div class="payment-container">
  33. <div class="payment-container-title">新增云手机</div>
  34. <div class="payment-container-info">
  35. <div>
  36. <div class="payment-container-info_value">
  37. <span>¥</span>{{ currentData.actualPrice }}
  38. </div>
  39. <div class="payment-container-info_name">
  40. {{ packageType[currentData.phoneType] }}{{ currentData.day }}卡
  41. </div>
  42. </div>
  43. </div>
  44. <div class="payment-container-num">
  45. 数量:<van-stepper button-size="18" v-model="stepper" />
  46. </div>
  47. <div class="payment-container-method">
  48. <div class="payment-container-method_title">选择支付方式</div>
  49. <div class="payment-container-method_select">
  50. <template v-for="item in paymentList">
  51. <div
  52. :key="item.key"
  53. v-if="
  54. currentData.paySupportTypeList &&
  55. currentData.paySupportTypeList.includes(item.key)
  56. "
  57. :class="{ active: active === item.key }"
  58. @click="active = item.key"
  59. >
  60. <img :src="active === item.key ? item.activeImg : item.img" alt="" />
  61. {{ item.name }}
  62. </div>
  63. </template>
  64. </div>
  65. </div>
  66. <div class="payment-container-amount">
  67. <div>
  68. 需支付金额:<span
  69. ><span>¥</span>{{ currentData.actualPrice * stepper }}
  70. </span>
  71. </div>
  72. <div @click="payment" :class="{ disabled: btnLoading }">
  73. <template v-if="btnLoading"> 正在支付中... </template>
  74. <template v-else> 确认协议并付款</template>
  75. </div>
  76. </div>
  77. <div class="payment-container-agreement">
  78. 购买前阅读<span @click="toAgreement">
  79. 《双子星云手机类型服务协议》
  80. </span>
  81. </div>
  82. </div>
  83. </van-popup>
  84. </div>
  85. </layout>
  86. </template>
  87. <script>
  88. import layout from './components/layout';
  89. import setMealItem from './components/setMealItem.vue';
  90. import common from './mixins/common.js';
  91. const RSA = require('@/plugins/wx_rsa.js');
  92. export default {
  93. auth: false,
  94. name: 'purchase',
  95. head: {
  96. title: '0元购机,尽情享受',
  97. },
  98. mixins: [common],
  99. data() {
  100. return {
  101. visible: false,
  102. currentData: {},
  103. packageType: {
  104. VIP: '星动',
  105. SVIP: '星耀',
  106. STARRYSKY: '星空',
  107. STAR: '唔即',
  108. STARPRO: '唔即Pro',
  109. },
  110. stepper: 1,
  111. active: '',
  112. paymentList: [
  113. {
  114. name: '微信',
  115. img: require('@/assets/image/claimCloudPhone/weChat.png'),
  116. activeImg: require('@/assets/image/claimCloudPhone/weChatActvie.png'),
  117. key: 'wxPay',
  118. },
  119. {
  120. name: '支付宝',
  121. img: require('@/assets/image/claimCloudPhone/alipay.png'),
  122. activeImg: require('@/assets/image/claimCloudPhone/alipayActive.png'),
  123. key: 'aliPay',
  124. },
  125. ],
  126. btnLoading: false,
  127. };
  128. },
  129. mounted() {
  130. if (sessionStorage.getItem('isAgreementBool')) {
  131. this.currentData = JSON.parse(sessionStorage.getItem('currentData'));
  132. this.stepper = sessionStorage.getItem('stepper');
  133. this.active = sessionStorage.getItem('active');
  134. this.visible = true;
  135. sessionStorage.removeItem('isAgreementBool');
  136. sessionStorage.removeItem('currentData');
  137. sessionStorage.removeItem('active');
  138. sessionStorage.removeItem('stepper');
  139. }
  140. this.getActivitySortRuleAndActivityMealList({
  141. personnelMealType: 2,
  142. });
  143. },
  144. components: { layout, setMealItem },
  145. methods: {
  146. buy(data) {
  147. console.log(data);
  148. this.stepper = 1;
  149. this.visible = true;
  150. this.currentData = JSON.parse(JSON.stringify(data));
  151. this.currentData.paySupportTypeList =
  152. this.currentData.paySupportTypeList.split(',');
  153. this.active = this.currentData.paySupportTypeList[0];
  154. },
  155. // 确认支付
  156. payment() {
  157. let params = {
  158. buyType: 1,
  159. quantity: this.stepper,
  160. id: this.currentData.id,
  161. phoneType: this.currentData.phoneType,
  162. activityId: 690009,
  163. returnUrl: location.origin + '/h5/claimCloudPhone/confirmation',
  164. };
  165. params = this.sort_ASCII(params);
  166. console.log(params);
  167. const sign = this.jiaqian(JSON.stringify(params));
  168. this.btnLoading = true;
  169. this.$axios
  170. .$post('pay/v1/order/create', params, { headers: { sign } })
  171. .then((res) => {
  172. console.log(res);
  173. const obj = {
  174. aliPay: 'pay/v1/alipay/h5/spend',
  175. wxPay: 'pay/v1/wxPay/h5/spend',
  176. };
  177. if (res.success) {
  178. localStorage.setItem('myOrderNum', res.data.myOrderNum);
  179. const data = {
  180. myOrderNum: res.data.myOrderNum,
  181. };
  182. const headers = {
  183. sign: this.jiaqian(JSON.stringify(data)),
  184. };
  185. this.$axios
  186. .$get(obj[this.active], { headers, params: data })
  187. .then((res) => {
  188. if (this.active === 'aliPay') {
  189. const div = document.createElement('div');
  190. div.innerHTML = res.data;
  191. document.body.appendChild(div);
  192. document.forms[0].submit();
  193. div.remove();
  194. } else {
  195. window.location.replace(res.data);
  196. }
  197. })
  198. .catch((error) => {
  199. setTimeout(() => {
  200. this.$toast(error.message);
  201. });
  202. })
  203. .finally(() => {
  204. this.btnLoading = false;
  205. });
  206. }
  207. })
  208. .catch((error) => {
  209. this.$toast(error.message);
  210. this.btnLoading = false;
  211. });
  212. // function
  213. },
  214. sort_ASCII(obj) {
  215. var arr = [];
  216. var num = 0;
  217. for (const i in obj) {
  218. arr[num] = i;
  219. num++;
  220. }
  221. var sortArr = arr.sort();
  222. var sortObj = {};
  223. for (var i in sortArr) {
  224. sortObj[sortArr[i]] = obj[sortArr[i]];
  225. }
  226. return sortObj;
  227. },
  228. jiaqian(content) {
  229. console.log(content);
  230. const PrivateKey =
  231. '-----BEGIN PRIVATE KEY-----MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBAKCIK/zTSJCP4XhNsb7Mc5lALog+oAja/spMjg8U6rAmVzRtKv8qhw1HK0CRbW/XV66uM+kY7fhjaYbjbbzu2PMMfs2GVpG15jCWLug9fn2hvPT1wkXfooJX61yHK7+inxAXPi4vPNi263mSQGbhZTeqbU5p7nLeRGbdFyBQXVKpAgMBAAECgYAu/475RxZAlI8rPHvkY1EYteypoMQTs6HSslUI31PSXHc9dxSWfenqHkLwdWM30jDuiDvUa6MIDHrRrfXr0XWcQ0IJ93jT7ABkFCdxcKEOG1WE8f1kZ5JyPDJjeQiI9R4jJCukpGU0DdzO7ORvRb4oTFQ15quM+3+SjnK5TtfUsQJBAOLLk03D2s7t2R0GPLZq+WL/ebowbRSy4VHP/IQi4K1bJrll0HLznov60m9UML1ATlS2ub98fBRFXEAaAwJE2O0CQQC1NDEWhrAPU5o3xjjcxIUbbYskskbhjaiX/1Vz0UzS4XfYek4SL68WBWPGWTrSbgbvXtaXj0gmcChF5jxOHtUtAkA4mPsqxfy99UdgYeUW1P1lgkH7gAhIyRdH1nK6+wU83el9DPaHKVrgrfiEBeuf3wNtSqhyK/u/B0wtRxCHKW1FAkAXfwcGdryJoDuVE9z3s3vXDKNIRN2wDaBY5UD9XZxqk9XoeiN5dDltz5EafSOFecLocxG8YVXntg9i0PHs506ZAkEAge9AKaXisZ4jCNHRn1LR2R82RtHTLb2mN3Cc6sGo+SnAKczwRwVg9RgnmaLG4Z/7kJpq0ALgEBlkOmy+9joxAw==-----END PRIVATE KEY-----';
  232. const signature = new RSA.KJUR.crypto.Signature({
  233. alg: 'SHA256withRSA',
  234. });
  235. signature.init(PrivateKey);
  236. signature.updateString(content);
  237. const signData = signature.sign();
  238. // 将内容转成base64
  239. return RSA.hex2b64(signData);
  240. },
  241. toAgreement() {
  242. sessionStorage.setItem('currentData', JSON.stringify(this.currentData));
  243. sessionStorage.setItem('active', this.active);
  244. sessionStorage.setItem('stepper', this.stepper);
  245. this.$router.push(
  246. '/claimCloudPhone/agreement?agreementCoding=XYPZYHXY2002',
  247. );
  248. },
  249. goBack() {
  250. this.$router.push('/claimCloudPhone/inviteeExits')
  251. }
  252. },
  253. };
  254. </script>
  255. <style lang="less" scoped>
  256. .purchase {
  257. height: 100%;
  258. box-sizing: border-box;
  259. padding-top: 188px;
  260. .purchase-privilege {
  261. padding: 16px;
  262. height: 102px;
  263. background: #ffffff;
  264. box-shadow: 0px 2px 4px 0px #f6e5d3;
  265. border-radius: 8px;
  266. display: grid;
  267. grid-gap: 8px;
  268. grid-template-columns: repeat(3, 1fr);
  269. & > div {
  270. text-align: center;
  271. font-family: PingFangSC, PingFang SC;
  272. font-weight: 400;
  273. font-size: 14px;
  274. color: #1c2023;
  275. line-height: 20px;
  276. font-style: normal;
  277. & > img {
  278. width: 42px;
  279. height: 42px;
  280. display: block;
  281. margin: 0 auto;
  282. }
  283. }
  284. }
  285. .payment-container {
  286. border-radius: 10px 10px 0 0;
  287. padding: 16px;
  288. height: 66vh;
  289. display: flex;
  290. flex-direction: column;
  291. background: #f4f6f8;
  292. overflow-y: auto;
  293. .payment-container-title {
  294. font-family: PingFangSC, PingFang SC;
  295. font-weight: bold;
  296. font-size: 18px;
  297. color: #0a132b;
  298. line-height: 20px;
  299. text-align: center;
  300. font-style: normal;
  301. }
  302. .payment-container-info {
  303. margin-top: 16px;
  304. height: 100px;
  305. background: #ffffff;
  306. border-radius: 16px;
  307. display: flex;
  308. justify-content: center;
  309. align-items: center;
  310. .payment-container-info_value {
  311. font-family: PingFangSC, PingFang SC;
  312. font-weight: bold;
  313. font-size: 18px;
  314. color: #0a132b;
  315. font-style: normal;
  316. span {
  317. font-size: 14px;
  318. }
  319. }
  320. .payment-container-info_name {
  321. font-family: PingFangSC, PingFang SC;
  322. font-weight: 400;
  323. font-size: 14px;
  324. color: #0a132b;
  325. font-style: normal;
  326. }
  327. }
  328. .payment-container-num {
  329. margin-top: 16px;
  330. padding: 16px;
  331. box-sizing: border-box;
  332. height: 50px;
  333. background: #ffffff;
  334. border-radius: 16px;
  335. font-family: PingFangSC, PingFang SC;
  336. font-weight: bold;
  337. font-size: 14px;
  338. color: #0a132b;
  339. line-height: 18px;
  340. text-align: left;
  341. display: flex;
  342. font-style: normal;
  343. .van-stepper {
  344. margin-left: 10px;
  345. }
  346. }
  347. .payment-container-method {
  348. .payment-container-method_title {
  349. font-family: PingFangSC, PingFang SC;
  350. font-weight: bold;
  351. font-size: 14px;
  352. color: #0a132b;
  353. line-height: 18px;
  354. text-align: left;
  355. font-style: normal;
  356. margin: 16px 0;
  357. }
  358. .payment-container-method_select {
  359. display: grid;
  360. grid-gap: 8px;
  361. grid-template-columns: repeat(2, 1fr);
  362. & > div {
  363. height: 54px;
  364. line-height: 54px;
  365. background: #edeef0;
  366. border-radius: 6px;
  367. display: flex;
  368. justify-content: center;
  369. align-items: center;
  370. padding: 0 18px;
  371. font-family: PingFangSC, PingFang SC;
  372. font-weight: bold;
  373. font-size: 14px;
  374. color: #666666;
  375. border: 1px solid transparent;
  376. line-height: 18px;
  377. font-style: normal;
  378. &.active {
  379. background: #ffffff;
  380. border-radius: 6px;
  381. border: 1px solid #3b7fff;
  382. position: relative;
  383. &::after {
  384. position: absolute;
  385. top: 0;
  386. right: 0;
  387. width: 26px;
  388. height: 15px;
  389. background: #3a86fe;
  390. border-radius: 0px 6px 0px 6px;
  391. display: block;
  392. content: '√';
  393. font-size: 10px;
  394. text-align: center;
  395. line-height: 15px;
  396. color: #ffffff;
  397. }
  398. }
  399. & > img {
  400. width: 24px;
  401. height: 24px;
  402. margin-right: 4px;
  403. }
  404. }
  405. }
  406. }
  407. .payment-container-amount {
  408. background: #ffffff;
  409. box-shadow: 0px 0px 13px 0px rgba(206, 206, 206, 0.5);
  410. border-radius: 16px;
  411. display: flex;
  412. justify-content: space-between;
  413. margin-top: 24px;
  414. & > div:first-of-type {
  415. font-family: PingFangSC, PingFang SC;
  416. font-weight: bold;
  417. font-size: 14px;
  418. color: #0a132b;
  419. line-height: 20px;
  420. text-align: left;
  421. font-style: normal;
  422. padding: 16px 0 16px 16px;
  423. & > span {
  424. font-size: 18px;
  425. color: #f04646;
  426. line-height: 20px;
  427. font-style: normal;
  428. span {
  429. font-size: 12px;
  430. }
  431. }
  432. }
  433. & > div:last-of-type {
  434. font-family: PingFangSC, PingFang SC;
  435. font-weight: 600;
  436. font-size: 16px;
  437. color: #ffffff;
  438. line-height: 55px;
  439. text-align: left;
  440. font-style: normal;
  441. width: 136px;
  442. height: 55px;
  443. text-align: center;
  444. background: linear-gradient(90deg, #38aefc 0%, #3b7fff 100%);
  445. border-radius: 16px;
  446. }
  447. }
  448. .payment-container-agreement {
  449. margin-top: 9px;
  450. font-family: PingFangSC, PingFang SC;
  451. font-weight: 500;
  452. font-size: 12px;
  453. color: #bbbbbb;
  454. line-height: 16px;
  455. text-align: center;
  456. font-style: normal;
  457. span {
  458. color: #3a86fe;
  459. }
  460. }
  461. }
  462. }
  463. .disabled {
  464. opacity: 0.3;
  465. }
  466. // .purchase {
  467. // height: 100%;
  468. // box-sizing: border-box;
  469. // background: #fdf2e3;
  470. // .purchase-container {
  471. // padding: 12.2666666667vw 0 16px;
  472. // height: 100%;
  473. // box-sizing: border-box;
  474. // background: url('~/assets/image/claimCloudPhone/purchase-img.png') no-repeat;
  475. // background-size: 100% 210px;
  476. // background-position: 0px 12.2666666667vw;
  477. // & > div {
  478. // padding: 224px 16px 0;
  479. // .purchase-privilege {
  480. // padding: 16px;
  481. // height: 102px;
  482. // background: #ffffff;
  483. // box-shadow: 0px 2px 4px 0px #f6e5d3;
  484. // border-radius: 8px;
  485. // display: grid;
  486. // grid-gap: 8px;
  487. // grid-template-columns: repeat(3, 1fr);
  488. // & > div {
  489. // text-align: center;
  490. // font-family: PingFangSC, PingFang SC;
  491. // font-weight: 400;
  492. // font-size: 14px;
  493. // color: #1c2023;
  494. // line-height: 20px;
  495. // font-style: normal;
  496. // & > img {
  497. // width: 42px;
  498. // height: 42px;
  499. // display: block;
  500. // margin: 0 auto;
  501. // }
  502. // }
  503. // }
  504. // }
  505. // }
  506. // .payment-container {
  507. // border-radius: 10px 10px 0 0;
  508. // padding: 16px;
  509. // height: 66vh;
  510. // display: flex;
  511. // flex-direction: column;
  512. // background: #f4f6f8;
  513. // overflow-y: auto;
  514. // .payment-container-title {
  515. // font-family: PingFangSC, PingFang SC;
  516. // font-weight: bold;
  517. // font-size: 18px;
  518. // color: #0a132b;
  519. // line-height: 20px;
  520. // text-align: center;
  521. // font-style: normal;
  522. // }
  523. // .payment-container-info {
  524. // margin-top: 16px;
  525. // height: 100px;
  526. // background: #ffffff;
  527. // border-radius: 16px;
  528. // display: flex;
  529. // justify-content: center;
  530. // align-items: center;
  531. // .payment-container-info_value {
  532. // font-family: PingFangSC, PingFang SC;
  533. // font-weight: bold;
  534. // font-size: 18px;
  535. // color: #0a132b;
  536. // font-style: normal;
  537. // span {
  538. // font-size: 14px;
  539. // }
  540. // }
  541. // .payment-container-info_name {
  542. // font-family: PingFangSC, PingFang SC;
  543. // font-weight: 400;
  544. // font-size: 14px;
  545. // color: #0a132b;
  546. // font-style: normal;
  547. // }
  548. // }
  549. // .payment-container-num {
  550. // margin-top: 16px;
  551. // padding: 16px;
  552. // box-sizing: border-box;
  553. // height: 50px;
  554. // background: #ffffff;
  555. // border-radius: 16px;
  556. // font-family: PingFangSC, PingFang SC;
  557. // font-weight: bold;
  558. // font-size: 14px;
  559. // color: #0a132b;
  560. // line-height: 18px;
  561. // text-align: left;
  562. // display: flex;
  563. // font-style: normal;
  564. // .van-stepper {
  565. // margin-left: 10px;
  566. // }
  567. // }
  568. // .payment-container-method {
  569. // .payment-container-method_title {
  570. // font-family: PingFangSC, PingFang SC;
  571. // font-weight: bold;
  572. // font-size: 14px;
  573. // color: #0a132b;
  574. // line-height: 18px;
  575. // text-align: left;
  576. // font-style: normal;
  577. // margin: 16px 0;
  578. // }
  579. // .payment-container-method_select {
  580. // display: grid;
  581. // grid-gap: 8px;
  582. // grid-template-columns: repeat(2, 1fr);
  583. // & > div {
  584. // height: 54px;
  585. // line-height: 54px;
  586. // background: #edeef0;
  587. // border-radius: 6px;
  588. // display: flex;
  589. // justify-content: center;
  590. // align-items: center;
  591. // padding: 0 18px;
  592. // font-family: PingFangSC, PingFang SC;
  593. // font-weight: bold;
  594. // font-size: 14px;
  595. // color: #666666;
  596. // border: 1px solid transparent;
  597. // line-height: 18px;
  598. // font-style: normal;
  599. // &.active {
  600. // background: #ffffff;
  601. // border-radius: 6px;
  602. // border: 1px solid #3b7fff;
  603. // position: relative;
  604. // &::after {
  605. // position: absolute;
  606. // top: 0;
  607. // right: 0;
  608. // width: 26px;
  609. // height: 15px;
  610. // background: #3a86fe;
  611. // border-radius: 0px 6px 0px 6px;
  612. // display: block;
  613. // content: '√';
  614. // font-size: 10px;
  615. // text-align: center;
  616. // line-height: 15px;
  617. // color: #ffffff;
  618. // }
  619. // }
  620. // & > img {
  621. // width: 24px;
  622. // height: 24px;
  623. // margin-right: 4px;
  624. // }
  625. // }
  626. // }
  627. // }
  628. // .payment-container-amount {
  629. // background: #ffffff;
  630. // box-shadow: 0px 0px 13px 0px rgba(206, 206, 206, 0.5);
  631. // border-radius: 16px;
  632. // display: flex;
  633. // justify-content: space-between;
  634. // margin-top: 24px;
  635. // & > div:first-of-type {
  636. // font-family: PingFangSC, PingFang SC;
  637. // font-weight: bold;
  638. // font-size: 14px;
  639. // color: #0a132b;
  640. // line-height: 20px;
  641. // text-align: left;
  642. // font-style: normal;
  643. // padding: 16px 0 16px 16px;
  644. // & > span {
  645. // font-size: 18px;
  646. // color: #f04646;
  647. // line-height: 20px;
  648. // font-style: normal;
  649. // span {
  650. // font-size: 12px;
  651. // }
  652. // }
  653. // }
  654. // & > div:last-of-type {
  655. // font-family: PingFangSC, PingFang SC;
  656. // font-weight: 600;
  657. // font-size: 16px;
  658. // color: #ffffff;
  659. // line-height: 55px;
  660. // text-align: left;
  661. // font-style: normal;
  662. // width: 136px;
  663. // height: 55px;
  664. // text-align: center;
  665. // background: linear-gradient(90deg, #38aefc 0%, #3b7fff 100%);
  666. // border-radius: 16px;
  667. // }
  668. // }
  669. // .payment-container-agreement {
  670. // margin-top: 9px;
  671. // font-family: PingFangSC, PingFang SC;
  672. // font-weight: 500;
  673. // font-size: 12px;
  674. // color: #bbbbbb;
  675. // line-height: 16px;
  676. // text-align: center;
  677. // font-style: normal;
  678. // span{
  679. // color: #3A86FE;
  680. // }
  681. // }
  682. // }
  683. // }
  684. // ::v-deep .van-nav-bar__arrow {
  685. // color: #000000;
  686. // font-size: 24px;
  687. // }
  688. // ::v-deep .van-nav-bar__title {
  689. // font-weight: bold !important;
  690. // font-size: 17px !important;
  691. // color: #0a132b !important;
  692. // line-height: 24px !important;
  693. // }
  694. </style>