index.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. <template>
  2. <view class="content">
  3. <!-- 轮播图 -->
  4. <view class="bBannerList">
  5. <swiper class="swiper" :autoplay="autoplay" :interval="interval" :duration="duration" :circular="true">
  6. <swiper-item v-for="(item,index) in imgData" @click="carBswpClick(item)" v-if="!shopId">
  7. <view class="swiper-item uni-bg-red">
  8. <image :src="item.logo" mode="" class="swpImg"></image>
  9. </view>
  10. </swiper-item>
  11. <swiper-item v-for="(item,index) in imgData" @click="carBswpClickshop(item)" v-if="shopId">
  12. <view class="swiper-item uni-bg-red">
  13. <image :src="item.logo" mode="" class="swpImg"></image>
  14. </view>
  15. </swiper-item>
  16. </swiper>
  17. </view>
  18. <!-- 填写车辆信息 -->
  19. <view class="carMessage">
  20. <view class="mesView">
  21. <view class="leftTitle">城市</view>
  22. <view class="cityBtn noSelectColor" v-if="!cityname" @click="showCity=true">请选择</view>
  23. <view class="cityBtn selectColor" v-else @click="showCity=true">{{cityname}}</view>
  24. <image src="../../static/img/rightArrow.png" class="rightArrow"></image>
  25. </view>
  26. <view class="mesView">
  27. <view class="leftTitle">车牌号</view>
  28. <view class="rightView" v-if="!memberCar">
  29. <view class="plateNumber noSelectColor">请添加您的爱车</view>
  30. <view class="changeCarBg" @click="addCar()">
  31. <image src="../../static/img/icon_change.png"
  32. style="width: 32rpx; height: 34rpx; margin-right: 5rpx;"></image>
  33. <view style="color: #FF2400; font-size: 28rpx;">添加</view>
  34. </view>
  35. </view>
  36. <view class="rightView" v-else>
  37. <view class="plateNumber selectColor">{{memberCar.plateNumber}}</view>
  38. <view class="changeCarBg" @click="goCarList()">
  39. <image src="../../static/img/icon_change.png"
  40. style="width: 32rpx; height: 34rpx; margin-right: 5rpx;"></image>
  41. <view style="color: #FF2400; font-size: 28rpx;">换车</view>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="mesView">
  46. <view class="leftTitle">车型</view>
  47. <view class="carModBtn selectColor" v-if="memberCar">{{memberCar.carModel}}</view>
  48. </view>
  49. <view class="mesView">
  50. <view class="leftTitle">行驶里程</view>
  51. <input class="mileageInput selectColor" type="number" v-model="mileage" placeholder="请输入"
  52. placeholder-style="color:#999999" />
  53. <view class="kmStr">km</view>
  54. </view>
  55. </view>
  56. <view class="look4s" @click="gomodule">查看4S店保养价格</view>
  57. <chose-city @selectCity="selectCity" v-if="showCity" @closeModal="closeModal"></chose-city>
  58. </view>
  59. </template>
  60. <script>
  61. import choseCity from "@/components/chose-city/chose-city"
  62. export default {
  63. components: {
  64. choseCity
  65. },
  66. data() {
  67. return {
  68. imgData: [],
  69. uid: '',
  70. cityname: '',
  71. showCity: false,
  72. location: '',
  73. memberCar: '',
  74. mileage: '',
  75. }
  76. },
  77. onLoad() {
  78. },
  79. onShow() {
  80. var that = this;
  81. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  82. this.uid = uni.getStorageSync("logodata").uid;
  83. this.location = uni.getStorageSync("location");
  84. if (this.location) {
  85. this.lng = this.location.lng;
  86. this.lat = this.location.lat;
  87. this.cityname = this.location.cityname;
  88. this.cityCode = this.location.cityCode;
  89. that.queryHomeDetail();
  90. } else {
  91. uni.showToast({
  92. title: '请选择城市'
  93. })
  94. }
  95. },
  96. methods: {
  97. queryHomeDetail() {
  98. uni.showLoading({
  99. title: '加载中'
  100. })
  101. this.$http('worldKeepCar/worldHome/queryHomeDetail', {
  102. cityCode: this.cityCode
  103. }, 'GET').then(res => {
  104. uni.hideLoading();
  105. this.imgData = res.data.banners
  106. this.memberCar = res.data.memberCar
  107. this.mileage = res.data.memberCar.milage
  108. var cardata = uni.getStorageSync("maintainCarData")
  109. if (cardata) {
  110. this.memberCar = cardata
  111. }
  112. })
  113. },
  114. gomodule() {
  115. uni.navigateTo({
  116. url: '../module/maintain'
  117. })
  118. },
  119. goCarList() {
  120. if (this.uid) {
  121. uni.navigateTo({
  122. url: 'cailist?type=1'
  123. })
  124. }
  125. },
  126. addCar() {
  127. uni.navigateTo({
  128. url: 'addCar'
  129. })
  130. },
  131. selectCity(item) {
  132. console.log('-您选择的城市-', item)
  133. this.location.cityname = item.name;
  134. this.location.cityCode = item.citycode;
  135. this.cityname = item.name;
  136. console.log(this.location)
  137. uni.setStorage({
  138. key: 'location',
  139. data: this.location,
  140. success: function() {}
  141. });
  142. this.showCity = false;
  143. },
  144. closeModal() {
  145. this.showCity = false
  146. },
  147. bindChange(e) {
  148. console.log(e);
  149. this.time = e.target.value
  150. },
  151. }
  152. }
  153. </script>
  154. <style>
  155. .content {
  156. min-height: 100vh;
  157. background-color: #F4F5F7;
  158. }
  159. .bBannerList {
  160. width: 100%;
  161. height: 300rpx;
  162. background-color: #F4F5F7;
  163. }
  164. .swpImg {
  165. width: 100%;
  166. height: 300rpx;
  167. }
  168. .carMessage {
  169. margin: 24rpx 24rpx 40rpx;
  170. height: 500rpx;
  171. background-color: #FFFFFF;
  172. border-radius: 10rpx;
  173. }
  174. .look4s {
  175. margin: 40rpx 24rpx;
  176. height: 88rpx;
  177. line-height: 88rpx;
  178. text-align: center;
  179. background-color: #FD5300;
  180. border-radius: 10rpx;
  181. color: #FFFFFF;
  182. font-weight: bold;
  183. font-size: 30rpx;
  184. }
  185. .mesView {
  186. display: flex;
  187. align-items: center;
  188. width: 100%;
  189. height: 120rpx;
  190. background-color: #FFFFFF;
  191. }
  192. .leftTitle {
  193. margin: 28rpx;
  194. width: 120rpx;
  195. font-size: 28rpx;
  196. color: #666666;
  197. }
  198. .noSelectColor {
  199. color: #999999;
  200. }
  201. .selectColor {
  202. color: #333333;
  203. }
  204. .rightArrow {
  205. margin-right: 28rpx;
  206. width: 14rpx;
  207. height: 23rpx;
  208. }
  209. .cityBtn {
  210. width: 65%;
  211. font-size: 28rpx;
  212. }
  213. .rightView {
  214. display: flex;
  215. justify-content: space-between;
  216. width: 80%;
  217. }
  218. .plateNumber {
  219. font-size: 28rpx;
  220. }
  221. .carModBtn {
  222. width: 65%;
  223. font-size: 28rpx;
  224. }
  225. .timeBtn {
  226. width: 65%;
  227. font-size: 28rpx;
  228. }
  229. .mileageInput {
  230. width: 20%;
  231. font-size: 28rpx;
  232. }
  233. .kmStr {
  234. font-size: 28rpx;
  235. color: #333333;
  236. }
  237. .changeCarBg {
  238. display: flex;
  239. /* justify-content: flex-start; */
  240. align-items: center;
  241. width: 120rpx;
  242. margin-right: 28rpx;
  243. }
  244. </style>