Txmoney.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. <template>
  2. <view class="content" v-if="XCXIsSelect != '否'">
  3. <view class="part_one">
  4. <view class="one_title">可提现金额</view>
  5. <view class="one_price">¥{{ mayMoney }}</view>
  6. </view>
  7. <view class="part_two">
  8. <view class="two_title">
  9. 提现金额
  10. <text>提现最低额度{{ minMoney }}元</text>
  11. </view>
  12. <view class="two_box">
  13. ¥
  14. <u-input v-model="money" type="number" :clearable="false" :border="border" placeholder="请输入提现金额" />
  15. </view>
  16. <view class="beizhu">*注单笔限制提现最低额度{{ minMoney }}元,最大提现额度为{{ manMoney }}元,单笔提现手续费{{ shouxufei * 100 }}%</view>
  17. </view>
  18. <!-- <view class="part_three">
  19. <view class="three_name">兑换方式</view>
  20. <view class="btn">
  21. <view class="btn_left" :class="current == 2 ? 'btna' : ''" @click="bindToindex(2)">
  22. <image src="../../../../static/my/weixin.png"></image>
  23. <text>微信</text>
  24. </view>
  25. <view class="btn_right" :class="current == 1 ? 'btna' : ''" @click="bindToindex(1)">
  26. <image src="../../../../static/my/zhifubao.png"></image>
  27. <text>支付宝</text>
  28. </view>
  29. </view>
  30. </view> -->
  31. <view style="margin-top: 59upx" class="padding-lr margin-lr-sm">
  32. <view class="yinghang">提现银行卡信息</view>
  33. <view style="color: #333333; text-align: left">
  34. 银行卡号:
  35. <text class="yinghang2">{{ yingNo }}</text>
  36. </view>
  37. <view style="color: #333333; text-align: left">
  38. 开户行:
  39. <text class="yinghang2">{{ yingName }}</text>
  40. </view>
  41. <view style="color: #333333; text-align: left">
  42. 开户人姓名:
  43. <text class="yinghang2">{{ yingPeople }}</text>
  44. </view>
  45. <view style="color: #333333; text-align: left">
  46. 商户号:
  47. <text class="yinghang2">{{ mchId }}</text>
  48. </view>
  49. <!-- <view class="flex justify-between margin-bottom-xl" v-for="(item,index) in openLists" :key="index">
  50. <view class="flex align-center">
  51. <image :src="item.image" style="width:23px;height:20px"></image>
  52. <text class="text-lg margin-left-sm" style="color:#333333;font-weight:700;">{{item.text}}</text>
  53. </view>
  54. <view>
  55. <radio-group name="openWay" style="margin-left: 20upx;" @tap='selectWay(item)'>
  56. <label class="tui-radio">
  57. <radio color="#FF7F00" :checked="openWay === item.id ? true : false" />
  58. </label>
  59. </radio-group>
  60. </view>
  61. </view> -->
  62. </view>
  63. <view class="part_four">
  64. <view class="submit" @click="getOut()">立即提现</view>
  65. <view class="four_box">
  66. <view class="box_left" @click="goZhifuBao">提现账户</view>
  67. <view class="box_right" @click="list">提现记录</view>
  68. <view class="box_right" @click="isShow">微信收款码</view>
  69. </view>
  70. </view>
  71. <!-- 微信收款码弹框 -->
  72. <u-popup v-model="show" mode="center">
  73. <view class="padding">
  74. <view class="text-center text-lg text-bold flex justify-between">
  75. <view></view>
  76. <view>添加微信收款码</view>
  77. <view @click="show = false">X</view>
  78. </view>
  79. <!-- <view class="text-center padding-top-sm padding-bottom-lg" style="color: #999999;">请提交微信号和微信二维码
  80. </view> -->
  81. <view style="width: 80%; margin: 0 auto">
  82. <view class="margin-top" @click.stop="weixin" style="border: 4rpx solid #010101; border-radius: 16rpx; overflow: hidden">
  83. <image v-if="!wximg" src="../../../../static/image/erweima.png"></image>
  84. <image v-else :src="wximg" mode=""></image>
  85. </view>
  86. </view>
  87. <!-- <view class="text-center margin-top-sm " @click="submit"
  88. style="border-radius: 10rpx;background-color: #7E59FF;color: #fff;height: 80rpx;line-height: 80rpx;">保存</view> -->
  89. </view>
  90. </u-popup>
  91. <!-- 用于图片压缩的canvas画布 -->
  92. <canvas
  93. :style="{
  94. width: cw + 'px',
  95. height: cw + 'px',
  96. position: 'absolute',
  97. zIndex: -1,
  98. left: '-10000rpx',
  99. top: '-10000rpx'
  100. }"
  101. canvas-id="zipCanvas"
  102. ></canvas>
  103. <!--画布结束-->
  104. </view>
  105. </template>
  106. <script>
  107. import { showToast } from '../../../../common/queue'
  108. import configdata from '../../../../common/config.js'
  109. import getLessLimitSizeImage from '@/utils/imageCompress.js'
  110. export default {
  111. data() {
  112. return {
  113. show: false,
  114. current: '1',
  115. // value: 10,
  116. money: '',
  117. zhifubaoName: '',
  118. zhifubao: '',
  119. shouxufei: 0.01,
  120. minMoney: '10',
  121. manMoney: '200',
  122. mayMoney: '',
  123. XCXIsSelect: '否',
  124. wximg: '',
  125. values: '',
  126. // 银行卡号
  127. yingNo: '',
  128. // 开户行
  129. yingName: '',
  130. // 开户人姓名
  131. yingPeople: '',
  132. // 商户号
  133. mchId: '',
  134. //画板边长默认是屏幕宽度,正方形画布
  135. cw: uni.getSystemInfoSync().windowWidth
  136. }
  137. },
  138. onLoad() {
  139. this.XCXIsSelect = this.$queue.getData('XCXIsSelect')
  140. if (this.XCXIsSelect == '否') {
  141. uni.setNavigationBarTitle({
  142. title: '隐私政策'
  143. })
  144. } else {
  145. uni.setNavigationBarTitle({
  146. title: '余额提现'
  147. })
  148. }
  149. },
  150. onShow() {
  151. this.getMoney()
  152. //最低可提现金额度
  153. this.$Request.getT('/app/common/type/112').then((res) => {
  154. if (res.code === 0) {
  155. this.minMoney = res.data.value
  156. }
  157. })
  158. //最高可提现金额度
  159. this.$Request.getT('/app/common/type/153').then((res) => {
  160. if (res.code === 0) {
  161. this.manMoney = res.data.value
  162. }
  163. })
  164. //手续费
  165. this.$Request.getT('/app/common/type/114').then((res) => {
  166. if (res.code === 0) {
  167. this.shouxufei = res.data.value
  168. }
  169. })
  170. //判断微信提现方式
  171. this.$Request.getT('/app/common/type/290').then((res) => {
  172. if (res.code == 0) {
  173. if (res.data && res.data.value) {
  174. this.values = res.data.value
  175. }
  176. }
  177. })
  178. // 银行卡信息
  179. let data = {
  180. userId: uni.getStorageSync('userId')
  181. }
  182. this.$Request.getT('/app/rider/bank/getUserId', data).then((res) => {
  183. if (res.code == 0) {
  184. // console.log(res)
  185. this.yingNo = res.data.cardNo
  186. this.yingName = res.data.openBank
  187. this.yingPeople = res.data.realName
  188. this.mchId = res.data.mchId
  189. }
  190. })
  191. },
  192. methods: {
  193. //用户收款码弹框
  194. isShow() {
  195. this.getMoney()
  196. this.show = true
  197. },
  198. //微信 支付宝提现选择
  199. bindToindex(e) {
  200. this.current = e
  201. console.log(e, this.current)
  202. },
  203. list() {
  204. uni.navigateTo({
  205. url: '/pages/riderMy/myAccount/AcontMoney/cashList'
  206. })
  207. },
  208. goZhifuBao() {
  209. uni.navigateTo({
  210. url: '/pages/riderMy/myAccount/AcontMoney/zhifubao'
  211. })
  212. },
  213. getMoney() {
  214. let that = this
  215. let token = this.$queue.getData('token')
  216. let userId = this.$queue.getData('userId')
  217. if (token) {
  218. //this.$queue.showLoading("加载中...");
  219. //可以提现金额查询预估收入查询
  220. that.$Request.getT('/app/userinfo/findUserInfoById').then((res) => {
  221. console.log(res, '111')
  222. if (res.code === 0 && res.data) {
  223. that.mayMoney = res.data.balance
  224. this.zhifubao = res.data.zhiFuBao
  225. this.zhifubaoName = res.data.zhiFuBaoName
  226. that.wximg = res.data.cashQrCode
  227. } else if (res.code === -102) {
  228. that.$queue.showToast(res.msg)
  229. that.$queue.logout()
  230. // uni.navigateTo({
  231. // url: '/pages/public/login'
  232. // });
  233. } else {
  234. that.mayMoney = '0'
  235. //this.$queue.showToast(res.msg);
  236. }
  237. })
  238. }
  239. },
  240. getOut() {
  241. let that = this
  242. let token = that.$queue.getData('token')
  243. let userId = that.$queue.getData('userId')
  244. if (token) {
  245. if (that.current == 1) {
  246. // if (!this.zhifubao || !this.zhifubaoName) {
  247. // uni.navigateTo({
  248. // url: '/pages/riderMy/myAccount/AcontMoney/zhifubao'
  249. // })
  250. // return
  251. // }
  252. if (!/^\d+$/.test(that.money)) {
  253. // uni.showToast({
  254. // icon: 'none',
  255. // title: '请输入正确金额,不能包含中文,英文,特殊字符和小数'
  256. // });
  257. that.$queue.showToast('请输入正确金额,不能包含中文,英文,特殊字符和小数')
  258. return
  259. }
  260. if (Number(that.money) < Number(that.minMoney)) {
  261. uni.showToast({
  262. icon: 'none',
  263. title: '提现金额不能小于' + that.minMoney + '元'
  264. })
  265. return
  266. }
  267. if (Number(that.money) > Number(that.manMoney)) {
  268. uni.showToast({
  269. icon: 'none',
  270. title: '提现金额不能大于' + that.manMoney + '元'
  271. })
  272. return
  273. }
  274. uni.showModal({
  275. title: '提现申请提示',
  276. content:
  277. '请仔细确认收款人信息\r\n姓名:' +
  278. that.yingPeople +
  279. `\r\n提现金额:` +
  280. that.money +
  281. '元' +
  282. '\r\n提现手续费:' +
  283. parseFloat(that.money * that.shouxufei).toFixed(2) +
  284. '元' +
  285. '\r\n收款账号:' +
  286. that.yingNo +
  287. '',
  288. success: (e) => {
  289. if (e.confirm) {
  290. let data = {
  291. classify: that.current,
  292. money: that.money
  293. }
  294. that.$queue.showLoading('提现中...')
  295. that.$Request.getT('/app/cash/cashMoney', data).then((res) => {
  296. if (res.code === 0) {
  297. that.$queue.showToast('提现申请成功,预计三个工作日到账')
  298. that.getMoney()
  299. that.mayMoney = ''
  300. } else {
  301. uni.showModal({
  302. title: '温馨提示',
  303. content: res.msg,
  304. showCancel: false,
  305. cancelText: '取消',
  306. confirmText: '确认'
  307. })
  308. }
  309. uni.hideLoading()
  310. })
  311. }
  312. }
  313. })
  314. } else if (that.current == 2) {
  315. if (!/^\d+$/.test(that.money)) {
  316. // uni.showToast({
  317. // icon: 'none',
  318. // title: '请输入正确金额,不能包含中文,英文,特殊字符和小数'
  319. // });
  320. that.$queue.showToast('请输入正确金额,不能包含中文,英文,特殊字符和小数')
  321. return
  322. }
  323. if (Number(that.money) < Number(that.minMoney)) {
  324. uni.showToast({
  325. icon: 'none',
  326. title: '提现金额不能小于' + that.minMoney + '元'
  327. })
  328. return
  329. }
  330. if (Number(that.money) > Number(that.manMoney)) {
  331. uni.showToast({
  332. icon: 'none',
  333. title: '提现金额不能大于' + that.manMoney + '元'
  334. })
  335. return
  336. }
  337. if (that.values == 2) {
  338. that.$Request.getT('/app/userinfo/findUserInfoById').then((res) => {
  339. if (res.code === 0) {
  340. let wxImg = res.data.cashQrCode
  341. if (!wxImg) {
  342. uni.showModal({
  343. title: '提现提示',
  344. content: '请上传微信收款码',
  345. showCancel: true,
  346. cancelText: '取消',
  347. confirmText: '上传',
  348. success: (res) => {
  349. if (res.confirm) {
  350. that.show = true
  351. }
  352. },
  353. fail: () => {},
  354. complete: () => {}
  355. })
  356. return
  357. }
  358. if (that.money * 1 >= that.minMoney * 1) {
  359. uni.showModal({
  360. title: '提现申请提示',
  361. content:
  362. '请仔细确认收款人信息\r\n姓名:' +
  363. that.yingPeople +
  364. '\r\n提现金额:' +
  365. that.money +
  366. '元' +
  367. '\r\n提现手续费:' +
  368. parseFloat(that.money * that.shouxufei).toFixed(2) +
  369. '元' +
  370. '\r\n收款账号:' +
  371. that.yingNo +
  372. '',
  373. success: (e) => {
  374. if (e.confirm) {
  375. that.$queue.showLoading('提现中...')
  376. let data = {
  377. money: that.money,
  378. classify: 2
  379. }
  380. that.$Request.getT('/app/cash/cashMoney', data).then((res) => {
  381. if (res.code === 0) {
  382. setTimeout(function () {
  383. that.$queue.showToast('提现申请成功,预计三个工作日到账')
  384. }, 1000)
  385. that.getMoney()
  386. that.money = ''
  387. } else {
  388. uni.showModal({
  389. title: '温馨提示',
  390. content: res.msg,
  391. showCancel: false,
  392. cancelText: '取消',
  393. confirmText: '确认'
  394. })
  395. }
  396. uni.hideLoading()
  397. })
  398. }
  399. }
  400. })
  401. } else {
  402. setTimeout(function () {
  403. that.$queue.showToast('提现金额必须大于或等于' + that.minMoney + '元才可提现')
  404. }, 1000)
  405. }
  406. } else {
  407. that.$queue.showToast('网络状态不好,请刷新后重试!')
  408. }
  409. })
  410. } else {
  411. if (!/^\d+$/.test(that.money)) {
  412. // uni.showToast({
  413. // icon: 'none',
  414. // title: '请输入正确金额,不能包含中文,英文,特殊字符和小数'
  415. // });
  416. that.$queue.showToast('请输入正确金额,不能包含中文,英文,特殊字符和小数')
  417. return
  418. }
  419. if (parseFloat(that.money).toFixed(1) >= that.minMoney) {
  420. uni.showModal({
  421. title: '提现申请提示',
  422. content:
  423. '请仔细确认收款人信息\r\n姓名:' +
  424. that.yingPeople +
  425. '\r\n提现金额:' +
  426. that.money +
  427. '元' +
  428. '\r\n提现手续费:' +
  429. parseFloat(that.money * that.shouxufei).toFixed(2) +
  430. '元' +
  431. '\r\n收款账号:' +
  432. that.yingNo +
  433. '',
  434. success: (e) => {
  435. if (e.confirm) {
  436. that.$queue.showLoading('提现中...')
  437. let data = {
  438. money: that.money,
  439. classify: 2,
  440. type: 3
  441. }
  442. that.$Request.getT('/shop/shopmoney/shopCashMoney', data).then((res) => {
  443. if (res.code === 0) {
  444. setTimeout(function () {
  445. that.$queue.showToast('提现申请成功,预计三个工作日到账')
  446. }, 1000)
  447. that.getMoney()
  448. that.money = ''
  449. } else {
  450. uni.showModal({
  451. title: '温馨提示',
  452. content: res.msg,
  453. showCancel: false,
  454. cancelText: '取消',
  455. confirmText: '确认'
  456. })
  457. that.getMoney()
  458. }
  459. uni.hideLoading()
  460. })
  461. }
  462. }
  463. })
  464. } else {
  465. that.$queue.showToast('提现金额必须大于或等于' + that.minMoney + '元才可提现')
  466. }
  467. }
  468. }
  469. } else {
  470. uni.showToast({
  471. title: '提现失败'
  472. })
  473. }
  474. },
  475. config: function (name) {
  476. var info = null
  477. if (name) {
  478. var name2 = name.split('.') //字符分割
  479. if (name2.length > 1) {
  480. info = configdata[name2[0]][name2[1]] || null
  481. } else {
  482. info = configdata[name] || null
  483. }
  484. if (info == null) {
  485. // let web_config = cache.get("web_config");
  486. // if (web_config) {
  487. // if (name2.length > 1) {
  488. // info = web_config[name2[0]][name2[1]] || null;
  489. // } else {
  490. // info = web_config[name] || null;
  491. // }
  492. // }
  493. }
  494. }
  495. return info
  496. },
  497. weixin() {
  498. let that = this
  499. uni.chooseImage({
  500. count: 1,
  501. sourceType: ['album', 'camera'],
  502. success: (res) => {
  503. for (let i = 0; i < 1; i++) {
  504. //这里的id和页面中写的html代码的canvas的id要一致
  505. let canvasId = 'zipCanvas'
  506. //原图的路径
  507. let imagePath = res.tempFiles[i].path
  508. //大小限制
  509. let limitSize = 1024 * 2
  510. //初始绘画区域是画布自身的宽度也就是屏幕宽度
  511. let drawWidth = uni.getSystemInfoSync().windowWidth
  512. let that = this
  513. getLessLimitSizeImage(canvasId, imagePath, limitSize, drawWidth, that, (resPath) => {
  514. uni.showLoading({
  515. title: '上传中'
  516. })
  517. uni.uploadFile({
  518. url: that.config('APIHOST1') + '/alioss/upload',
  519. filePath: resPath,
  520. name: 'file',
  521. success: (uploadFileRes) => {
  522. let img = JSON.parse(uploadFileRes.data).data
  523. let userId = that.$queue.getData('userId')
  524. let data = {
  525. cashQrCode: img
  526. }
  527. that.$Request.postJson('/app/user/updateUser', data).then((res) => {
  528. if (res.code == 0) {
  529. that.getMoney()
  530. setTimeout(function () {
  531. that.$queue.showToast('上传成功')
  532. }, 1000)
  533. }
  534. })
  535. uni.hideLoading()
  536. },
  537. fail: () => {
  538. uni.showToast({
  539. title: '上传失败',
  540. icon: 'error'
  541. })
  542. }
  543. })
  544. })
  545. }
  546. }
  547. })
  548. }
  549. }
  550. }
  551. </script>
  552. <style>
  553. body {
  554. background: #f5f5f5;
  555. }
  556. .content {
  557. width: 100%;
  558. }
  559. .part_one {
  560. width: 90%;
  561. margin: 0 auto;
  562. background: #ffffff;
  563. margin-top: 20rpx;
  564. border-radius: 20rpx;
  565. height: 170rpx;
  566. }
  567. .one_title {
  568. width: 90%;
  569. margin: 0 auto;
  570. font-size: 32rpx;
  571. letter-spacing: 1rpx;
  572. padding-top: 30rpx;
  573. }
  574. .one_price {
  575. width: 90%;
  576. margin: 0 auto;
  577. margin-top: 20rpx;
  578. font-size: 47rpx;
  579. font-weight: bold;
  580. }
  581. .part_two {
  582. width: 90%;
  583. margin: 0 auto;
  584. background: #ffffff;
  585. margin-top: 20rpx;
  586. border-radius: 20rpx;
  587. }
  588. .two_title {
  589. width: 90%;
  590. margin: 0 auto;
  591. line-height: 95rpx;
  592. font-size: 34rpx;
  593. }
  594. .two_title text {
  595. font-size: 27rpx;
  596. margin-left: 34rpx;
  597. }
  598. .two_box {
  599. width: 90%;
  600. margin: 0 auto;
  601. display: flex;
  602. align-items: center;
  603. font-size: 32rpx;
  604. font-weight: bold;
  605. }
  606. .u-input__input {
  607. font-size: 50rpx !important;
  608. color: #747474 !important;
  609. border-bottom: 1rpx solid #cccccc;
  610. }
  611. .tit {
  612. width: 90%;
  613. margin: 0 auto;
  614. font-size: 31rpx;
  615. margin-top: 10rpx;
  616. color: black;
  617. }
  618. .beizhu {
  619. width: 90%;
  620. margin: 0 auto;
  621. line-height: 55rpx;
  622. color: red;
  623. letter-spacing: 1rpx;
  624. }
  625. .part_three {
  626. width: 90%;
  627. margin: 0 auto;
  628. background: #ffffff;
  629. margin-top: 20rpx;
  630. border-radius: 20rpx;
  631. }
  632. .three_name {
  633. width: 90%;
  634. margin: 0 auto;
  635. font-size: 33rpx;
  636. color: black;
  637. line-height: 80rpx;
  638. }
  639. .btn {
  640. width: 96%;
  641. margin: 0 auto;
  642. display: flex;
  643. padding-bottom: 30rpx;
  644. }
  645. .btn_left {
  646. flex: 1;
  647. height: 90rpx;
  648. border: 1rpx solid #ccc;
  649. border-radius: 20rpx;
  650. margin-right: 10rpx;
  651. display: flex;
  652. justify-content: center;
  653. align-items: center;
  654. }
  655. .btn_right {
  656. flex: 1;
  657. /* width: 240rpx; */
  658. height: 90rpx;
  659. border: 1rpx solid #ccc;
  660. border-radius: 20rpx;
  661. margin-left: 10rpx;
  662. display: flex;
  663. justify-content: center;
  664. align-items: center;
  665. }
  666. .btna {
  667. border: 1rpx solid #e34b21 !important;
  668. }
  669. .btn_left image {
  670. width: 50rpx;
  671. height: 50rpx;
  672. margin-right: 12rpx;
  673. }
  674. .btn_right image {
  675. width: 50rpx;
  676. height: 50rpx;
  677. margin-right: 12rpx;
  678. }
  679. .part_four {
  680. width: 90%;
  681. margin: 0 auto;
  682. /* background: #FFFFFF; */
  683. margin-top: 20rpx;
  684. border-radius: 20rpx;
  685. }
  686. .submit {
  687. width: 100%;
  688. height: 90rpx;
  689. background: #f8501f;
  690. color: #f8ebd2;
  691. text-align: center;
  692. line-height: 90rpx;
  693. font-size: 37rpx;
  694. border-radius: 12rpx;
  695. }
  696. .four_box {
  697. width: 90%;
  698. margin: 0 auto;
  699. height: 125rpx;
  700. display: flex;
  701. color: #838383;
  702. }
  703. .box_left {
  704. flex: 1;
  705. display: flex;
  706. justify-content: center;
  707. align-items: center;
  708. }
  709. .box_right {
  710. flex: 1;
  711. display: flex;
  712. justify-content: center;
  713. align-items: center;
  714. }
  715. /* // 提现银行卡信息 */
  716. .yinghang {
  717. height: 80rpx;
  718. line-height: 80rpx;
  719. font-size: 36rpx;
  720. font-weight: 700;
  721. text-align: left;
  722. }
  723. .yinghang2 {
  724. height: 80rpx;
  725. line-height: 80rpx;
  726. font-size: 36rpx;
  727. font-weight: 700;
  728. }
  729. </style>