user.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. <template>
  2. <view class="box">
  3. <view class="top" :style="{background:'#'+themeColor}">
  4. <view class="customerMes">
  5. <image @click="updateUserInfo" v-if="headImg" :src="headImg" mode="" style="width: 88rpx;height: 88rpx;border-radius: 44rpx;"></image>
  6. <image @click="updateUserInfo" v-else src="../../static/img/icon_me.png" mode="" style="width: 88rpx;height: 88rpx;border-radius: 44rpx;"></image>
  7. <view class="mes">
  8. <view class="nick">
  9. <view class="nickName" v-if="nickName">{{nickName}}</view>
  10. <view class="grade" v-if="numList.levelName">{{numList.levelName}}</view>
  11. </view>
  12. <view class="phone">{{phone}}</view>
  13. </view>
  14. </view>
  15. <view class="headerBox">
  16. <view class="quan" @click="gonavigateTo('../index/discountCard')">
  17. <view class="numStr">{{numList.count?numList.count:0}}</view>
  18. <view class="nameStr">优惠券</view>
  19. </view>
  20. <view class="quan" @click="gonavigateTo('../integral/integral?totalIntegral='+numList.totalIntegral)">
  21. <view class="numStr">{{numList.totalIntegral?numList.totalIntegral:0}}</view>
  22. <view class="nameStr">积分</view>
  23. </view>
  24. <view class="quan" @click="gonavigateTo('../index/vipCard')">
  25. <view class="numStr">{{numList.cardNum?numList.cardNum:0}}</view>
  26. <view class="nameStr">会员卡</view>
  27. </view>
  28. </view>
  29. </view>
  30. <!-- 我的订单 -->
  31. <view class="orderBox">
  32. <view class="orderTitle">我的订单</view>
  33. <view class="orderLIneBox">
  34. <view class="orderLine" @click="goorder(1)">
  35. <view class="orderImgBox">
  36. <view class="orderNum" v-show="numList.waitPurchaseSize>0">{{numList.waitPurchaseSize>99?'99+':numList.waitPurchaseSize}}</view>
  37. <image src="../../static/img/icon_daifukuan.png" mode="" class="orderLineImg"></image>
  38. </view>
  39. <view class="orderLineTxt">待付款</view>
  40. </view>
  41. <view class="orderLine" @click="goorder(2)">
  42. <view class="orderImgBox">
  43. <view class="orderNum" v-show="numList.waitServiceSize>0">{{numList.waitServiceSize>99?'99+':numList.waitServiceSize}}</view>
  44. <image src="../../static/img/icon_daifuwu.png" mode="" class="orderLineImg"></image>
  45. </view>
  46. <view class="orderLineTxt">待服务</view>
  47. </view>
  48. <view class="orderLine" @click="goorder(3)">
  49. <view class="orderImgBox">
  50. <view class="orderNum" v-show="numList.hasOverSize>0">{{numList.hasOverSize>99?'99+':numList.hasOverSize}}</view>
  51. <image src="../../static/img/icon_yiwancheng.png" mode="" class="orderLineImg"></image>
  52. </view>
  53. <view class="orderLineTxt">已完成</view>
  54. </view>
  55. <view class="orderLine" @click="goorder(0)">
  56. <view class="orderImgBox">
  57. <view class="orderNum" v-show="numList.allSize>0">{{numList.allSize>99?'99+':numList.allSize}}</view>
  58. <image src="../../static/img/icon_allorder.png" mode="" class="orderLineImg"></image>
  59. </view>
  60. <view class="orderLineTxt">全部</view>
  61. </view>
  62. </view>
  63. </view>
  64. <!-- 店铺信息 -->
  65. <view class="shopBox">
  66. <view class="shopCont">
  67. <view class="shopName">{{numList.shopInfo.shopName}}</view>
  68. <view class="shopRightBox">
  69. <image src="../../static/img/icon_ditu.png" mode="" class="shopRightImg"
  70. style="margin-right: 67rpx;" @click="map"></image>
  71. <image src="../../static/img/icon_phone.png" mode="" class="shopRightImg" @click="call"></image>
  72. </view>
  73. </view>
  74. <view class="shopTime" v-if="numList.shopInfo.startTime && numList.shopInfo.endTime">
  75. {{numList.shopInfo.startTime}}-{{numList.shopInfo.endTime}}</view>
  76. <view class="address">
  77. <view class="Address">
  78. {{numList.shopInfo.provinceName}}{{numList.shopInfo.cityName}}{{numList.shopInfo.areaName}}{{numList.shopInfo.address}}
  79. </view>
  80. <!-- <view class="distance" v-if="numList.shopInfo.distance&&numList.shopInfo.distance!= '0.00'">{{numList.shopInfo.distance}}km</view> -->
  81. </view>
  82. </view>
  83. <!-- 我的 相关 -->
  84. <view class="rowBoxBg">
  85. <view class="rowBox" @click="gonavigateTo('../user/expertServices')">
  86. <view class="leftView">
  87. <image src="../../static/img/icon_me1.png" mode="" class="liftIcon"></image>
  88. <view class="rowTitle">服务专家</view>
  89. </view>
  90. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  91. </view>
  92. <view class="rowBox" @click="gonavigateTo('./addCar/cailist')">
  93. <view class="leftView">
  94. <image src="../../static/img/icon_me2.png" mode="" class="liftIcon"></image>
  95. <view class="rowTitle">我的车库</view>
  96. </view>
  97. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  98. </view>
  99. <view class="rowBox" @click="gonavigateTo('myBespeak')">
  100. <view class="leftView">
  101. <image src="../../static/img/icon_me3.png" mode="" class="liftIcon"></image>
  102. <view class="rowTitle">我的预约</view>
  103. </view>
  104. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  105. </view>
  106. <view class="rowBox" @click="gonavigateTo('historySpend')">
  107. <view class="leftView">
  108. <image src="../../static/img/icon_me4.png" mode="" class="liftIcon"></image>
  109. <view class="rowTitle">历史消费</view>
  110. </view>
  111. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  112. </view>
  113. <view class="rowBox" @click="gonavigateTo('checkReport')">
  114. <view class="leftView">
  115. <image src="../../static/img/icon_me5.png" mode="" class="liftIcon"></image>
  116. <view class="rowTitle">车检报告</view>
  117. </view>
  118. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  119. </view>
  120. <!-- <view class="rowBox" @click="gonavigateTo('invite')">
  121. <view class="leftView">
  122. <image src="../../static/img/icon_me6.png" mode="" class="liftIcon"></image>
  123. <view class="rowTitle">分享给好友</view>
  124. </view>
  125. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  126. </view> -->
  127. <button open-type="share" class="rowBox" >
  128. <view class="leftView">
  129. <image src="../../static/img/icon_me6.png" mode="" class="liftIcon"></image>
  130. <view class="rowTitle">分享给好友</view>
  131. </view>
  132. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  133. </button>
  134. <view class="rowBox" @click="gonavigateTo('feedBack')">
  135. <view class="leftView">
  136. <image src="../../static/img/icon_me7.png" mode="" class="liftIcon"></image>
  137. <view class="rowTitle">意见反馈</view>
  138. </view>
  139. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  140. </view>
  141. <!-- 先隐藏 -->
  142. <!-- <view class="rowBox" @click="gonavigateTo('')">
  143. <view class="leftView">
  144. <image src="../../static/img/icon_me8.png" mode="" class="liftIcon"></image>
  145. <view class="rowTitle">清除缓存</view>
  146. </view>
  147. <image src="../../static/img/big_rightArrow.png" mode="" class="big_rightArrow"></image>
  148. </view> -->
  149. </view>
  150. <!-- <view class="signOut" @click="signOut">退出登录</view> -->
  151. <!-- 手机号授权 -->
  152. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  153. <view class="authorizCont" @click.stop="">
  154. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  155. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  156. <button class="authorizContbutton" type="default" open-type="getPhoneNumber"
  157. @getphonenumber="decryptPhoneNumber">授权</button>
  158. </view>
  159. <view style="text-align: center;padding-top: 56rpx;">
  160. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  161. </view>
  162. </view>
  163. </view>
  164. </template>
  165. <script>
  166. export default {
  167. data() {
  168. return {
  169. userInfo: '',
  170. shopData: '',
  171. numList: '',
  172. uid: '',
  173. headImg: '',
  174. location: {
  175. lng: '',
  176. lat: '',
  177. },
  178. authorizShow: false,
  179. code: '',
  180. wxOpenData: '',
  181. nickName:'',
  182. phone:'',
  183. ext:'',
  184. themeColor:'',
  185. }
  186. },
  187. onLoad(opt) {
  188. this.ext=this.$common.getExtStoreId();
  189. this.themeColor = uni.getStorageSync("themeColor");
  190. if(this.themeColor){
  191. if(this.themeColor=='6F2BE8'){
  192. var backgroundImage='/static/tabimg/me6F2BE8.png'
  193. }
  194. if(this.themeColor=='1677FF'){
  195. var backgroundImage='/static/tabimg/me1677FF.png'
  196. }
  197. if(this.themeColor=='FF4F00'){
  198. var backgroundImage='/static/tabimg/meFF4F00.png'
  199. }
  200. if(this.themeColor=='D53533'){
  201. var backgroundImage='/static/tabimg/me1.png'
  202. }
  203. uni.setTabBarStyle({
  204. // color: '#FF0000',
  205. selectedColor: '#'+this.themeColor,
  206. })
  207. uni.setTabBarItem({
  208. index: 3,
  209. text: '我的',
  210. selectedIconPath: backgroundImage
  211. })
  212. }
  213. uni.setNavigationBarColor({
  214. frontColor: "#ffffff",
  215. backgroundColor:'#'+ this.themeColor
  216. })
  217. },
  218. onShow() {
  219. const wxOpenData = this.$store.state.wxOpenData;
  220. this.wxOpenData=wxOpenData
  221. //console.log()
  222. if (wxOpenData) {
  223. this.uid = wxOpenData.loginInfo.uid;
  224. }
  225. this.userInfo = this.$store.state.userInfo;
  226. if (this.userInfo) {
  227. this.queryMyDetail();
  228. } else {
  229. this.authorizShow = true;
  230. }
  231. },
  232. methods: {
  233. updateUserInfo(){
  234. var that=this;
  235. uni.getUserProfile({
  236. lang:'zh_CN',
  237. desc:'登录',
  238. success:(res)=>{
  239. console.log(res);
  240. that.headImg=res.userInfo.avatarUrl;
  241. that.nickName=res.userInfo.nickName;
  242. that.$http('miniApp2/sys/updateUserInfo', {
  243. nickName:res.userInfo.nickName,
  244. unionId:that.ext.unionId,
  245. headImg: res.userInfo.avatarUrl,
  246. openId: that.wxOpenData.openid
  247. }, 'POST').then(res => {
  248. })
  249. },
  250. fail:(res)=>{
  251. console.log(res)
  252. }
  253. });
  254. },
  255. decryptPhoneNumber: function(e) {
  256. console.log(e);
  257. this.code = e.detail.code
  258. this.wxPhoneLogin()
  259. this.authorizShow = false;
  260. },
  261. wxPhoneLogin() {
  262. var that = this;
  263. this.$http('miniApp2/sys/wxPhoneLogin', {
  264. appId:this.ext.appId,
  265. unionId:this.ext.unionId,
  266. code: this.code,
  267. openId: this.wxOpenData.openid
  268. }, 'POST').then(res => {
  269. var data = res.data;
  270. if (data.loginInfo) {
  271. this.userInfo = data.loginInfo.openUser;
  272. this.wxOpenData = data.loginInfo;
  273. this.$store.commit('mutationswxOpenData', data.loginInfo)
  274. this.$store.commit('mutationsuserInfo', this.userInfo)
  275. this.queryMyDetail()
  276. }
  277. })
  278. },
  279. map() {
  280. console.log("打开地图")
  281. var that = this;
  282. if (!that.numList.shopInfo.lat || !that.numList.shopInfo.lng) {
  283. uni.showToast({
  284. title: '该店铺未设置定位',
  285. icon: 'none',
  286. duration: 3000
  287. });
  288. } else {
  289. uni.openLocation({
  290. latitude: Number(that.numList.shopInfo.lat),
  291. longitude: Number(that.numList.shopInfo.lng),
  292. name: that.numList.shopInfo.shopName,
  293. address: that.numList.shopInfo.provinceName + that.numList.shopInfo.cityName + that.numList
  294. .shopInfo.areaName + that.numList.shopInfo.address,
  295. success: function() {
  296. console.log('success');
  297. },
  298. fail(err) {
  299. console.log(err)
  300. }
  301. });
  302. }
  303. },
  304. call() {
  305. uni.makePhoneCall({
  306. phoneNumber: this.numList.shopInfo.contactorPhone
  307. });
  308. },
  309. goorder(num) {
  310. uni.navigateTo({
  311. url: './myOrder/myOrder?num=' + num
  312. })
  313. },
  314. queryMyDetail() {
  315. uni.showLoading({
  316. title: '加载中'
  317. })
  318. this.$http('openreservation/getInfo', {
  319. lat: this.location.lat ? this.location.lat : '',
  320. lng: this.location.lng ? this.location.lng : '',
  321. }, 'GET').then(res => {
  322. uni.hideLoading();
  323. this.numList = res.data
  324. this.headImg = res.data.openUser.headImg;
  325. this.nickName = res.data.openUser.nickName;
  326. this.phone = res.data.openUser.mobilePhone;
  327. })
  328. },
  329. gonavigateTo(url) {
  330. uni.navigateTo({
  331. url: url
  332. })
  333. },
  334. signOut() {
  335. //uni.clearStorageSync();
  336. uni.removeStorageSync('logodata');
  337. // uni.navigateTo({
  338. // url: '../login/login'
  339. // })
  340. },
  341. },
  342. onShareAppMessage(res) {
  343. return {
  344. title: this.wxOpenData.miniAppName,
  345. //imageUrl:img,
  346. path: 'pages/index/index',
  347. success(res){
  348. uni.showToast({
  349. title:'分享成功'
  350. })
  351. },
  352. fail(res){
  353. uni.showToast({
  354. title:'分享失败',
  355. icon:'none',
  356. duration: 3000
  357. })
  358. }
  359. }
  360. },
  361. // 下拉刷新
  362. onPullDownRefresh() {
  363. this.queryMyDetail()
  364. setTimeout(function() {
  365. uni.stopPullDownRefresh();
  366. }, 1000);
  367. },
  368. }
  369. </script>
  370. <style scoped>
  371. button::after{
  372. border: none;
  373. }
  374. button{
  375. position: relative;
  376. display: block;
  377. margin-left: 0;
  378. margin-right: 0;
  379. padding-left: 0px;
  380. padding-right: 0px;
  381. box-sizing: border-box;
  382. // font-size: 18px;
  383. text-align: center;
  384. text-decoration: none;
  385. // line-height: 1;
  386. line-height: 1.35;
  387. // border-radius: 5px;
  388. -webkit-tap-highlight-color: transparent;
  389. overflow: hidden;
  390. color: #000000;
  391. background-color: #fff;
  392. height: 100%;
  393. }
  394. .box {
  395. width: 100vw;
  396. min-height: 100vh;
  397. background: #F4F5F7;
  398. padding-bottom: 60rpx;
  399. }
  400. .top {
  401. height: 350rpx;
  402. padding: 20rpx 24rpx 0;
  403. background-color: #D53533;
  404. border-radius: 0 0 5% 5%;
  405. }
  406. .customerMes {
  407. display: flex;
  408. }
  409. .mes {
  410. margin-left: 20rpx;
  411. }
  412. .nick {
  413. margin-bottom: 5rpx;
  414. display: flex;
  415. justify-content: flex-start;
  416. align-items: center;
  417. }
  418. .nickName {
  419. font-size: 34rpx;
  420. color: #FFFFFF;
  421. font-weight: bold;
  422. line-height: 48rpx;
  423. height: 48rpx;
  424. }
  425. .grade {
  426. margin-left: 15rpx;
  427. font-size: 24rpx;
  428. color: #FFFFFF;
  429. padding: 0rpx 10rpx;
  430. border: 1rpx solid #FFFFFF;
  431. border-radius: 4rpx;
  432. height: 36rpx;
  433. }
  434. .phone {
  435. font-size: 24rpx;
  436. color: #FFFFFF;
  437. }
  438. .headerBox {
  439. padding: 30rpx 24rpx;
  440. display: flex;
  441. justify-content: space-around;
  442. }
  443. .quan {
  444. display: flex;
  445. flex-direction: column;
  446. align-items: center;
  447. height: 120rpx;
  448. }
  449. .numStr {
  450. font-size: 40rpx;
  451. font-weight: bold;
  452. color: #FFFFFF;
  453. line-height: 56rpx;
  454. }
  455. .nameStr {
  456. font-size: 24rpx;
  457. color: #FFFFFF;
  458. }
  459. .orderBox {
  460. margin: 0rpx 24rpx;
  461. background: #FFFFFF;
  462. padding: 30rpx 20rpx;
  463. border-radius: 10rpx;
  464. margin-top: -100rpx;
  465. }
  466. .orderTitle {
  467. font-size: 30rpx;
  468. color: #333333;
  469. font-weight: bold;
  470. }
  471. .orderAll {
  472. display: flex;
  473. justify-content: space-between;
  474. align-items: center;
  475. }
  476. .orderLine {
  477. width: 25%;
  478. text-align: center;
  479. }
  480. .orderLineImg {
  481. width: 60rpx;
  482. height: 60rpx;
  483. }
  484. .orderLineTxt {
  485. font-size: 24rpx;
  486. color: #333333;
  487. }
  488. .orderImgBox {
  489. text-align: center;
  490. position: relative;
  491. }
  492. .orderLIneBox {
  493. display: flex;
  494. justify-content: space-between;
  495. padding-top: 30rpx;
  496. }
  497. .orderNum {
  498. height: 26rpx;
  499. line-height: 26rpx;
  500. background: #FF0000;
  501. padding: 0 8rpx;
  502. border-radius: 13rpx;
  503. color: #FFFFFF;
  504. font-size: 20rpx;
  505. position: absolute;
  506. left: 90rpx;
  507. z-index: 11;
  508. }
  509. .big_rightArrow {
  510. margin-right: 20rpx;
  511. width: 30rpx;
  512. height: 30rpx;
  513. }
  514. .rowBoxBg {
  515. margin: 20rpx 24rpx;
  516. background: #FFFFFF;
  517. border-radius: 10rpx;
  518. }
  519. .rowBox {
  520. display: flex;
  521. justify-content: space-between;
  522. background: #FFFFFF;
  523. padding: 35rpx 0rpx;
  524. border-radius: 10rpx;
  525. align-items: center;
  526. }
  527. .leftView {
  528. display: flex;
  529. align-items: center;
  530. }
  531. .rightView {
  532. display: flex;
  533. align-items: center;
  534. }
  535. .liftIcon {
  536. width: 34rpx;
  537. height: 34rpx;
  538. margin: 0rpx 20rpx;
  539. }
  540. .rowTitle {
  541. color: #3C3C3C;
  542. font-size: 28rpx;
  543. }
  544. .signOut {
  545. width: 702rpx;
  546. height: 98rpx;
  547. background: #FFFFFF;
  548. border-radius: 10rpx;
  549. font-size: 30rpx;
  550. color: #FF3B30;
  551. line-height: 98rpx;
  552. text-align: center;
  553. margin: 40rpx 24rpx;
  554. }
  555. .shopBox {
  556. padding: 20rpx;
  557. margin: 20rpx 24rpx;
  558. background-color: #FFFFFF;
  559. border-radius: 10rpx;
  560. }
  561. .shopCont {
  562. display: flex;
  563. justify-content: space-between;
  564. align-items: center;
  565. }
  566. .shopName {
  567. font-size: 30rpx;
  568. font-weight: bold;
  569. color: #3C3C3C;
  570. line-height: 42rpx;
  571. }
  572. .shopRightBox {
  573. display: flex;
  574. justify-content: space-between;
  575. }
  576. .address {
  577. display: flex;
  578. justify-content: space-between;
  579. align-items: center;
  580. }
  581. .Address,
  582. .shopTime,
  583. .distance {
  584. color: #999999;
  585. font-size: 24rpx;
  586. padding-top: 15rpx;
  587. /* 隐藏文字显示 ...不换行 */
  588. overflow: hidden;
  589. text-overflow: ellipsis;
  590. white-space: nowrap;
  591. }
  592. .shopRightBox {}
  593. .shopRightImg {
  594. width: 44rpx;
  595. height: 45rpx;
  596. }
  597. .authorizBox {
  598. width: 100vw;
  599. height: 100vh;
  600. background: rgba(0, 0, 0, 0.5);
  601. position: fixed;
  602. top: 0;
  603. left: 0;
  604. }
  605. .authorizCont {
  606. margin-top: 30vh;
  607. width: 564rpx;
  608. height: 408rpx;
  609. background: #FFFFFF;
  610. border-radius: 24rpx;
  611. margin-left: 93rpx;
  612. position: relative;
  613. }
  614. .authorizCloseImg {
  615. width: 62rpx;
  616. height: 62rpx;
  617. }
  618. .sqLogoBox {
  619. width: 180rpx;
  620. height: 180rpx;
  621. background: #FFFFFF;
  622. border-radius: 90rpx;
  623. text-align: center;
  624. position: absolute;
  625. top: -50rpx;
  626. left: 192rpx;
  627. }
  628. .authorizName {
  629. color: #333333;
  630. line-height: 42rpx;
  631. font-size: 30rpx;
  632. text-align: center;
  633. padding-top: 58rpx;
  634. }
  635. .authorizMs {
  636. color: #999999;
  637. line-height: 36rpx;
  638. font-size: 26rpx;
  639. width: 452rpx;
  640. padding-top: 24rpx;
  641. text-align: center;
  642. margin-left: 56rpx;
  643. }
  644. .authorizContbutton {
  645. width: 422rpx;
  646. height: 88rpx;
  647. background: #D53533;
  648. border-radius: 44rpx;
  649. line-height: 88rpx;
  650. text-align: center;
  651. font-size: 30rpx;
  652. color: #FFFFFF;
  653. margin-top: 62rpx;
  654. margin-left: 71rpx;
  655. }
  656. </style>