orderShop.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. fromChangeStore:'',
  45. }
  46. },
  47. onShow() {
  48. },
  49. onLoad(opt) {
  50. this.orderData=opt.orderData;
  51. this.currentMileage=opt.currentMileage;
  52. this.location=uni.getStorageSync("location");
  53. this.getqueryShopList()
  54. this.fromChangeStore = opt.fromChangeStore;
  55. },
  56. methods: {
  57. ckshop(item){
  58. console.log(item)
  59. var that=this;
  60. if (that.fromChangeStore == 'true') {
  61. console.log('更换门店');
  62. // 从更换门店 进来
  63. uni.setStorage({
  64. key: 'changeStore',
  65. data: item,
  66. success: function() {
  67. uni.navigateBack({
  68. })
  69. }
  70. });
  71. }
  72. else{
  73. uni.setStorage({
  74. key: 'orderShop',
  75. data: item,
  76. success: function() {
  77. uni.navigateTo({
  78. url:'confirmOrder?orderData='+that.orderData+'&currentMileage='+that.currentMileage
  79. })
  80. }
  81. });
  82. }
  83. },
  84. getqueryShopList(){
  85. uni.showLoading({ });
  86. var params={}
  87. if(this.location.lat){
  88. params={
  89. lat:this.location.lat,
  90. lng:this.location.lng,
  91. cityCode:this.location.cityCode,
  92. }
  93. }else{
  94. }
  95. this.$http('worldKeepCar/worldHome/getWorldShopInfoList', params,'GET').then(res => {
  96. uni.hideLoading();
  97. this.queryShopList=res.data
  98. })
  99. },
  100. }
  101. }
  102. </script>
  103. <style scoped>
  104. .box{
  105. min-height: 100vh;
  106. background:#F4F5F7 ;
  107. }
  108. .topTIs{
  109. font-size: 26rpx;
  110. text-align: center;
  111. color: #C8841C;
  112. height: 72rpx;
  113. background: #FFF7EB;
  114. line-height: 72rpx;
  115. margin-bottom: 20rpx;
  116. }
  117. .shopbox{
  118. padding:0 16rpx;
  119. }
  120. .shopline{
  121. padding: 20rpx;
  122. background: #FFFFFF;
  123. border-radius: 10rpx;
  124. margin-top: 20rpx;
  125. display: flex;
  126. }
  127. .shopImg{
  128. width: 146rpx;
  129. height: 146rpx;
  130. border-radius: 10rpx;
  131. }
  132. .shopCallImg{
  133. width: 38rpx;
  134. height: 46rpx;
  135. }
  136. .shopTop{
  137. display: flex;
  138. justify-content: space-between;
  139. width: 510rpx;
  140. }
  141. .shopright{
  142. padding-left: 20rpx;
  143. }
  144. .shopName{
  145. font-size: 26rpx;
  146. color: #333333;
  147. line-height: 37rpx;
  148. width:450rpx;
  149. white-space: nowrap;
  150. overflow: hidden;
  151. text-overflow: ellipsis;
  152. }
  153. .shopScore1{
  154. font-size: 36rpx;
  155. color: #FF4F00;
  156. }
  157. .shopScore2{
  158. font-size: 22rpx;
  159. color: #FF4F00;
  160. }
  161. .shopScore3{
  162. font-size: 22rpx;
  163. color: #333333;
  164. padding-left: 20rpx;
  165. }
  166. .shopTime{
  167. font-size: 22rpx;
  168. color: #666666;
  169. line-height: 30rpx;
  170. padding-top: 10rpx;
  171. }
  172. .Btn{
  173. width: 104rpx;
  174. height: 56rpx;
  175. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  176. border-radius: 6rpx;
  177. font-size: 26rpx;
  178. text-align: center;
  179. color: #FFFFFF;
  180. line-height: 56rpx;
  181. }
  182. .shopBottom{
  183. display: flex;
  184. }
  185. .shopBottomLeft{
  186. width: 400rpx;
  187. font-size: 22rpx;
  188. color: #666666;
  189. line-height: 30rpx;
  190. padding-top: 10rpx;
  191. }
  192. .shopaddress{
  193. padding-left: 10rpx;
  194. }
  195. </style>