index.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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. memberCar: '',
  73. location: {
  74. lng:'',
  75. lat:'',
  76. cityname:'',
  77. cityCode:'',
  78. },
  79. cityCode: '',
  80. time: '',
  81. mileage: '',
  82. autoplay:true,
  83. }
  84. },
  85. onLoad() {
  86. },
  87. onShow() {
  88. var that = this;
  89. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  90. this.uid = uni.getStorageSync("logodata").uid;
  91. var location = uni.getStorageSync("location");
  92. if (location) {
  93. this.lng = location.lng;
  94. this.lat = location.lat;
  95. this.cityname = location.cityname;
  96. this.cityCode = location.cityCode;
  97. this.location=location
  98. that.queryHomeDetail();
  99. } else {
  100. /* uni.showToast({
  101. title: '请选择城市'
  102. }) */
  103. uni.getLocation({
  104. type: 'gcj02',
  105. success: function (res) {
  106. console.log(res)
  107. that.lng=res.longitude
  108. that.lat=res.latitude
  109. that.getAdress();
  110. },
  111. fail(err) {
  112. }
  113. });
  114. }
  115. },
  116. methods: {
  117. queryHomeDetail() {
  118. uni.showLoading({
  119. title: '加载中'
  120. })
  121. this.$http('worldKeepCar/worldHome/queryHomeDetail', {
  122. cityCode: this.cityCode
  123. }, 'GET').then(res => {
  124. uni.hideLoading();
  125. this.imgData = res.data.banners
  126. this.memberCar = res.data.memberCar
  127. this.mileage = res.data.memberCar.milage
  128. var cardata = uni.getStorageSync("maintainCarData")
  129. if (cardata) {
  130. this.memberCar = cardata
  131. }
  132. })
  133. },
  134. gomodule() {
  135. uni.navigateTo({
  136. url: '../module/maintain'
  137. })
  138. },
  139. goCarList() {
  140. if (this.uid) {
  141. uni.navigateTo({
  142. url: 'cailist?type=1'
  143. })
  144. }
  145. },
  146. addCar() {
  147. uni.navigateTo({
  148. url: 'addCar'
  149. })
  150. },
  151. selectCity(item) {
  152. console.log('-您选择的城市-', item)
  153. console.log(this.location)
  154. this.location.cityname = item.name;
  155. this.location.cityCode = item.citycode;
  156. this.cityname = item.name;
  157. console.log(this.location)
  158. uni.setStorage({
  159. key: 'location',
  160. data: this.location,
  161. success: function() {}
  162. });
  163. this.showCity = false;
  164. },
  165. closeModal() {
  166. this.showCity = false
  167. },
  168. bindChange(e) {
  169. console.log(e);
  170. this.time = e.target.value
  171. },
  172. getAdress(){
  173. var location=this.lng+','+this.lat
  174. uni.request({
  175. url: 'https://restapi.amap.com/v3/place/around', //仅为示例,并非真实接口地址。
  176. data: {
  177. key: '064b6a4a8ade55656edcde2f528876de',
  178. location: location,
  179. types:"190000",
  180. extensions:"all",
  181. radius:100
  182. },
  183. dataType: "json",
  184. success: (res) => {
  185. console.log(res);
  186. this.cityname=res.data.pois[0].cityname;
  187. var cityCode=res.data.pois[0].adcode
  188. cityCode=cityCode.slice(0, -2)
  189. cityCode=cityCode+'00'
  190. this.cityCode=cityCode
  191. var obj={
  192. cityname:this.cityname,
  193. lng:this.lng,
  194. lat:this.lat,
  195. cityCode:cityCode
  196. }
  197. uni.setStorage({
  198. key: 'location',
  199. data: obj,
  200. success: function () {}
  201. });
  202. this.queryHomeDetail();
  203. }
  204. });
  205. },
  206. }
  207. }
  208. </script>
  209. <style>
  210. .content {
  211. min-height: 100vh;
  212. background-color: #F4F5F7;
  213. }
  214. .bBannerList {
  215. width: 100%;
  216. height: 300rpx;
  217. background-color: #F4F5F7;
  218. }
  219. .swpImg {
  220. width: 100%;
  221. height: 300rpx;
  222. }
  223. .carMessage {
  224. margin: 24rpx 24rpx 40rpx;
  225. padding-top: 10rpx;
  226. height: 500rpx;
  227. background-color: #FFFFFF;
  228. border-radius: 10rpx;
  229. }
  230. .look4s {
  231. margin: 40rpx 24rpx;
  232. height: 88rpx;
  233. line-height: 88rpx;
  234. text-align: center;
  235. background-color: #FD5300;
  236. border-radius: 10rpx;
  237. color: #FFFFFF;
  238. font-weight: bold;
  239. font-size: 30rpx;
  240. }
  241. .mesView {
  242. display: flex;
  243. align-items: center;
  244. width: 100%;
  245. height: 120rpx;
  246. background-color: #FFFFFF;
  247. }
  248. .leftTitle {
  249. margin: 28rpx;
  250. width: 120rpx;
  251. font-size: 28rpx;
  252. color: #666666;
  253. }
  254. .noSelectColor {
  255. color: #999999;
  256. }
  257. .selectColor {
  258. color: #333333;
  259. }
  260. .rightArrow {
  261. margin-right: 28rpx;
  262. width: 14rpx;
  263. height: 23rpx;
  264. }
  265. .cityBtn {
  266. width: 65%;
  267. font-size: 28rpx;
  268. }
  269. .rightView {
  270. display: flex;
  271. justify-content: space-between;
  272. width: 80%;
  273. }
  274. .plateNumber {
  275. font-size: 28rpx;
  276. }
  277. .carModBtn {
  278. width: 65%;
  279. font-size: 28rpx;
  280. }
  281. .timeBtn {
  282. width: 65%;
  283. font-size: 28rpx;
  284. }
  285. .mileageInput {
  286. width: 20%;
  287. font-size: 28rpx;
  288. }
  289. .kmStr {
  290. font-size: 28rpx;
  291. color: #333333;
  292. }
  293. .changeCarBg {
  294. display: flex;
  295. /* justify-content: flex-start; */
  296. align-items: center;
  297. width: 120rpx;
  298. margin-right: 28rpx;
  299. }
  300. </style>