index.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  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 homeData.bBannerList" @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 homeData.bBannerList" @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. <input class="plateNumber" placeholder-style="color:#999999" placeholder="请输入车牌号" disabled="true" @tap="plateShow=true"
  29. v-model.trim="plateNo" />
  30. <plate-input v-if="plateShow" :plate="plateNo" @export="setPlate" @close="plateShow=false" />
  31. <view class="changeCarBg" @click="changeCar" v-show="!joinFirst">
  32. <image src="../../static/img/icon_change.png"
  33. style="width: 32rpx; height: 34rpx; margin-right: 5rpx;"></image>
  34. <view style="color: #FF2400; font-size: 28rpx;">换车</view>
  35. </view>
  36. </view>
  37. <view class="mesView">
  38. <view class="leftTitle">车型</view>
  39. <view class="carModBtn noSelectColor" v-if="!carMod">请添加您的爱车</view>
  40. <view class="carModBtn selectColor" v-else>{{carMod}}</view>
  41. <image src="../../static/img/rightArrow.png" class="rightArrow"></image>
  42. </view>
  43. <view class="mesView">
  44. <view class="leftTitle">购车时间</view>
  45. <picker class="timeBtn" @change="bindChange" mode="date">
  46. <view class="uni-input selectColor" v-if="time">{{time}}</view>
  47. <view class="uni-input noSelectColor" v-else>请选择您的购车时间</view>
  48. </picker>
  49. <image src="../../static/img/rightArrow.png" class="rightArrow"></image>
  50. </view>
  51. <view class="mesView">
  52. <view class="leftTitle">行驶里程</view>
  53. <input class="mileageInput selectColor" type="number" v-model="mileage" placeholder="请输入"
  54. placeholder-style="color:#999999" />
  55. <view class="kmStr">km</view>
  56. </view>
  57. </view>
  58. <view class="look4s" @click="gomodule">查看4S店保养价格</view>
  59. <chose-city @selectCity="selectCity" v-if="showCity" @closeModal="closeModal"></chose-city>
  60. </view>
  61. </template>
  62. <script>
  63. import choseCity from "@/components/chose-city/chose-city"
  64. import plateInput from "@/components/uni-plate-input/uni-plate-input.vue"
  65. export default {
  66. components: {
  67. choseCity,
  68. plateInput
  69. },
  70. data() {
  71. return {
  72. homeData: '',
  73. shopId: '',
  74. cityname: '',
  75. showCity: false,
  76. location: '',
  77. cityCode: '',
  78. plateNo: '',
  79. plateShow: false,
  80. joinFirst: false,
  81. carMod: '',
  82. time: '',
  83. mileage: '',
  84. }
  85. },
  86. onLoad() {
  87. console.log('index-----onLoad')
  88. var that = this;
  89. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  90. //#ifdef H5
  91. var logodata = {
  92. uid: '10E96C26-92CD-4559-8019-ADBE4F83851A',
  93. token: "7994AC696DB441F5A9DCD738CD9943D5",
  94. memberInfo: {
  95. nickName: '布克',
  96. name: '66',
  97. headUrl: 'https://thirdwx.qlogo.cn/mmopen/vi_32/PHgdyF2l1fvicOPTicZlAdhuK65E6VFnNJIhA9QWFCUwftgc9hySDltLEEWic27eMLkiaoQG9emzqg0s87JaW28HFQ/132'
  98. }
  99. }
  100. var obj = {
  101. cityname: "济南市",
  102. lat: 36.68013,
  103. lng: 117.06533,
  104. cityCode: 370100
  105. }
  106. uni.setStorage({
  107. key: 'location',
  108. data: obj,
  109. success: function() {}
  110. });
  111. uni.setStorage({
  112. key: 'logodata',
  113. data: logodata,
  114. success: function() {}
  115. });
  116. var wxOpend = {
  117. openid: "oqeJ-5Lsmi-vM1Oirso6z9-MrD3g",
  118. session_key: "sxV2xbqNvOkk+p7i/KosiQ=="
  119. }
  120. uni.setStorage({
  121. key: 'wxOpendata',
  122. data: wxOpend,
  123. success: function() {}
  124. });
  125. that.queryHomeDetail();
  126. that.getqueryMemberCarShop()
  127. // #endif
  128. this.uid = uni.getStorageSync("logodata").uid;
  129. this.shopId = uni.getStorageSync("shopData").shopId;
  130. console.log(this.shopId)
  131. this.location = uni.getStorageSync("location");
  132. if (this.location) {
  133. this.lng = this.location.lng;
  134. this.lat = this.location.lat;
  135. this.cityname = this.location.cityname;
  136. this.cityCode = this.location.cityCode;
  137. //that.queryHomeDetail();
  138. if (that.uid) {
  139. that.getqueryMemberCarShop()
  140. } else {
  141. that.queryHomeDetail();
  142. }
  143. } else {
  144. uni.getLocation({
  145. type: 'gcj02',
  146. success: function(res) {
  147. console.log(res)
  148. that.lng = res.longitude
  149. that.lat = res.latitude
  150. that.getAdress();
  151. //登录状态下获取车辆信息
  152. if (that.uid) {
  153. that.getqueryMemberCarShop()
  154. } else {
  155. that.queryHomeDetail();
  156. }
  157. },
  158. fail(err) {
  159. console.log(err)
  160. that.queryHomeDetail();
  161. //登录状态下获取车辆信息
  162. if (that.uid) {
  163. that.getqueryMemberCarShop()
  164. }
  165. }
  166. });
  167. }
  168. },
  169. methods: {
  170. gomodule(){
  171. uni.navigateTo({
  172. url:'../module/maintain'
  173. })
  174. },
  175. selectCity(item) {
  176. console.log('-您选择的城市-', item)
  177. this.location.cityname = item.name;
  178. this.location.cityCode = item.citycode;
  179. this.cityname = item.name;
  180. console.log(this.location)
  181. uni.setStorage({
  182. key: 'location',
  183. data: this.location,
  184. success: function() {}
  185. });
  186. this.showCity = false;
  187. },
  188. closeModal() {
  189. this.showCity = false
  190. },
  191. setPlate(plate) {
  192. if (plate.length >= 7) this.plateNo = plate;
  193. this.plateShow = false;
  194. },
  195. changeCar() {
  196. },
  197. bindChange(e) {
  198. console.log(e);
  199. this.time = e.target.value
  200. },
  201. getAdress() {
  202. var location = this.lng + ',' + this.lat
  203. uni.request({
  204. url: 'https://restapi.amap.com/v3/place/around', //仅为示例,并非真实接口地址。
  205. data: {
  206. key: '064b6a4a8ade55656edcde2f528876de',
  207. location: location,
  208. types: "190000",
  209. extensions: "all",
  210. radius: 100
  211. },
  212. dataType: "json",
  213. success: (res) => {
  214. console.log(res);
  215. this.cityname = res.data.pois[0].cityname;
  216. var cityCode = res.data.pois[0].adcode
  217. cityCode = cityCode.slice(0, -2)
  218. cityCode = cityCode + '00'
  219. var obj = {
  220. cityname: this.cityname,
  221. lng: this.lng,
  222. lat: this.lat,
  223. cityCode: cityCode
  224. }
  225. uni.setStorage({
  226. key: 'location',
  227. data: obj,
  228. success: function() {}
  229. });
  230. }
  231. });
  232. },
  233. }
  234. }
  235. </script>
  236. <style>
  237. .content {
  238. min-height: 100vh;
  239. background-color: #F4F5F7;
  240. }
  241. .bBannerList {
  242. width: 100%;
  243. height: 300rpx;
  244. background-color: #3F536E;
  245. }
  246. .swpImg {
  247. width: 100%;
  248. height: 300rpx;
  249. }
  250. .carMessage {
  251. margin: 24rpx 24rpx 40rpx;
  252. height: 600rpx;
  253. background-color: #FFFFFF;
  254. border-radius: 10rpx;
  255. }
  256. .look4s {
  257. margin: 40rpx 24rpx;
  258. height: 88rpx;
  259. line-height: 88rpx;
  260. text-align: center;
  261. background-color: #FD5300;
  262. border-radius: 10rpx;
  263. color: #FFFFFF;
  264. font-weight: bold;
  265. font-size: 30rpx;
  266. }
  267. .mesView {
  268. display: flex;
  269. align-items: center;
  270. width: 100%;
  271. height: 120rpx;
  272. background-color: #FFFFFF;
  273. }
  274. .leftTitle {
  275. margin: 28rpx;
  276. width: 120rpx;
  277. font-size: 28rpx;
  278. color: #666666;
  279. }
  280. .noSelectColor {
  281. color: #999999;
  282. }
  283. .selectColor {
  284. color: #333333;
  285. }
  286. .rightArrow {
  287. margin-right: 28rpx;
  288. width: 14rpx;
  289. height: 23rpx;
  290. }
  291. .cityBtn {
  292. width: 65%;
  293. font-size: 28rpx;
  294. }
  295. .plateNumber {
  296. width: 55%;
  297. font-size: 28rpx;
  298. }
  299. .carModBtn {
  300. width: 65%;
  301. font-size: 28rpx;
  302. }
  303. .timeBtn {
  304. width: 65%;
  305. font-size: 28rpx;
  306. }
  307. .mileageInput {
  308. width: 20%;
  309. font-size: 28rpx;
  310. }
  311. .kmStr {
  312. font-size: 28rpx;
  313. color: #333333;
  314. }
  315. .changeCarBg {
  316. display: flex;
  317. /* justify-content: flex-start; */
  318. align-items: center;
  319. width: 120rpx;
  320. margin-right: 28rpx;
  321. }
  322. </style>