shopList.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  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. that.getqueryShopList();
  218. }})
  219. },
  220. quCilck(){
  221. console.log(this.cityName)
  222. if(this.cityName){
  223. this.$refs.popup.open("right")
  224. //this.popupShow=true;
  225. if(this.areaList.length==0){
  226. /* uni.showToast({
  227. title: '当前城市下无区域,请切换城市查看',
  228. icon: 'none',
  229. duration: 4000
  230. }); */
  231. uni.showModal({
  232. title: '提示',
  233. content: '当前城市下无区域,请切换城市查看',
  234. success: function(res) {
  235. if (res.confirm) {
  236. // 执行确认后的操作
  237. uni.navigateTo({
  238. url:'/pages/subPack/chooseCity?type=1'
  239. })
  240. }
  241. else {
  242. // 执行取消后的操作
  243. }
  244. }
  245. })
  246. }
  247. }else{
  248. uni.showModal({
  249. title: '提示',
  250. content: '当前城市暂无门店,请切换城市查看',
  251. success: function(res) {
  252. if (res.confirm) {
  253. // 执行确认后的操作
  254. uni.navigateTo({
  255. url:'/pages/subPack/chooseCity?type=1'
  256. })
  257. }
  258. else {
  259. // 执行取消后的操作
  260. }
  261. }
  262. })
  263. }
  264. },
  265. gocity(){
  266. uni.navigateTo({
  267. url:'/pages/subPack/chooseCity?type=1'
  268. })
  269. },
  270. checkarea(item){
  271. if(this.area==item.code){
  272. this.areaName='区域'
  273. this.area=''
  274. this.getqueryShopList() //获取门店列表
  275. }else{
  276. this.areaName=item.area
  277. this.area=item.code
  278. this.getqueryShopList() //获取门店列表
  279. }
  280. this.$refs.popup.close()
  281. },
  282. bindPickerChange(e){
  283. //console.log(e)
  284. this.areaName=this.areaList[e.detail.value].area
  285. this.area=this.areaList[e.detail.value].code
  286. this.getqueryShopList() //获取门店列表
  287. },
  288. cancelHandling(){
  289. this.areaName='区域'
  290. this.area=''
  291. this.getqueryShopList() //获取门店列表
  292. },
  293. makePhoneCall(num){
  294. uni.makePhoneCall({
  295. phoneNumber:num
  296. });
  297. },
  298. goMap(item){
  299. var that = this;
  300. if (!item.lat || !item.lng) {
  301. uni.showToast({
  302. title: '该店铺未设置定位',
  303. icon: 'none',
  304. duration: 3000
  305. });
  306. } else {
  307. uni.openLocation({
  308. latitude: Number(item.lat),
  309. longitude: Number(item.lng),
  310. name: item.shopName,
  311. address: item.provinceName + item.cityName + item.areaName +
  312. item.address,
  313. success: function() {
  314. console.log('success');
  315. },
  316. fail(err) {
  317. console.log(err)
  318. }
  319. });
  320. }
  321. },
  322. getAdress(){
  323. var that=this;
  324. var location = this.location.lng + ',' + this.location.lat
  325. console.log('location'+location)
  326. //location='117.29249484592015,39.026727973090274'
  327. uni.request({
  328. url: 'https://restapi.amap.com/v3/geocode/regeo',
  329. data: {
  330. key: '389a059efa3f499d9145eb84b1c3248d',
  331. location: location,
  332. },
  333. dataType: "json",
  334. success: (res) => {
  335. console.log('定位城市', res);
  336. if(res.data.regeocode){
  337. console.log("城市名称")
  338. console.log(res.data.regeocode.addressComponent.city)
  339. // console.log(res.data.pois[0].cityname)
  340. if(res.data.regeocode.addressComponent.city.length!=0){
  341. var cityname = res.data.regeocode.addressComponent.city;
  342. }else{
  343. var cityname = res.data.regeocode.addressComponent.province;
  344. }
  345. var cityCode = res.data.regeocode.addressComponent.adcode
  346. cityCode = cityCode.slice(0, -2)
  347. cityCode = cityCode + '00'
  348. this.cityName = cityname
  349. this.cityCode = cityCode
  350. that.getqueryShopList() //获取全部门店列表
  351. that.getAreaList()
  352. }else{
  353. console.log("接口获取失败")
  354. uni.hideLoading();
  355. }
  356. }
  357. });
  358. },
  359. getAreaList(){
  360. this.$http('opencarOwnerHome/shop-area-list', {
  361. city:this.cityCode
  362. }, 'GET').then(res => {
  363. this.areaList=res.data
  364. })
  365. },
  366. getqueryShopList() {
  367. uni.showLoading({
  368. title: '加载中'
  369. })
  370. this.loading=false;
  371. this.$http('opencarOwnerHome/queryShopInfoList', {
  372. lat: this.location.lat ? this.location.lat : '',
  373. lng: this.location.lng ? this.location.lng : '',
  374. city:this.cityCode,
  375. area:this.area
  376. }, 'GET').then(res => {
  377. uni.hideLoading();
  378. this.queryShopList = res.data.shop;
  379. this.loading=true;
  380. //console.log('list+=', this.queryShopList);
  381. if(this.queryShopList.length==0){
  382. /* uni.showToast({
  383. title: '当前城市暂无门店,请切换城市查看',
  384. icon: 'none',
  385. duration: 4000
  386. }); */
  387. uni.showModal({
  388. title: '提示',
  389. content: '当前城市暂无门店,请切换城市查看',
  390. success: function(res) {
  391. if (res.confirm) {
  392. // 执行确认后的操作
  393. uni.navigateTo({
  394. url:'/pages/subPack/chooseCity?type=1'
  395. })
  396. }
  397. else {
  398. // 执行取消后的操作
  399. }
  400. }
  401. })
  402. }
  403. })
  404. },
  405. goDetail(item) {
  406. uni.navigateTo({
  407. url:'onlineBooking?naShopId='+item.shopId+'naUnionId='+item.unionId
  408. })
  409. /* if (this.userInfo) {
  410. uni.navigateTo({
  411. url:'onlineBooking?naShopId='+item.shopId+'naUnionId='+item.unionId
  412. })
  413. } else {
  414. this.authorizShow = true;
  415. return false;
  416. } */
  417. }
  418. },
  419. // 下拉刷新
  420. onPullDownRefresh() {
  421. this.getqueryShopList()
  422. setTimeout(function() {
  423. uni.stopPullDownRefresh();
  424. }, 1000);
  425. },
  426. }
  427. </script>
  428. <style scoped>
  429. .areaCkIcon{
  430. width: 38rpx;height: 28rpx;
  431. }
  432. .popup-content{
  433. width: 590rpx;
  434. background: #FFFFFF;
  435. height: 100vh;
  436. }
  437. .brandList{
  438. height:99vh;
  439. }
  440. .areaListLine{
  441. padding:30rpx 24rpx;
  442. color: #666666;
  443. font-size: 28rpx;
  444. border-bottom: 1px solid #eaeaea;
  445. display: flex;
  446. justify-content: space-between;
  447. line-height: 28rpx;
  448. }
  449. .areaActvie{
  450. background: #F19D01;
  451. color: #FFFFFF;
  452. }
  453. .jtbelow{
  454. width: 14rpx;height: 7rpx;
  455. margin-left: 10rpx;margin-top: 10rpx;
  456. }
  457. .regionSx{
  458. width: 2rpx;height: 33rpx;background:#EEEEEE;
  459. }
  460. .regionLine{
  461. display: flex;justify-content: center;font-size: 26rpx;
  462. width: 370rpx;line-height: 33rpx;color: #3C3C3C;
  463. }
  464. .regionBox{
  465. display: flex;
  466. justify-content: center;
  467. background: #FFFFFF;
  468. padding: 20rpx 0;
  469. margin-bottom: 20rpx;
  470. position: fixed;
  471. width: 100vw;
  472. top: 0;left: 0;
  473. }
  474. .box {
  475. min-height: 100vh;
  476. background-color: #F4F5F7;
  477. padding-bottom: 60rpx;
  478. }
  479. .shopdhBox{
  480. display: flex;padding-top: 16rpx;
  481. }
  482. .shopcall{
  483. display: flex;
  484. }
  485. .shopcallIcon{
  486. width: 23rpx;height: 23rpx;margin-top: 5rpx;
  487. }
  488. .shopcallTxt{
  489. color: #3C3C3C;font-size: 24rpx;
  490. line-height: 33rpx;padding-left: 8rpx;
  491. }
  492. .yuyuBtnBox{
  493. display: flex;
  494. font-size: 24rpx;
  495. color: #FF8113;
  496. align-items: center;
  497. justify-items: center;
  498. /* border-left: 1px solid #EEEEEE;
  499. padding-left: 20rpx; */
  500. }
  501. .shopline {
  502. margin: 0rpx 24rpx 20rpx;
  503. padding: 20rpx;
  504. background-color: #FFFFFF;
  505. border-radius: 10rpx;
  506. display: flex;
  507. }
  508. .nodataImg {
  509. width: 400rpx;
  510. padding-top: 100rpx;
  511. }
  512. .noTxt {
  513. font-size: 36rpx;
  514. color: #999999;
  515. padding-top: 50rpx;
  516. }
  517. .nodataBox {
  518. text-align: center;
  519. }
  520. .shopImg {
  521. width: 154rpx;
  522. height: 154rpx;
  523. border-radius: 10rpx;
  524. }
  525. .shopBox {
  526. padding-top: 30rpx;
  527. display: flex;
  528. }
  529. .flex {
  530. display: flex;
  531. justify-content: space-between;
  532. }
  533. .shopCont {
  534. padding-left: 22rpx;
  535. width: 520rpx;
  536. }
  537. .span1 {
  538. color: #FF4F00;
  539. font-size: 36rpx;
  540. }
  541. .span2 {
  542. color: #FF4F00;
  543. font-size: 22rpx;
  544. }
  545. .span3 {
  546. color: #333333;
  547. font-size: 22rpx;
  548. padding-left: 22rpx;
  549. }
  550. .shopBq {
  551. color: #FF4F00;
  552. font-size: 22rpx;
  553. border-radius: 4rpx;
  554. border: 1px solid #FF4F00;
  555. line-height: 30rpx;
  556. height: 30rpx;
  557. padding: 0rpx 5rpx;
  558. margin-top: 10rpx;
  559. }
  560. .brandsBg {
  561. display: flex;
  562. align-items: center;
  563. padding: 5rpx 0rpx;
  564. flex-wrap: wrap;
  565. height: 36rpx;
  566. /* 隐藏文字显示 ...不换行 */
  567. overflow: hidden;
  568. text-overflow: ellipsis;
  569. white-space: nowrap;
  570. }
  571. .brands {
  572. border-radius: 4rpx;
  573. padding: 0 5rpx;
  574. color: #F19D01;
  575. height: 28rpx;
  576. border: 1px solid #F19D01;
  577. font-size: 20rpx;
  578. line-height: 28rpx;
  579. margin: 5rpx 10rpx 5rpx 0rpx;
  580. }
  581. .timeBg {
  582. display: flex;
  583. }
  584. .shopTime {
  585. color: #666666;
  586. font-size: 24rpx;
  587. }
  588. .addressBox {
  589. color: #666666;
  590. font-size: 22rpx;
  591. }
  592. .shopNameSearchInput {
  593. width: 500rpx;
  594. }
  595. .colorCS {
  596. color: #FF4F00;
  597. }
  598. .shopbox {
  599. padding: 0 16rpx;
  600. }
  601. .shopCallImg {
  602. width: 38rpx;
  603. height: 46rpx;
  604. }
  605. .shopTop {
  606. display: flex;
  607. justify-content: space-between;
  608. }
  609. .shopright {
  610. padding-left: 20rpx;
  611. width: 510rpx;
  612. }
  613. .shopName {
  614. font-size: 28rpx;
  615. font-weight: bold;
  616. color: #333333;
  617. line-height: 40rpx;
  618. width: 450rpx;
  619. white-space: nowrap;
  620. overflow: hidden;
  621. text-overflow: ellipsis;
  622. }
  623. .shopScore1 {
  624. font-size: 36rpx;
  625. font-weight: bold;
  626. color: #FF4F00;
  627. height: 50rpx;
  628. line-height: 50rpx;
  629. }
  630. .shopScore11 {
  631. font-size: 22rpx;
  632. color: #FF4F00;
  633. margin-right: 14rpx;
  634. }
  635. .shopScore2 {
  636. font-size: 22rpx;
  637. color: #666666;
  638. margin-right: 14rpx;
  639. padding: 8rpx 0;
  640. }
  641. .shopScore3 {
  642. font-size: 22rpx;
  643. color: #333333;
  644. padding-left: 20rpx;
  645. }
  646. .Btn {
  647. width: 104rpx;
  648. height: 56rpx;
  649. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  650. border-radius: 6rpx;
  651. font-size: 26rpx;
  652. text-align: center;
  653. color: #FFFFFF;
  654. line-height: 56rpx;
  655. }
  656. .shopBottom {
  657. display: flex;
  658. }
  659. .shopBottomLeft {
  660. font-size: 25rpx;
  661. color: #666666;
  662. line-height: 30rpx;
  663. padding-top: 10rpx;
  664. display: flex;
  665. justify-content: space-between;
  666. padding-right: 10rpx;
  667. }
  668. .shopaddress {
  669. width: 400rpx;
  670. /* 隐藏文字显示 ...不换行 */
  671. overflow: hidden;
  672. text-overflow: ellipsis;
  673. white-space: nowrap;
  674. }
  675. .noMore {
  676. text-align: center;
  677. line-height: 50rpx;
  678. color: #999999;
  679. font-size: 28rpx;
  680. }
  681. .authorizBox{
  682. width: 100vw;
  683. height: 100vh;
  684. background: rgba(0, 0, 0, 0.5);
  685. position: fixed;
  686. top: 0;
  687. left: 0;
  688. }
  689. .authorizCont{
  690. margin-top: 30vh;
  691. width: 564rpx;
  692. height: 408rpx;
  693. background: #FFFFFF;
  694. border-radius: 24rpx;
  695. margin-left: 93rpx;
  696. position: relative;
  697. }
  698. .authorizCloseImg{
  699. width: 62rpx;
  700. height: 62rpx;
  701. }
  702. .sqLogoBox{
  703. width: 180rpx;
  704. height: 180rpx;
  705. background: #FFFFFF;
  706. border-radius: 90rpx;
  707. text-align: center;
  708. position: absolute;
  709. top: -50rpx;
  710. left: 192rpx;
  711. }
  712. .authorizName{
  713. color: #333333;
  714. line-height: 42rpx;
  715. font-size: 30rpx;
  716. text-align: center;
  717. padding-top: 58rpx;
  718. }
  719. .authorizMs{
  720. color: #999999;
  721. line-height: 36rpx;
  722. font-size: 26rpx;
  723. width: 452rpx;
  724. padding-top: 24rpx;
  725. text-align: center;
  726. margin-left: 56rpx;
  727. }
  728. .authorizContbutton{
  729. width: 422rpx;
  730. height: 88rpx;
  731. background: #D53533;
  732. border-radius: 44rpx;
  733. line-height: 88rpx;
  734. text-align: center;
  735. font-size:30rpx;
  736. color: #FFFFFF;
  737. margin-top: 62rpx;
  738. margin-left:71rpx;
  739. }
  740. </style>