shopList.vue 17 KB

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