shopList.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830
  1. <template>
  2. <view class="box">
  3. <view class="regionBox">
  4. <view class="regionLine" @click="gocity">
  5. <view class="regionTxt">{{cityName}}</view>
  6. <image src="../../static/timg/icon_arrow_def@2x.png" mode="" class="jtbelow"></image>
  7. </view>
  8. <view class="regionSx"></view>
  9. <view class="regionLine" @click="quCilck">
  10. <!-- <picker @change="bindPickerChange" :value="index" :range="areaList" range-key='area' @cancel="cancelHandling">
  11. </picker> -->
  12. <view class="regionTxt">{{areaName}}</view>
  13. <image src="../../static/timg/icon_arrow_def@2x.png" mode="" class="jtbelow"></image>
  14. </view>
  15. </view>
  16. <view style="height: 90rpx;"></view>
  17. <view class="shopline" v-for="(item,index) in queryShopList" @click="goDetail(item)">
  18. <view class="shoplineLeft">
  19. <image :src="item.photoPath" mode="" class="shopImg" v-if="item.photoPath"></image>
  20. <image src="../../static/timg/noimg.png" mode="" class="shopImg" v-else></image>
  21. </view>
  22. <view class="shopright">
  23. <view style="display: flex;justify-content: space-between;">
  24. <view style="width: 410rpx;">
  25. <view class="shopTop">
  26. <view class="shopName">{{item.shopName}}</view>
  27. </view>
  28. <view class="brandsBg" v-if="item.brands">
  29. <view class="brands" v-for="(v,index2) in item.brands.split(',')">{{v}}</view>
  30. </view>
  31. </view>
  32. <view class="yuyuBtnBox" >
  33. <view>预约</view>
  34. <image style="width: 21rpx;height: 21rpx;margin-top: 4rpx;margin-left: 5rpx;" src="http://dmsphoto.66km.com.cn/thFiles/1D60717A-DC1D-43BC-BBFE-EE0FAFD1A470.png" mode=""></image>
  35. </view>
  36. </view>
  37. <view class="shopTime"><span v-if="item.startTime">{{item.startTime}}</span> - <span
  38. v-if="item.endTime">{{item.endTime}}</span> </view>
  39. <view class="shopBottomLeft">
  40. <span class="shopaddress"
  41. v-if="item.address">{{item.address}}</span>
  42. <span v-if="item.distance&&item.distance!= '0.00'">{{item.distance}}km</span>
  43. </view>
  44. <view class="shopdhBox">
  45. <view class="shopcall" @click.stop="makePhoneCall(item.mobilePhone)">
  46. <image class="shopcallIcon" src="http://dmsphoto.66km.com.cn/thFiles/AB063613-7B7A-4BD4-AF43-9ECC082FF5C6.png" mode=""></image>
  47. <view class="shopcallTxt">联系电话</view>
  48. </view>
  49. <view class="shopcall" style="padding-left: 65rpx;" @click.stop="goMap(item)">
  50. <image class="shopcallIcon" src="http://dmsphoto.66km.com.cn/thFiles/5479ED98-61D3-41CB-8080-889E851FF6C0.png" mode=""></image>
  51. <view class="shopcallTxt">一键导航</view>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <!-- 上拉 加载更多 -->
  57. <view class="noMore" v-if="noMoreShow && (queryShopList.length!=0)">没有更多数据</view>
  58. <!-- 无数据空白页 -->
  59. <nodata v-if="queryShopList.length==0&&loading"></nodata>
  60. <uni-popup ref="popup" type="right" :mask-click="true">
  61. <view class="popup-content">
  62. <scroll-view class="brandList" scroll-y="true">
  63. <!-- :class="{areaActvie:item.area==areaName}" -->
  64. <view v-for="item in areaList" class="areaListLine"
  65. @click="checkarea(item)">
  66. <span >{{item.area}}</span>
  67. <image v-if="item.code==area" class="areaCkIcon" src="http://dmsphoto.66km.com.cn/thFiles/0A1DADEA-1807-4ABC-B391-ECC8B1882DA4.png" mode=""></image>
  68. </view>
  69. </scroll-view>
  70. </view>
  71. </uni-popup>
  72. <!-- 手机号授权 -->
  73. <view class="authorizBox" v-if="authorizShow" @click="authorizShowno">
  74. <view class="authorizCont" @click.stop="">
  75. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  76. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  77. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  78. </view>
  79. <view style="text-align: center;padding-top: 56rpx;">
  80. <image src="../../static/timg/icon_guanbi@2x.png" @click="authorizShowno" mode="" class="authorizCloseImg"></image>
  81. </view>
  82. </view>
  83. <!-- <view>lng:{{location.lng}}</view>
  84. <view>lat:{{location.lat}}</view> -->
  85. </view>
  86. </template>
  87. <script>
  88. import nodata from '../../components/nodata/nodata.vue'
  89. export default {
  90. components: {
  91. nodata,
  92. },
  93. data() {
  94. return {
  95. location: {
  96. lng: '',
  97. lat: '',
  98. },
  99. queryShopList: '',
  100. noMoreShow: false,
  101. regionName:'',
  102. twoRegionName:'',
  103. cityName:'城市',
  104. area:'',
  105. cityCode:'',
  106. areaList:'',
  107. index:'',
  108. areaName:'区域',
  109. loading:false,
  110. ext:'',
  111. authorizShow:false,
  112. wxOpenData:'',
  113. userInfo: '',
  114. }
  115. },
  116. onLoad() {
  117. var that = this;
  118. uni.removeStorageSync('selectCity');
  119. this.userInfo = this.$store.state.userInfo;
  120. this.ext=this.$common.getExtStoreId();
  121. if(this.userInfo){
  122. this.themeColor = uni.getStorageSync("themeColor");
  123. this.wxOpenData=this.$store.state.wxOpenData;
  124. this.init()
  125. }else{
  126. this.$common.automaticlogin().then(val => {
  127. this.themeColor = uni.getStorageSync("themeColor");
  128. this.userInfo=this.$store.state.userInfo;
  129. this.wxOpenData=this.$store.state.wxOpenData;
  130. this.init()
  131. if(!this.userInfo){
  132. uni.hideLoading();
  133. //this.authorizShow=true
  134. }
  135. })
  136. }
  137. // that.getqueryShopList();
  138. },
  139. onShow() {
  140. const selectCity = uni.getStorageSync('selectCity');
  141. //console.log("onShow")
  142. //console.log(selectCity)
  143. if(selectCity){
  144. this.cityName=selectCity.city
  145. this.cityCode=selectCity.code
  146. this.areaName='区域'
  147. this.area=''
  148. this.getAreaList()
  149. this.getqueryShopList() //获取门店列表
  150. }
  151. },
  152. methods: {
  153. authorizShowno(){
  154. this.authorizShow=false
  155. },
  156. decryptPhoneNumber: function(e) {
  157. console.log(e);
  158. this.code=e.detail.code
  159. this.wxPhoneLogin()
  160. this.authorizShow=false;
  161. },
  162. wxPhoneLogin(){
  163. var that=this;
  164. this.$http('miniApp2/sys/wxPhoneLogin', {
  165. appId:this.ext.appId,
  166. unionId:this.ext.unionId,
  167. code:this.code,
  168. openId:this.wxOpenData.openid
  169. },'POST').then(res => {
  170. var data = res.data;
  171. if(data.newCustomer){
  172. uni.showModal({
  173. title: '提示',
  174. content: data.newCustomerMsg,
  175. success: function(resTK) {
  176. }
  177. });
  178. var token=res.data.token
  179. data.loginInfo={}
  180. data.loginInfo.token=token
  181. this.$store.commit('mutationswxOpenData', data);
  182. return false;
  183. }
  184. if(data.loginInfo){
  185. this.userInfo=data.loginInfo.openUser;
  186. this.wxOpenData=data.loginInfo;
  187. this.$store.commit('mutationswxOpenData', data)
  188. this.$store.commit('mutationsuserInfo', this.userInfo)
  189. this.init()
  190. }
  191. })
  192. },
  193. init(){
  194. var that = this;
  195. uni.showLoading({
  196. title: '加载中'
  197. })
  198. uni.authorize({
  199. scope: 'scope.userLocation',
  200. success() {
  201. uni.getLocation({
  202. type: 'gcj02',
  203. success: function(res) {
  204. console.log(res)
  205. that.location.lat = res.latitude
  206. that.location.lng = res.longitude
  207. that.getAdress();
  208. //that.getqueryShopList() //获取全部门店列表
  209. },
  210. fail(err) {
  211. console.log("定位失败")
  212. that.getqueryShopList();
  213. }
  214. });
  215. },
  216. fail: (err) => {
  217. console.log(err)
  218. that.getqueryShopList();
  219. }})
  220. },
  221. quCilck(){
  222. console.log(this.cityName)
  223. if(this.cityName){
  224. this.$refs.popup.open("right")
  225. //this.popupShow=true;
  226. if(this.areaList.length==0){
  227. /* uni.showToast({
  228. title: '当前城市下无区域,请切换城市查看',
  229. icon: 'none',
  230. duration: 4000
  231. }); */
  232. uni.showModal({
  233. title: '提示',
  234. content: '当前城市下无区域,请切换城市查看',
  235. success: function(res) {
  236. if (res.confirm) {
  237. // 执行确认后的操作
  238. uni.navigateTo({
  239. url:'/pages/subPack/chooseCity?type=1'
  240. })
  241. }
  242. else {
  243. // 执行取消后的操作
  244. }
  245. }
  246. })
  247. }
  248. }else{
  249. uni.showModal({
  250. title: '提示',
  251. content: '当前城市暂无门店,请切换城市查看',
  252. success: function(res) {
  253. if (res.confirm) {
  254. // 执行确认后的操作
  255. uni.navigateTo({
  256. url:'/pages/subPack/chooseCity?type=1'
  257. })
  258. }
  259. else {
  260. // 执行取消后的操作
  261. }
  262. }
  263. })
  264. }
  265. },
  266. gocity(){
  267. uni.navigateTo({
  268. url:'/pages/subPack/chooseCity?type=1'
  269. })
  270. },
  271. checkarea(item){
  272. if(this.area==item.code){
  273. this.areaName='区域'
  274. this.area=''
  275. this.getqueryShopList() //获取门店列表
  276. }else{
  277. this.areaName=item.area
  278. this.area=item.code
  279. this.getqueryShopList() //获取门店列表
  280. }
  281. this.$refs.popup.close()
  282. },
  283. bindPickerChange(e){
  284. //console.log(e)
  285. this.areaName=this.areaList[e.detail.value].area
  286. this.area=this.areaList[e.detail.value].code
  287. this.getqueryShopList() //获取门店列表
  288. },
  289. cancelHandling(){
  290. this.areaName='区域'
  291. this.area=''
  292. this.getqueryShopList() //获取门店列表
  293. },
  294. makePhoneCall(num){
  295. uni.makePhoneCall({
  296. phoneNumber:num
  297. });
  298. },
  299. goMap(item){
  300. var that = this;
  301. if (!item.lat || !item.lng) {
  302. uni.showToast({
  303. title: '该店铺未设置定位',
  304. icon: 'none',
  305. duration: 3000
  306. });
  307. } else {
  308. uni.openLocation({
  309. latitude: Number(item.lat),
  310. longitude: Number(item.lng),
  311. name: item.shopName,
  312. address: item.provinceName + item.cityName + item.areaName +
  313. item.address,
  314. success: function() {
  315. console.log('success');
  316. },
  317. fail(err) {
  318. console.log(err)
  319. }
  320. });
  321. }
  322. },
  323. getAdress(){
  324. var that=this;
  325. var location = this.location.lng + ',' + this.location.lat
  326. console.log('location'+location)
  327. //location='117.29249484592015,39.026727973090274'
  328. uni.request({
  329. url: 'https://restapi.amap.com/v3/geocode/regeo',
  330. data: {
  331. key: '389a059efa3f499d9145eb84b1c3248d',
  332. location: location,
  333. },
  334. dataType: "json",
  335. success: (res) => {
  336. console.log('定位城市', res);
  337. if(res.data.regeocode){
  338. console.log("城市名称")
  339. console.log(res.data.regeocode.addressComponent.city)
  340. // console.log(res.data.pois[0].cityname)
  341. if(res.data.regeocode.addressComponent.city.length!=0){
  342. var cityname = res.data.regeocode.addressComponent.city;
  343. }else{
  344. var cityname = res.data.regeocode.addressComponent.province;
  345. }
  346. var cityCode = res.data.regeocode.addressComponent.adcode
  347. cityCode = cityCode.slice(0, -2)
  348. cityCode = cityCode + '00'
  349. this.cityName = cityname
  350. this.cityCode = cityCode
  351. that.getqueryShopList() //获取全部门店列表
  352. that.getAreaList()
  353. }else{
  354. console.log("接口获取失败")
  355. uni.hideLoading();
  356. }
  357. }
  358. });
  359. },
  360. getAreaList(){
  361. this.$http('opencarOwnerHome/shop-area-list', {
  362. city:this.cityCode
  363. }, 'GET').then(res => {
  364. this.areaList=res.data
  365. })
  366. },
  367. getqueryShopList() {
  368. uni.showLoading({
  369. title: '加载中'
  370. })
  371. this.loading=false;
  372. this.$http('opencarOwnerHome/queryShopInfoList', {
  373. lat: this.location.lat ? this.location.lat : '',
  374. lng: this.location.lng ? this.location.lng : '',
  375. city:this.cityCode,
  376. area:this.area
  377. }, 'GET').then(res => {
  378. uni.hideLoading();
  379. this.queryShopList = res.data.shop;
  380. this.loading=true;
  381. //console.log('list+=', this.queryShopList);
  382. if(this.queryShopList.length==0){
  383. /* uni.showToast({
  384. title: '当前城市暂无门店,请切换城市查看',
  385. icon: 'none',
  386. duration: 4000
  387. }); */
  388. uni.showModal({
  389. title: '提示',
  390. content: '当前城市暂无门店,请切换城市查看',
  391. success: function(res) {
  392. if (res.confirm) {
  393. // 执行确认后的操作
  394. uni.navigateTo({
  395. url:'/pages/subPack/chooseCity?type=1'
  396. })
  397. }
  398. else {
  399. // 执行取消后的操作
  400. }
  401. }
  402. })
  403. }
  404. })
  405. },
  406. goDetail(item) {
  407. uni.navigateTo({
  408. url:'onlineBooking?naShopId='+item.shopId+'naUnionId='+item.unionId
  409. })
  410. /* if (this.userInfo) {
  411. uni.navigateTo({
  412. url:'onlineBooking?naShopId='+item.shopId+'naUnionId='+item.unionId
  413. })
  414. } else {
  415. this.authorizShow = true;
  416. return false;
  417. } */
  418. }
  419. },
  420. // 下拉刷新
  421. onPullDownRefresh() {
  422. this.getqueryShopList()
  423. setTimeout(function() {
  424. uni.stopPullDownRefresh();
  425. }, 1000);
  426. },
  427. }
  428. </script>
  429. <style scoped>
  430. .areaCkIcon{
  431. width: 38rpx;height: 28rpx;
  432. }
  433. .popup-content{
  434. width: 590rpx;
  435. background: #FFFFFF;
  436. height: 100vh;
  437. }
  438. .brandList{
  439. height:99vh;
  440. }
  441. .areaListLine{
  442. padding:30rpx 24rpx;
  443. color: #666666;
  444. font-size: 28rpx;
  445. border-bottom: 1px solid #eaeaea;
  446. display: flex;
  447. justify-content: space-between;
  448. line-height: 28rpx;
  449. }
  450. .areaActvie{
  451. background: #F19D01;
  452. color: #FFFFFF;
  453. }
  454. .jtbelow{
  455. width: 14rpx;height: 7rpx;
  456. margin-left: 10rpx;margin-top: 10rpx;
  457. }
  458. .regionSx{
  459. width: 2rpx;height: 33rpx;background:#EEEEEE;
  460. }
  461. .regionLine{
  462. display: flex;justify-content: center;font-size: 26rpx;
  463. width: 370rpx;line-height: 33rpx;color: #3C3C3C;
  464. }
  465. .regionBox{
  466. display: flex;
  467. justify-content: center;
  468. background: #FFFFFF;
  469. padding: 20rpx 0;
  470. margin-bottom: 20rpx;
  471. position: fixed;
  472. width: 100vw;
  473. top: 0;left: 0;
  474. }
  475. .box {
  476. min-height: 100vh;
  477. background-color: #F4F5F7;
  478. padding-bottom: 60rpx;
  479. }
  480. .shopdhBox{
  481. display: flex;padding-top: 16rpx;
  482. }
  483. .shopcall{
  484. display: flex;
  485. }
  486. .shopcallIcon{
  487. width: 23rpx;height: 23rpx;margin-top: 5rpx;
  488. }
  489. .shopcallTxt{
  490. color: #3C3C3C;font-size: 24rpx;
  491. line-height: 33rpx;padding-left: 8rpx;
  492. }
  493. .yuyuBtnBox{
  494. display: flex;
  495. font-size: 24rpx;
  496. color: #FF8113;
  497. align-items: center;
  498. justify-items: center;
  499. /* border-left: 1px solid #EEEEEE;
  500. padding-left: 20rpx; */
  501. }
  502. .shopline {
  503. margin: 0rpx 24rpx 20rpx;
  504. padding: 20rpx;
  505. background-color: #FFFFFF;
  506. border-radius: 10rpx;
  507. display: flex;
  508. }
  509. .nodataImg {
  510. width: 400rpx;
  511. padding-top: 100rpx;
  512. }
  513. .noTxt {
  514. font-size: 36rpx;
  515. color: #999999;
  516. padding-top: 50rpx;
  517. }
  518. .nodataBox {
  519. text-align: center;
  520. }
  521. .shopImg {
  522. width: 154rpx;
  523. height: 154rpx;
  524. border-radius: 10rpx;
  525. }
  526. .shopBox {
  527. padding-top: 30rpx;
  528. display: flex;
  529. }
  530. .flex {
  531. display: flex;
  532. justify-content: space-between;
  533. }
  534. .shopCont {
  535. padding-left: 22rpx;
  536. width: 520rpx;
  537. }
  538. .span1 {
  539. color: #FF4F00;
  540. font-size: 36rpx;
  541. }
  542. .span2 {
  543. color: #FF4F00;
  544. font-size: 22rpx;
  545. }
  546. .span3 {
  547. color: #333333;
  548. font-size: 22rpx;
  549. padding-left: 22rpx;
  550. }
  551. .shopBq {
  552. color: #FF4F00;
  553. font-size: 22rpx;
  554. border-radius: 4rpx;
  555. border: 1px solid #FF4F00;
  556. line-height: 30rpx;
  557. height: 30rpx;
  558. padding: 0rpx 5rpx;
  559. margin-top: 10rpx;
  560. }
  561. .brandsBg {
  562. display: flex;
  563. align-items: center;
  564. padding: 5rpx 0rpx;
  565. flex-wrap: wrap;
  566. height: 36rpx;
  567. /* 隐藏文字显示 ...不换行 */
  568. overflow: hidden;
  569. text-overflow: ellipsis;
  570. white-space: nowrap;
  571. }
  572. .brands {
  573. border-radius: 4rpx;
  574. padding: 0 5rpx;
  575. color: #F19D01;
  576. height: 28rpx;
  577. border: 1px solid #F19D01;
  578. font-size: 20rpx;
  579. line-height: 28rpx;
  580. margin: 5rpx 10rpx 5rpx 0rpx;
  581. }
  582. .timeBg {
  583. display: flex;
  584. }
  585. .shopTime {
  586. color: #666666;
  587. font-size: 24rpx;
  588. }
  589. .addressBox {
  590. color: #666666;
  591. font-size: 22rpx;
  592. }
  593. .shopNameSearchInput {
  594. width: 500rpx;
  595. }
  596. .colorCS {
  597. color: #FF4F00;
  598. }
  599. .shopbox {
  600. padding: 0 16rpx;
  601. }
  602. .shopCallImg {
  603. width: 38rpx;
  604. height: 46rpx;
  605. }
  606. .shopTop {
  607. display: flex;
  608. justify-content: space-between;
  609. }
  610. .shopright {
  611. padding-left: 20rpx;
  612. width: 510rpx;
  613. }
  614. .shopName {
  615. font-size: 28rpx;
  616. font-weight: bold;
  617. color: #333333;
  618. line-height: 40rpx;
  619. width: 450rpx;
  620. white-space: nowrap;
  621. overflow: hidden;
  622. text-overflow: ellipsis;
  623. }
  624. .shopScore1 {
  625. font-size: 36rpx;
  626. font-weight: bold;
  627. color: #FF4F00;
  628. height: 50rpx;
  629. line-height: 50rpx;
  630. }
  631. .shopScore11 {
  632. font-size: 22rpx;
  633. color: #FF4F00;
  634. margin-right: 14rpx;
  635. }
  636. .shopScore2 {
  637. font-size: 22rpx;
  638. color: #666666;
  639. margin-right: 14rpx;
  640. padding: 8rpx 0;
  641. }
  642. .shopScore3 {
  643. font-size: 22rpx;
  644. color: #333333;
  645. padding-left: 20rpx;
  646. }
  647. .Btn {
  648. width: 104rpx;
  649. height: 56rpx;
  650. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  651. border-radius: 6rpx;
  652. font-size: 26rpx;
  653. text-align: center;
  654. color: #FFFFFF;
  655. line-height: 56rpx;
  656. }
  657. .shopBottom {
  658. display: flex;
  659. }
  660. .shopBottomLeft {
  661. font-size: 25rpx;
  662. color: #666666;
  663. line-height: 30rpx;
  664. padding-top: 10rpx;
  665. display: flex;
  666. justify-content: space-between;
  667. padding-right: 10rpx;
  668. }
  669. .shopaddress {
  670. width: 400rpx;
  671. /* 隐藏文字显示 ...不换行 */
  672. overflow: hidden;
  673. text-overflow: ellipsis;
  674. white-space: nowrap;
  675. }
  676. .noMore {
  677. text-align: center;
  678. line-height: 50rpx;
  679. color: #999999;
  680. font-size: 28rpx;
  681. }
  682. .authorizBox{
  683. width: 100vw;
  684. height: 100vh;
  685. background: rgba(0, 0, 0, 0.5);
  686. position: fixed;
  687. top: 0;
  688. left: 0;
  689. }
  690. .authorizCont{
  691. margin-top: 30vh;
  692. width: 564rpx;
  693. height: 408rpx;
  694. background: #FFFFFF;
  695. border-radius: 24rpx;
  696. margin-left: 93rpx;
  697. position: relative;
  698. }
  699. .authorizCloseImg{
  700. width: 62rpx;
  701. height: 62rpx;
  702. }
  703. .sqLogoBox{
  704. width: 180rpx;
  705. height: 180rpx;
  706. background: #FFFFFF;
  707. border-radius: 90rpx;
  708. text-align: center;
  709. position: absolute;
  710. top: -50rpx;
  711. left: 192rpx;
  712. }
  713. .authorizName{
  714. color: #333333;
  715. line-height: 42rpx;
  716. font-size: 30rpx;
  717. text-align: center;
  718. padding-top: 58rpx;
  719. }
  720. .authorizMs{
  721. color: #999999;
  722. line-height: 36rpx;
  723. font-size: 26rpx;
  724. width: 452rpx;
  725. padding-top: 24rpx;
  726. text-align: center;
  727. margin-left: 56rpx;
  728. }
  729. .authorizContbutton{
  730. width: 422rpx;
  731. height: 88rpx;
  732. background: #D53533;
  733. border-radius: 44rpx;
  734. line-height: 88rpx;
  735. text-align: center;
  736. font-size:30rpx;
  737. color: #FFFFFF;
  738. margin-top: 62rpx;
  739. margin-left:71rpx;
  740. }
  741. </style>