shopList.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  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. </view>
  73. </template>
  74. <script>
  75. import nodata from '../../components/nodata/nodata.vue'
  76. export default {
  77. components: {
  78. nodata,
  79. },
  80. data() {
  81. return {
  82. location: {
  83. lng: '',
  84. lat: '',
  85. },
  86. queryShopList: '',
  87. noMoreShow: false,
  88. regionName:'',
  89. twoRegionName:'',
  90. cityName:'城市',
  91. area:'',
  92. cityCode:'',
  93. areaList:'',
  94. index:'',
  95. areaName:'区域',
  96. loading:false,
  97. }
  98. },
  99. onLoad() {
  100. var that = this;
  101. uni.removeStorageSync('selectCity');
  102. uni.authorize({
  103. scope: 'scope.userLocation',
  104. success() {
  105. uni.getLocation({
  106. type: 'gcj02',
  107. success: function(res) {
  108. console.log(res)
  109. that.location.lat = res.latitude
  110. that.location.lng = res.longitude
  111. that.getAdress();
  112. //that.getqueryShopList() //获取全部门店列表
  113. },
  114. fail(err) {
  115. console.log("定位失败")
  116. that.getqueryShopList();
  117. }
  118. });
  119. },
  120. fail: (err) => {
  121. that.getqueryShopList();
  122. }})
  123. // that.getqueryShopList();
  124. },
  125. onShow() {
  126. const selectCity = uni.getStorageSync('selectCity');
  127. //console.log("onShow")
  128. //console.log(selectCity)
  129. if(selectCity){
  130. this.cityName=selectCity.city
  131. this.cityCode=selectCity.code
  132. this.areaName='区域'
  133. this.area=''
  134. this.getAreaList()
  135. this.getqueryShopList() //获取门店列表
  136. }
  137. },
  138. methods: {
  139. quCilck(){
  140. this.$refs.popup.open("right")
  141. this.popupShow=true;
  142. },
  143. gocity(){
  144. uni.navigateTo({
  145. url:'/pages/subPack/chooseCity'
  146. })
  147. },
  148. checkarea(item){
  149. if(this.area==item.code){
  150. this.areaName='区域'
  151. this.area=''
  152. this.getqueryShopList() //获取门店列表
  153. }else{
  154. this.areaName=item.area
  155. this.area=item.code
  156. this.getqueryShopList() //获取门店列表
  157. }
  158. this.$refs.popup.close()
  159. },
  160. bindPickerChange(e){
  161. //console.log(e)
  162. this.areaName=this.areaList[e.detail.value].area
  163. this.area=this.areaList[e.detail.value].code
  164. this.getqueryShopList() //获取门店列表
  165. },
  166. cancelHandling(){
  167. this.areaName='区域'
  168. this.area=''
  169. this.getqueryShopList() //获取门店列表
  170. },
  171. makePhoneCall(num){
  172. uni.makePhoneCall({
  173. phoneNumber:num
  174. });
  175. },
  176. goMap(item){
  177. var that = this;
  178. if (!item.lat || !item.lng) {
  179. uni.showToast({
  180. title: '该店铺未设置定位',
  181. icon: 'none',
  182. duration: 3000
  183. });
  184. } else {
  185. uni.openLocation({
  186. latitude: Number(item.lat),
  187. longitude: Number(item.lng),
  188. name: item.shopName,
  189. address: item.provinceName + item.cityName + item.areaName +
  190. item.address,
  191. success: function() {
  192. console.log('success');
  193. },
  194. fail(err) {
  195. console.log(err)
  196. }
  197. });
  198. }
  199. },
  200. getAdress(){
  201. var that=this;
  202. var location = this.location.lng + ',' + this.location.lat
  203. console.log('location'+location)
  204. uni.request({
  205. url: 'https://restapi.amap.com/v3/geocode/regeo',
  206. data: {
  207. key: '389a059efa3f499d9145eb84b1c3248d',
  208. location: location,
  209. },
  210. dataType: "json",
  211. success: (res) => {
  212. console.log('定位城市', res);
  213. if(res.data.regeocode){
  214. console.log("城市名称")
  215. console.log(res.data.regeocode.addressComponent.city)
  216. // console.log(res.data.pois[0].cityname)
  217. let cityname = res.data.regeocode.addressComponent.city;
  218. var cityCode = res.data.regeocode.addressComponent.adcode
  219. cityCode = cityCode.slice(0, -2)
  220. cityCode = cityCode + '00'
  221. this.cityName = cityname
  222. this.cityCode = cityCode
  223. that.getqueryShopList() //获取全部门店列表
  224. that.getAreaList()
  225. }else{
  226. console.log("接口获取失败")
  227. }
  228. }
  229. });
  230. },
  231. getAreaList(){
  232. this.$http('opencarOwnerHome/shop-area-list', {
  233. city:this.cityCode
  234. }, 'GET').then(res => {
  235. this.areaList=res.data
  236. })
  237. },
  238. getqueryShopList() {
  239. uni.showLoading({
  240. title: '加载中'
  241. })
  242. this.loading=false;
  243. this.$http('opencarOwnerHome/queryShopInfoList', {
  244. lat: this.location.lat ? this.location.lat : '',
  245. lng: this.location.lng ? this.location.lng : '',
  246. city:this.cityCode,
  247. area:this.area
  248. }, 'GET').then(res => {
  249. uni.hideLoading();
  250. this.queryShopList = res.data.shop;
  251. this.loading=true;
  252. //console.log('list+=', this.queryShopList);
  253. })
  254. },
  255. goDetail(item) {
  256. // uni.navigateTo({
  257. // url: '../shop/shopDetail?id=' + item.shopId
  258. // })
  259. uni.navigateTo({
  260. url:'onlineBooking?naShopId='+item.shopId
  261. })
  262. }
  263. },
  264. // 下拉刷新
  265. onPullDownRefresh() {
  266. this.getqueryShopList()
  267. setTimeout(function() {
  268. uni.stopPullDownRefresh();
  269. }, 1000);
  270. },
  271. }
  272. </script>
  273. <style scoped>
  274. .areaCkIcon{
  275. width: 38rpx;height: 28rpx;
  276. }
  277. .popup-content{
  278. width: 590rpx;
  279. background: #FFFFFF;
  280. height: 100vh;
  281. }
  282. .brandList{
  283. height:99vh;
  284. }
  285. .areaListLine{
  286. padding:30rpx 24rpx;
  287. color: #666666;
  288. font-size: 28rpx;
  289. border-bottom: 1px solid #eaeaea;
  290. display: flex;
  291. justify-content: space-between;
  292. line-height: 28rpx;
  293. }
  294. .areaActvie{
  295. background: #F19D01;
  296. color: #FFFFFF;
  297. }
  298. .jtbelow{
  299. width: 14rpx;height: 7rpx;
  300. margin-left: 10rpx;margin-top: 10rpx;
  301. }
  302. .regionSx{
  303. width: 2rpx;height: 33rpx;background:#EEEEEE;
  304. }
  305. .regionLine{
  306. display: flex;justify-content: center;font-size: 26rpx;
  307. width: 370rpx;line-height: 33rpx;color: #3C3C3C;
  308. }
  309. .regionBox{
  310. display: flex;
  311. justify-content: center;
  312. background: #FFFFFF;
  313. padding: 20rpx 0;
  314. margin-bottom: 20rpx;
  315. position: fixed;
  316. width: 100vw;
  317. top: 0;left: 0;
  318. }
  319. .box {
  320. min-height: 100vh;
  321. background-color: #F4F5F7;
  322. padding-bottom: 60rpx;
  323. }
  324. .shopdhBox{
  325. display: flex;padding-top: 16rpx;
  326. }
  327. .shopcall{
  328. display: flex;
  329. }
  330. .shopcallIcon{
  331. width: 23rpx;height: 23rpx;margin-top: 5rpx;
  332. }
  333. .shopcallTxt{
  334. color: #3C3C3C;font-size: 24rpx;
  335. line-height: 33rpx;padding-left: 8rpx;
  336. }
  337. .yuyuBtnBox{
  338. display: flex;
  339. font-size: 24rpx;
  340. color: #FF8113;
  341. align-items: center;
  342. justify-items: center;
  343. /* border-left: 1px solid #EEEEEE;
  344. padding-left: 20rpx; */
  345. }
  346. .shopline {
  347. margin: 0rpx 24rpx 20rpx;
  348. padding: 20rpx;
  349. background-color: #FFFFFF;
  350. border-radius: 10rpx;
  351. display: flex;
  352. }
  353. .nodataImg {
  354. width: 400rpx;
  355. padding-top: 100rpx;
  356. }
  357. .noTxt {
  358. font-size: 36rpx;
  359. color: #999999;
  360. padding-top: 50rpx;
  361. }
  362. .nodataBox {
  363. text-align: center;
  364. }
  365. .shopImg {
  366. width: 154rpx;
  367. height: 154rpx;
  368. border-radius: 10rpx;
  369. }
  370. .shopBox {
  371. padding-top: 30rpx;
  372. display: flex;
  373. }
  374. .flex {
  375. display: flex;
  376. justify-content: space-between;
  377. }
  378. .shopCont {
  379. padding-left: 22rpx;
  380. width: 520rpx;
  381. }
  382. .span1 {
  383. color: #FF4F00;
  384. font-size: 36rpx;
  385. }
  386. .span2 {
  387. color: #FF4F00;
  388. font-size: 22rpx;
  389. }
  390. .span3 {
  391. color: #333333;
  392. font-size: 22rpx;
  393. padding-left: 22rpx;
  394. }
  395. .shopBq {
  396. color: #FF4F00;
  397. font-size: 22rpx;
  398. border-radius: 4rpx;
  399. border: 1px solid #FF4F00;
  400. line-height: 30rpx;
  401. height: 30rpx;
  402. padding: 0rpx 5rpx;
  403. margin-top: 10rpx;
  404. }
  405. .brandsBg {
  406. display: flex;
  407. align-items: center;
  408. padding: 5rpx 0rpx;
  409. flex-wrap: wrap;
  410. height: 36rpx;
  411. /* 隐藏文字显示 ...不换行 */
  412. overflow: hidden;
  413. text-overflow: ellipsis;
  414. white-space: nowrap;
  415. }
  416. .brands {
  417. border-radius: 4rpx;
  418. padding: 0 5rpx;
  419. color: #F19D01;
  420. height: 28rpx;
  421. border: 1px solid #F19D01;
  422. font-size: 20rpx;
  423. line-height: 28rpx;
  424. margin: 5rpx 10rpx 5rpx 0rpx;
  425. }
  426. .timeBg {
  427. display: flex;
  428. }
  429. .shopTime {
  430. color: #666666;
  431. font-size: 24rpx;
  432. }
  433. .addressBox {
  434. color: #666666;
  435. font-size: 22rpx;
  436. }
  437. .shopNameSearchInput {
  438. width: 500rpx;
  439. }
  440. .colorCS {
  441. color: #FF4F00;
  442. }
  443. .shopbox {
  444. padding: 0 16rpx;
  445. }
  446. .shopCallImg {
  447. width: 38rpx;
  448. height: 46rpx;
  449. }
  450. .shopTop {
  451. display: flex;
  452. justify-content: space-between;
  453. }
  454. .shopright {
  455. padding-left: 20rpx;
  456. width: 510rpx;
  457. }
  458. .shopName {
  459. font-size: 28rpx;
  460. font-weight: bold;
  461. color: #333333;
  462. line-height: 40rpx;
  463. width: 450rpx;
  464. white-space: nowrap;
  465. overflow: hidden;
  466. text-overflow: ellipsis;
  467. }
  468. .shopScore1 {
  469. font-size: 36rpx;
  470. font-weight: bold;
  471. color: #FF4F00;
  472. height: 50rpx;
  473. line-height: 50rpx;
  474. }
  475. .shopScore11 {
  476. font-size: 22rpx;
  477. color: #FF4F00;
  478. margin-right: 14rpx;
  479. }
  480. .shopScore2 {
  481. font-size: 22rpx;
  482. color: #666666;
  483. margin-right: 14rpx;
  484. padding: 8rpx 0;
  485. }
  486. .shopScore3 {
  487. font-size: 22rpx;
  488. color: #333333;
  489. padding-left: 20rpx;
  490. }
  491. .Btn {
  492. width: 104rpx;
  493. height: 56rpx;
  494. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  495. border-radius: 6rpx;
  496. font-size: 26rpx;
  497. text-align: center;
  498. color: #FFFFFF;
  499. line-height: 56rpx;
  500. }
  501. .shopBottom {
  502. display: flex;
  503. }
  504. .shopBottomLeft {
  505. font-size: 25rpx;
  506. color: #666666;
  507. line-height: 30rpx;
  508. padding-top: 10rpx;
  509. display: flex;
  510. justify-content: space-between;
  511. padding-right: 10rpx;
  512. }
  513. .shopaddress {
  514. width: 400rpx;
  515. /* 隐藏文字显示 ...不换行 */
  516. overflow: hidden;
  517. text-overflow: ellipsis;
  518. white-space: nowrap;
  519. }
  520. .noMore {
  521. text-align: center;
  522. line-height: 50rpx;
  523. color: #999999;
  524. font-size: 28rpx;
  525. }
  526. </style>