ckshopList.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. <template>
  2. <view class="box">
  3. <view class="shopline" v-for="(item,index) in queryShopList" @click="goDetail(item)">
  4. <view class="shoplineLeft">
  5. <image :src="item.photoPath" mode="" class="shopImg" v-if="item.photoPath"></image>
  6. <image src="../../static/timg/noimg.png" mode="" class="shopImg" v-else></image>
  7. </view>
  8. <view class="shopright">
  9. <view class="shopTop">
  10. <view class="shopName">{{item.shopName}}</view>
  11. </view>
  12. <view class="brandsBg" v-if="item.brands">
  13. <view class="brands" v-for="(v,index2) in item.brands.split(',')">{{v}}</view>
  14. </view>
  15. <view class="shopTime"><span v-if="item.startTime">{{item.startTime}}</span> - <span
  16. v-if="item.endTime">{{item.endTime}}</span> </view>
  17. <view class="shopBottomLeft">
  18. <span class="shopaddress"
  19. v-if="item.address">{{item.provinceName}}{{item.cityName}}{{item.areaName}}{{item.address}}</span>
  20. <span v-if="item.distance&&item.distance!= '0.00'">{{item.distance}}km</span>
  21. </view>
  22. </view>
  23. </view>
  24. <!-- 上拉 加载更多 -->
  25. <view class="noMore" v-if="noMoreShow && (queryShopList.length!=0)">没有更多数据</view>
  26. <!-- 无数据空白页 -->
  27. <nodata v-if="queryShopList.length==0"></nodata>
  28. </view>
  29. </template>
  30. <script>
  31. import nodata from '../../components/nodata/nodata.vue'
  32. export default {
  33. components: {
  34. nodata,
  35. },
  36. data() {
  37. return {
  38. location: {
  39. lng: '',
  40. lat: '',
  41. },
  42. queryShopList: '',
  43. noMoreShow: false,
  44. goodsId:'',
  45. }
  46. },
  47. onLoad(opt) {
  48. var that = this;
  49. this.goodsId=opt.goodsId;
  50. uni.authorize({
  51. scope: 'scope.userLocation',
  52. success() {
  53. uni.getLocation({
  54. type: 'gcj02',
  55. success: function(res) {
  56. console.log(res)
  57. that.location.lat = res.latitude
  58. that.location.lng = res.longitude
  59. that.getqueryShopList() //获取全部门店列表
  60. },
  61. fail(err) {
  62. console.log(err)
  63. that.getqueryShopList() //获取全部门店列表
  64. }
  65. });
  66. },
  67. fail: (err) => {
  68. that.getqueryShopList();
  69. }})
  70. },
  71. methods: {
  72. getqueryShopList() {
  73. uni.showLoading({
  74. title: '加载中'
  75. })
  76. this.$http('openMall/openStoreList', {
  77. goodsId:this.goodsId,
  78. lat: this.location.lat ? this.location.lat : '',
  79. lng: this.location.lng ? this.location.lng : '',
  80. }, 'GET').then(res => {
  81. uni.hideLoading();
  82. this.queryShopList = res.data
  83. //console.log('list+=', this.queryShopList);
  84. })
  85. },
  86. goDetail(item) {
  87. this.$store.commit('mutationsckshopInfo', item)
  88. uni.navigateBack({
  89. delta:-1
  90. })
  91. // uni.navigateTo({
  92. // url: '../shop/shopDetail?id=' + item.shopId
  93. // })
  94. }
  95. },
  96. // 下拉刷新
  97. onPullDownRefresh() {
  98. this.getqueryShopList()
  99. setTimeout(function() {
  100. uni.stopPullDownRefresh();
  101. }, 1000);
  102. },
  103. }
  104. </script>
  105. <style scoped>
  106. .box {
  107. min-height: 100vh;
  108. background-color: #F4F5F7;
  109. padding-top: 20rpx;
  110. padding-bottom: 60rpx;
  111. }
  112. .shopline {
  113. margin: 0rpx 24rpx 20rpx;
  114. padding: 20rpx;
  115. background-color: #FFFFFF;
  116. border-radius: 10rpx;
  117. display: flex;
  118. }
  119. .nodataImg {
  120. width: 400rpx;
  121. padding-top: 100rpx;
  122. }
  123. .noTxt {
  124. font-size: 36rpx;
  125. color: #999999;
  126. padding-top: 50rpx;
  127. }
  128. .nodataBox {
  129. text-align: center;
  130. }
  131. .shopImg {
  132. width: 146rpx;
  133. height: 146rpx;
  134. border-radius: 6rpx;
  135. }
  136. .shopBox {
  137. padding-top: 30rpx;
  138. display: flex;
  139. }
  140. .flex {
  141. display: flex;
  142. justify-content: space-between;
  143. }
  144. .shopCont {
  145. padding-left: 22rpx;
  146. width: 520rpx;
  147. }
  148. .shopName {
  149. color: #333333;
  150. font-size: 26rpx;
  151. font-weight: 600;
  152. }
  153. .span1 {
  154. color: #FF4F00;
  155. font-size: 36rpx;
  156. }
  157. .span2 {
  158. color: #FF4F00;
  159. font-size: 22rpx;
  160. }
  161. .span3 {
  162. color: #333333;
  163. font-size: 22rpx;
  164. padding-left: 22rpx;
  165. }
  166. .shopBq {
  167. color: #FF4F00;
  168. font-size: 22rpx;
  169. border-radius: 4rpx;
  170. border: 1px solid #FF4F00;
  171. line-height: 30rpx;
  172. height: 30rpx;
  173. padding: 0rpx 5rpx;
  174. margin-top: 10rpx;
  175. }
  176. .brandsBg {
  177. display: flex;
  178. height: 38rpx;
  179. flex-wrap: wrap;
  180. align-items: center;
  181. overflow: hidden;
  182. padding: 5rpx 0rpx;
  183. }
  184. .brands {
  185. border-radius: 4rpx;
  186. padding: 0 5rpx;
  187. color: #F19D01;
  188. height: 28rpx;
  189. border: 1px solid #F19D01;
  190. font-size: 20rpx;
  191. line-height: 28rpx;
  192. margin: 5rpx 10rpx 5rpx 0rpx;
  193. }
  194. .timeBg {
  195. display: flex;
  196. }
  197. .shopTime {
  198. color: #666666;
  199. font-size: 22rpx;
  200. }
  201. .addressBox {
  202. color: #666666;
  203. font-size: 22rpx;
  204. }
  205. .shopNameSearchInput {
  206. width: 500rpx;
  207. }
  208. .colorCS {
  209. color: #FF4F00;
  210. }
  211. .shopbox {
  212. padding: 0 16rpx;
  213. }
  214. .shopImg {
  215. width: 146rpx;
  216. height: 146rpx;
  217. border-radius: 10rpx;
  218. }
  219. .shopCallImg {
  220. width: 38rpx;
  221. height: 46rpx;
  222. }
  223. .shopTop {
  224. display: flex;
  225. justify-content: space-between;
  226. width: 510rpx;
  227. }
  228. .shopright {
  229. padding-left: 20rpx;
  230. }
  231. .shopName {
  232. font-size: 26rpx;
  233. color: #333333;
  234. line-height: 37rpx;
  235. width: 450rpx;
  236. white-space: nowrap;
  237. overflow: hidden;
  238. text-overflow: ellipsis;
  239. }
  240. .shopScore1 {
  241. font-size: 36rpx;
  242. font-weight: bold;
  243. color: #FF4F00;
  244. height: 50rpx;
  245. line-height: 50rpx;
  246. }
  247. .shopScore11 {
  248. font-size: 22rpx;
  249. color: #FF4F00;
  250. margin-right: 14rpx;
  251. }
  252. .shopScore2 {
  253. font-size: 22rpx;
  254. color: #666666;
  255. margin-right: 14rpx;
  256. padding: 8rpx 0;
  257. }
  258. .shopScore3 {
  259. font-size: 22rpx;
  260. color: #333333;
  261. padding-left: 20rpx;
  262. }
  263. .Btn {
  264. width: 104rpx;
  265. height: 56rpx;
  266. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  267. border-radius: 6rpx;
  268. font-size: 26rpx;
  269. text-align: center;
  270. color: #FFFFFF;
  271. line-height: 56rpx;
  272. }
  273. .shopBottom {
  274. display: flex;
  275. }
  276. .shopBottomLeft {
  277. font-size: 25rpx;
  278. color: #666666;
  279. line-height: 30rpx;
  280. padding-top: 10rpx;
  281. display: flex;
  282. justify-content: space-between;
  283. padding-right: 10rpx;
  284. }
  285. .shopaddress {
  286. width: 400rpx;
  287. /* 隐藏文字显示 ...不换行 */
  288. overflow: hidden;
  289. text-overflow: ellipsis;
  290. white-space: nowrap;
  291. }
  292. .noMore {
  293. text-align: center;
  294. line-height: 50rpx;
  295. color: #999999;
  296. font-size: 28rpx;
  297. }
  298. </style>