orderShop.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <template>
  2. <view class="box">
  3. <view class="topTIs">门店确认收货后,才可选择预约时间</view>
  4. <view class="shopbox">
  5. <view class="shopline" v-for="(item,index) in queryShopList">
  6. <view class="shoplineLeft">
  7. <image :src="item.photoPath" mode="" class="shopImg" v-if="item.photoPath"></image>
  8. <image src="../../static/img/noimg.png" mode="" class="shopImg" v-else></image>
  9. </view>
  10. <view class="shopright">
  11. <view class="shopTop">
  12. <view class="shopName">{{item.shopName}}</view>
  13. <image src="../../static/img/shopcall.png" mode="" class="shopCallImg"></image>
  14. </view>
  15. <view class="shopScore">
  16. <span class="shopScore1" v-if="item.shopScore">{{item.shopScore}}</span>
  17. <span class="shopScore2" v-if="item.shopScore">分</span>
  18. <span class="shopScore2" v-if="!item.shopScore">暂无评分</span>
  19. <span class="shopScore3">服务次数 {{item.sheetSum}}</span>
  20. </view>
  21. <view class="shopTime"><span v-if="item.startTime">{{item.startTime}}</span> - <span v-if="item.endTime">{{item.endTime}}</span> </view>
  22. <view class="shopBottom">
  23. <view class="shopBottomLeft">
  24. <span v-if="item.distance&&item.distance!= '0.00'">{{item.distance}}km</span>
  25. <span class="shopaddress">{{item.address}}</span>
  26. </view>
  27. <view class="Btn" @click="ckshop(item)">确定</view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. components: {
  37. },
  38. data() {
  39. return {
  40. orderData:'',
  41. currentMileage:'',
  42. location:'',
  43. queryShopList:[],
  44. }
  45. },
  46. onShow() {
  47. },
  48. onLoad(opt) {
  49. this.orderData=opt.orderData;
  50. this.currentMileage=opt.currentMileage;
  51. this.location=uni.getStorageSync("location");
  52. this.getqueryShopList()
  53. },
  54. methods: {
  55. ckshop(item){
  56. console.log(item)
  57. var that=this;
  58. uni.setStorage({
  59. key: 'orderShop',
  60. data: item,
  61. success: function() {
  62. uni.navigateTo({
  63. url:'confirmOrder?orderData='+that.orderData+'&currentMileage='+that.currentMileage
  64. })
  65. }
  66. });
  67. },
  68. getqueryShopList(){
  69. uni.showLoading({ });
  70. var params={}
  71. if(this.location.lat){
  72. params={
  73. lat:this.location.lat,
  74. lng:this.location.lng,
  75. cityCode:this.location.cityCode,
  76. }
  77. }else{
  78. }
  79. this.$http('worldKeepCar/worldHome/getWorldShopInfoList', params,'GET').then(res => {
  80. uni.hideLoading();
  81. this.queryShopList=res.data
  82. })
  83. },
  84. }
  85. }
  86. </script>
  87. <style scoped>
  88. .box{
  89. min-height: 100vh;
  90. background:#F4F5F7 ;
  91. }
  92. .topTIs{
  93. font-size: 26rpx;
  94. text-align: center;
  95. color: #C8841C;
  96. height: 72rpx;
  97. background: #FFF7EB;
  98. line-height: 72rpx;
  99. margin-bottom: 20rpx;
  100. }
  101. .shopbox{
  102. padding:0 16rpx;
  103. }
  104. .shopline{
  105. padding: 20rpx;
  106. background: #FFFFFF;
  107. border-radius: 10rpx;
  108. margin-top: 20rpx;
  109. display: flex;
  110. }
  111. .shopImg{
  112. width: 146rpx;
  113. height: 146rpx;
  114. border-radius: 10rpx;
  115. }
  116. .shopCallImg{
  117. width: 38rpx;
  118. height: 46rpx;
  119. }
  120. .shopTop{
  121. display: flex;
  122. justify-content: space-between;
  123. width: 510rpx;
  124. }
  125. .shopright{
  126. padding-left: 20rpx;
  127. }
  128. .shopName{
  129. font-size: 26rpx;
  130. color: #333333;
  131. line-height: 37rpx;
  132. width:450rpx;
  133. white-space: nowrap;
  134. overflow: hidden;
  135. text-overflow: ellipsis;
  136. }
  137. .shopScore1{
  138. font-size: 36rpx;
  139. color: #FF4F00;
  140. }
  141. .shopScore2{
  142. font-size: 22rpx;
  143. color: #FF4F00;
  144. }
  145. .shopScore3{
  146. font-size: 22rpx;
  147. color: #333333;
  148. padding-left: 20rpx;
  149. }
  150. .shopTime{
  151. font-size: 22rpx;
  152. color: #666666;
  153. line-height: 30rpx;
  154. padding-top: 10rpx;
  155. }
  156. .Btn{
  157. width: 104rpx;
  158. height: 56rpx;
  159. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  160. border-radius: 6rpx;
  161. font-size: 26rpx;
  162. text-align: center;
  163. color: #FFFFFF;
  164. line-height: 56rpx;
  165. }
  166. .shopBottom{
  167. display: flex;
  168. }
  169. .shopBottomLeft{
  170. width: 400rpx;
  171. font-size: 22rpx;
  172. color: #666666;
  173. line-height: 30rpx;
  174. padding-top: 10rpx;
  175. }
  176. .shopaddress{
  177. padding-left: 10rpx;
  178. }
  179. </style>