orderShop.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  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. var dingw = uni.getStorageSync("locationCity")
  68. if(selectCity){
  69. var objdata={
  70. cityCode:selectCity.code,
  71. cityName:selectCity.city,
  72. }
  73. if(dingw.cityName==selectCity.city){
  74. objdata.lat=dingw.lat
  75. objdata.lng=dingw.lng
  76. }
  77. this.location=objdata
  78. }else{
  79. this.location = uni.getStorageSync("locationCity");
  80. }
  81. this.brand = opt.brand;
  82. this.getqueryShopList()
  83. this.fromChangeStore = opt.fromChangeStore;
  84. this.oldShopID = opt.oldShopID;
  85. },
  86. methods: {
  87. call(mobilePhone) {
  88. uni.makePhoneCall({
  89. phoneNumber: mobilePhone
  90. });
  91. },
  92. ckshop(item) {
  93. console.log(item)
  94. var that = this;
  95. if (that.fromChangeStore == 'true') {
  96. console.log('更换门店');
  97. // 从更换门店 进来
  98. uni.setStorage({
  99. key: 'changeStore',
  100. data: item,
  101. success: function() {
  102. uni.navigateBack({
  103. })
  104. }
  105. });
  106. } else {
  107. uni.setStorage({
  108. key: 'orderShop',
  109. data: item,
  110. success: function() {
  111. uni.navigateTo({
  112. url: 'confirmOrder?orderData=' + that.orderData + '&currentMileage=' +
  113. that.currentMileage
  114. })
  115. }
  116. });
  117. }
  118. },
  119. getqueryShopList() {
  120. uni.showLoading({});
  121. var params = {}
  122. if (this.location.lat) {
  123. params = {
  124. lat: this.location.lat,
  125. lng: this.location.lng,
  126. cityCode: this.location.cityCode,
  127. comprehensive: 1,
  128. brand:this.brand,
  129. }
  130. } else {
  131. params = {
  132. cityCode: this.location.cityCode,
  133. comprehensive: 1,
  134. brand:this.brand,
  135. }
  136. }
  137. this.$http('worldKeepCar/worldHome/getWorldShopInfoList', params, 'GET').then(res => {
  138. uni.hideLoading();
  139. this.queryShopList = res.data
  140. // 处理 undefined和null转为空白字符串
  141. this.queryShopList.forEach((item, index) => {
  142. for (const key in item) {
  143. item[key] = this.$praseStrEmpty(item[key])
  144. }
  145. })
  146. })
  147. },
  148. }
  149. }
  150. </script>
  151. <style scoped>
  152. .box {
  153. min-height: 100vh;
  154. background: #F4F5F7;
  155. padding: 20rpx 0;
  156. }
  157. .topTIs {
  158. font-size: 26rpx;
  159. text-align: center;
  160. color: #C8841C;
  161. height: 72rpx;
  162. background: #FFF7EB;
  163. line-height: 72rpx;
  164. margin-bottom: 20rpx;
  165. }
  166. .shopbox {
  167. padding: 0 16rpx;
  168. }
  169. .shopline {
  170. padding: 20rpx;
  171. background: #FFFFFF;
  172. border-radius: 10rpx;
  173. margin-top: 20rpx;
  174. display: flex;
  175. }
  176. .shopImg {
  177. width: 146rpx;
  178. height: 146rpx;
  179. border-radius: 10rpx;
  180. }
  181. .shopCallImg {
  182. width: 38rpx;
  183. height: 46rpx;
  184. }
  185. .shopTop {
  186. display: flex;
  187. justify-content: space-between;
  188. width: 510rpx;
  189. }
  190. .shopright {
  191. padding-left: 20rpx;
  192. }
  193. .shopName {
  194. font-size: 26rpx;
  195. color: #333333;
  196. line-height: 37rpx;
  197. width: 450rpx;
  198. white-space: nowrap;
  199. overflow: hidden;
  200. text-overflow: ellipsis;
  201. }
  202. .shopScore1 {
  203. font-size: 36rpx;
  204. color: #FF4F00;
  205. }
  206. .shopScore2 {
  207. font-size: 22rpx;
  208. color: #FF4F00;
  209. margin-right: 14rpx;
  210. }
  211. .shopScore3 {
  212. font-size: 22rpx;
  213. color: #333333;
  214. padding-left: 20rpx;
  215. }
  216. .brandsBg {
  217. display: flex;
  218. align-items: center;
  219. }
  220. .brands {
  221. border-radius: 4rpx;
  222. padding: 0 5rpx;
  223. color: #FF5800;
  224. height: 28rpx;
  225. border: 1px solid #FF5800;
  226. margin-right: 5rpx;
  227. font-size: 20rpx;
  228. line-height: 28rpx;
  229. }
  230. .timeBg {
  231. display: flex;
  232. align-items: center;
  233. padding-top: 10rpx;
  234. }
  235. .shopTime {
  236. color: #666666;
  237. font-size: 22rpx;
  238. }
  239. .Btn {
  240. width: 104rpx;
  241. height: 56rpx;
  242. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  243. border-radius: 6rpx;
  244. font-size: 26rpx;
  245. text-align: center;
  246. color: #FFFFFF;
  247. line-height: 56rpx;
  248. }
  249. .grayBtn {
  250. width: 104rpx;
  251. height: 56rpx;
  252. background-color: #CCCCCC;
  253. border-radius: 6rpx;
  254. font-size: 26rpx;
  255. text-align: center;
  256. color: #FFFFFF;
  257. line-height: 56rpx;
  258. }
  259. .shopBottom {
  260. display: flex;
  261. }
  262. .shopBottomLeft {
  263. width: 400rpx;
  264. font-size: 22rpx;
  265. color: #666666;
  266. line-height: 30rpx;
  267. padding-top: 10rpx;
  268. }
  269. .shopaddress {
  270. padding-left: 10rpx;
  271. }
  272. </style>