shopList.vue 23 KB

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