shopList.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  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/img/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. }
  45. },
  46. onLoad() {
  47. var that = this;
  48. uni.getLocation({
  49. type: 'gcj02',
  50. success: function(res) {
  51. console.log(res)
  52. that.location.lat = res.latitude
  53. that.location.lng = res.longitude
  54. that.getqueryShopList() //获取全部门店列表
  55. },
  56. fail(err) {
  57. }
  58. });
  59. },
  60. methods: {
  61. getqueryShopList() {
  62. uni.showLoading({
  63. title: '加载中'
  64. })
  65. this.$http('opencarOwnerHome/queryShopInfoList', {
  66. lat: this.location.lat ? this.location.lat : '',
  67. lng: this.location.lng ? this.location.lng : '',
  68. }, 'GET').then(res => {
  69. uni.hideLoading();
  70. this.queryShopList = res.data
  71. console.log('list+=', this.queryShopList);
  72. })
  73. },
  74. goDetail(item) {
  75. uni.navigateTo({
  76. url: '../shop/shopDetail?id=' + item.shopId
  77. })
  78. }
  79. },
  80. // 下拉刷新
  81. onPullDownRefresh() {
  82. this.getqueryShopList()
  83. setTimeout(function() {
  84. uni.stopPullDownRefresh();
  85. }, 1000);
  86. },
  87. }
  88. </script>
  89. <style scoped>
  90. .box {
  91. min-height: 100vh;
  92. background-color: #F4F5F7;
  93. padding-top: 20rpx;
  94. padding-bottom: 60rpx;
  95. }
  96. .shopline {
  97. margin: 0rpx 24rpx 20rpx;
  98. padding: 20rpx;
  99. background-color: #FFFFFF;
  100. border-radius: 10rpx;
  101. display: flex;
  102. }
  103. .nodataImg {
  104. width: 400rpx;
  105. padding-top: 100rpx;
  106. }
  107. .noTxt {
  108. font-size: 36rpx;
  109. color: #999999;
  110. padding-top: 50rpx;
  111. }
  112. .nodataBox {
  113. text-align: center;
  114. }
  115. .shopImg {
  116. width: 146rpx;
  117. height: 146rpx;
  118. border-radius: 6rpx;
  119. }
  120. .shopBox {
  121. padding-top: 30rpx;
  122. display: flex;
  123. }
  124. .flex {
  125. display: flex;
  126. justify-content: space-between;
  127. }
  128. .shopCont {
  129. padding-left: 22rpx;
  130. width: 520rpx;
  131. }
  132. .shopName {
  133. color: #333333;
  134. font-size: 26rpx;
  135. font-weight: 600;
  136. }
  137. .span1 {
  138. color: #FF4F00;
  139. font-size: 36rpx;
  140. }
  141. .span2 {
  142. color: #FF4F00;
  143. font-size: 22rpx;
  144. }
  145. .span3 {
  146. color: #333333;
  147. font-size: 22rpx;
  148. padding-left: 22rpx;
  149. }
  150. .shopBq {
  151. color: #FF4F00;
  152. font-size: 22rpx;
  153. border-radius: 4rpx;
  154. border: 1px solid #FF4F00;
  155. line-height: 30rpx;
  156. height: 30rpx;
  157. padding: 0rpx 5rpx;
  158. margin-top: 10rpx;
  159. }
  160. .brandsBg {
  161. display: flex;
  162. flex-wrap: wrap;
  163. align-items: center;
  164. overflow: hidden;
  165. padding: 5rpx 0rpx;
  166. }
  167. .brands {
  168. border-radius: 4rpx;
  169. padding: 0 5rpx;
  170. color: #F19D01;
  171. height: 28rpx;
  172. border: 1px solid #F19D01;
  173. font-size: 20rpx;
  174. line-height: 28rpx;
  175. margin: 5rpx 10rpx 5rpx 0rpx;
  176. }
  177. .timeBg {
  178. display: flex;
  179. }
  180. .shopTime {
  181. color: #666666;
  182. font-size: 22rpx;
  183. }
  184. .addressBox {
  185. color: #666666;
  186. font-size: 22rpx;
  187. }
  188. .shopNameSearchInput {
  189. width: 500rpx;
  190. }
  191. .colorCS {
  192. color: #FF4F00;
  193. }
  194. .shopbox {
  195. padding: 0 16rpx;
  196. }
  197. .shopImg {
  198. width: 146rpx;
  199. height: 146rpx;
  200. border-radius: 10rpx;
  201. }
  202. .shopCallImg {
  203. width: 38rpx;
  204. height: 46rpx;
  205. }
  206. .shopTop {
  207. display: flex;
  208. justify-content: space-between;
  209. width: 510rpx;
  210. }
  211. .shopright {
  212. padding-left: 20rpx;
  213. }
  214. .shopName {
  215. font-size: 26rpx;
  216. color: #333333;
  217. line-height: 37rpx;
  218. width: 450rpx;
  219. white-space: nowrap;
  220. overflow: hidden;
  221. text-overflow: ellipsis;
  222. }
  223. .shopScore1 {
  224. font-size: 36rpx;
  225. font-weight: bold;
  226. color: #FF4F00;
  227. height: 50rpx;
  228. line-height: 50rpx;
  229. }
  230. .shopScore11 {
  231. font-size: 22rpx;
  232. color: #FF4F00;
  233. margin-right: 14rpx;
  234. }
  235. .shopScore2 {
  236. font-size: 22rpx;
  237. color: #666666;
  238. margin-right: 14rpx;
  239. padding: 8rpx 0;
  240. }
  241. .shopScore3 {
  242. font-size: 22rpx;
  243. color: #333333;
  244. padding-left: 20rpx;
  245. }
  246. .Btn {
  247. width: 104rpx;
  248. height: 56rpx;
  249. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  250. border-radius: 6rpx;
  251. font-size: 26rpx;
  252. text-align: center;
  253. color: #FFFFFF;
  254. line-height: 56rpx;
  255. }
  256. .shopBottom {
  257. display: flex;
  258. }
  259. .shopBottomLeft {
  260. font-size: 25rpx;
  261. color: #666666;
  262. line-height: 30rpx;
  263. padding-top: 10rpx;
  264. display: flex;
  265. justify-content: space-between;
  266. padding-right: 10rpx;
  267. }
  268. .shopaddress {
  269. width: 400rpx;
  270. /* 隐藏文字显示 ...不换行 */
  271. overflow: hidden;
  272. text-overflow: ellipsis;
  273. white-space: nowrap;
  274. }
  275. .noMore {
  276. text-align: center;
  277. line-height: 50rpx;
  278. color: #999999;
  279. font-size: 28rpx;
  280. }
  281. </style>