ckshopList.vue 12 KB

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