user.vue 19 KB

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