orderShop.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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"
  14. @click="call(item.mobilePhone)"></image>
  15. </view>
  16. <view class="brandsBg">
  17. <span class="shopScore1" v-if="item.shopScore">{{item.shopScore}}</span>
  18. <span class="shopScore2" v-if="item.shopScore">分</span>
  19. <span class="shopScore2" v-if="!item.shopScore">暂无评分</span>
  20. <view class="brands" v-if="item.brands" v-for="(barnd,index2) in item.brands.split(',')">{{barnd}}</view>
  21. </view>
  22. <view class="timeBg">
  23. <view class="shopTime"><span v-if="item.startTime">{{item.startTime}}</span> - <span
  24. v-if="item.endTime">{{item.endTime}}</span> </view>
  25. <span class="shopScore3">服务次数 {{item.sheetSum}}</span>
  26. </view>
  27. <view class="shopBottom">
  28. <view class="shopBottomLeft">
  29. <span v-if="item.distance&&item.distance!= '0.00'">{{item.distance}}km</span>
  30. <span class="shopaddress">{{item.address}}</span>
  31. </view>
  32. <view v-if="fromChangeStore == 'true'">
  33. <view class="grayBtn" v-if="item.shopId == oldShopID" >确定</view>
  34. <view v-else class="Btn" @click="ckshop(item)">确定</view>
  35. </view>
  36. <view v-else class="Btn" @click="ckshop(item)">确定</view>
  37. </view>
  38. </view>
  39. </view>
  40. <nodata v-if="queryShopList.length<1"></nodata>
  41. </view>
  42. </view>
  43. </template>
  44. <script>
  45. import nodata from '@/components/nodata/nodata.vue'
  46. export default {
  47. components: {
  48. nodata
  49. },
  50. data() {
  51. return {
  52. orderData: '',
  53. currentMileage: '',
  54. location: '',
  55. queryShopList: [],
  56. fromChangeStore: '',
  57. oldShopID: '',
  58. brand:'',
  59. }
  60. },
  61. onShow() {
  62. },
  63. onLoad(opt) {
  64. this.orderData = opt.orderData;
  65. this.currentMileage = opt.currentMileage;
  66. var selectCity = uni.getStorageSync("selectCity");
  67. if(selectCity){
  68. this.location=selectCity
  69. }else{
  70. this.location = uni.getStorageSync("locationCity");
  71. }
  72. this.brand = opt.brand;
  73. this.getqueryShopList()
  74. this.fromChangeStore = opt.fromChangeStore;
  75. this.oldShopID = opt.oldShopID;
  76. },
  77. methods: {
  78. call(mobilePhone) {
  79. uni.makePhoneCall({
  80. phoneNumber: mobilePhone
  81. });
  82. },
  83. ckshop(item) {
  84. console.log(item)
  85. var that = this;
  86. if (that.fromChangeStore == 'true') {
  87. console.log('更换门店');
  88. // 从更换门店 进来
  89. uni.setStorage({
  90. key: 'changeStore',
  91. data: item,
  92. success: function() {
  93. uni.navigateBack({
  94. })
  95. }
  96. });
  97. } else {
  98. uni.setStorage({
  99. key: 'orderShop',
  100. data: item,
  101. success: function() {
  102. uni.navigateTo({
  103. url: 'confirmOrder?orderData=' + that.orderData + '&currentMileage=' +
  104. that.currentMileage
  105. })
  106. }
  107. });
  108. }
  109. },
  110. getqueryShopList() {
  111. uni.showLoading({});
  112. var params = {}
  113. if (this.location.lat) {
  114. params = {
  115. lat: this.location.lat,
  116. lng: this.location.lng,
  117. cityCode: this.location.cityCode,
  118. comprehensive: 1,
  119. brand:this.brand,
  120. }
  121. } else {
  122. params = {
  123. cityCode: this.location.cityCode,
  124. comprehensive: 1,
  125. brand:this.brand,
  126. }
  127. }
  128. this.$http('worldKeepCar/worldHome/getWorldShopInfoList', params, 'GET').then(res => {
  129. uni.hideLoading();
  130. this.queryShopList = res.data
  131. // 处理 undefined和null转为空白字符串
  132. this.queryShopList.forEach((item, index) => {
  133. for (const key in item) {
  134. item[key] = this.$praseStrEmpty(item[key])
  135. }
  136. })
  137. })
  138. },
  139. }
  140. }
  141. </script>
  142. <style scoped>
  143. .box {
  144. min-height: 100vh;
  145. background: #F4F5F7;
  146. padding: 20rpx 0;
  147. }
  148. .topTIs {
  149. font-size: 26rpx;
  150. text-align: center;
  151. color: #C8841C;
  152. height: 72rpx;
  153. background: #FFF7EB;
  154. line-height: 72rpx;
  155. margin-bottom: 20rpx;
  156. }
  157. .shopbox {
  158. padding: 0 16rpx;
  159. }
  160. .shopline {
  161. padding: 20rpx;
  162. background: #FFFFFF;
  163. border-radius: 10rpx;
  164. margin-top: 20rpx;
  165. display: flex;
  166. }
  167. .shopImg {
  168. width: 146rpx;
  169. height: 146rpx;
  170. border-radius: 10rpx;
  171. }
  172. .shopCallImg {
  173. width: 38rpx;
  174. height: 46rpx;
  175. }
  176. .shopTop {
  177. display: flex;
  178. justify-content: space-between;
  179. width: 510rpx;
  180. }
  181. .shopright {
  182. padding-left: 20rpx;
  183. }
  184. .shopName {
  185. font-size: 26rpx;
  186. color: #333333;
  187. line-height: 37rpx;
  188. width: 450rpx;
  189. white-space: nowrap;
  190. overflow: hidden;
  191. text-overflow: ellipsis;
  192. }
  193. .shopScore1 {
  194. font-size: 36rpx;
  195. color: #FF4F00;
  196. }
  197. .shopScore2 {
  198. font-size: 22rpx;
  199. color: #FF4F00;
  200. margin-right: 14rpx;
  201. }
  202. .shopScore3 {
  203. font-size: 22rpx;
  204. color: #333333;
  205. padding-left: 20rpx;
  206. }
  207. .brandsBg {
  208. display: flex;
  209. align-items: center;
  210. }
  211. .brands {
  212. border-radius: 4rpx;
  213. padding: 0 5rpx;
  214. color: #FF5800;
  215. height: 28rpx;
  216. border: 1px solid #FF5800;
  217. margin-right: 5rpx;
  218. font-size: 20rpx;
  219. line-height: 28rpx;
  220. }
  221. .timeBg {
  222. display: flex;
  223. align-items: center;
  224. padding-top: 10rpx;
  225. }
  226. .shopTime {
  227. color: #666666;
  228. font-size: 22rpx;
  229. }
  230. .Btn {
  231. width: 104rpx;
  232. height: 56rpx;
  233. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  234. border-radius: 6rpx;
  235. font-size: 26rpx;
  236. text-align: center;
  237. color: #FFFFFF;
  238. line-height: 56rpx;
  239. }
  240. .grayBtn {
  241. width: 104rpx;
  242. height: 56rpx;
  243. background-color: #CCCCCC;
  244. border-radius: 6rpx;
  245. font-size: 26rpx;
  246. text-align: center;
  247. color: #FFFFFF;
  248. line-height: 56rpx;
  249. }
  250. .shopBottom {
  251. display: flex;
  252. }
  253. .shopBottomLeft {
  254. width: 400rpx;
  255. font-size: 22rpx;
  256. color: #666666;
  257. line-height: 30rpx;
  258. padding-top: 10rpx;
  259. }
  260. .shopaddress {
  261. padding-left: 10rpx;
  262. }
  263. </style>