user.vue 20 KB

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