shopList.vue 19 KB

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