123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- <template>
- <view class="content">
- <!-- 轮播图 -->
- <view class="bBannerList">
- <swiper class="swiper" :autoplay="autoplay" :interval="interval" :duration="duration" :circular="true">
- <swiper-item v-for="(item,index) in homeData.bBannerList" @click="carBswpClick(item)" v-if="!shopId">
- <view class="swiper-item uni-bg-red">
- <image :src="item.logo" mode="" class="swpImg"></image>
- </view>
- </swiper-item>
- <swiper-item v-for="(item,index) in homeData.bBannerList" @click="carBswpClickshop(item)" v-if="shopId">
- <view class="swiper-item uni-bg-red">
- <image :src="item.Logo" mode="" class="swpImg"></image>
- </view>
- </swiper-item>
- </swiper>
- </view>
- <!-- 填写车辆信息 -->
- <view class="carMessage">
- <view class="mesView">
- <view class="leftTitle">城市</view>
- <view class="cityBtn noSelectColor" v-if="!cityname" @click="showCity=true">请选择</view>
- <view class="cityBtn selectColor" v-else @click="showCity=true">{{cityname}}</view>
- <image src="../../static/img/rightArrow.png" class="rightArrow"></image>
- </view>
- <view class="mesView">
- <view class="leftTitle">车牌号</view>
- <input class="plateNumber" placeholder-style="color:#999999" placeholder="请输入车牌号" disabled="true" @tap="plateShow=true"
- v-model.trim="plateNo" />
- <plate-input v-if="plateShow" :plate="plateNo" @export="setPlate" @close="plateShow=false" />
- <view class="changeCarBg" @click="changeCar" v-show="!joinFirst">
- <image src="../../static/img/icon_change.png"
- style="width: 32rpx; height: 34rpx; margin-right: 5rpx;"></image>
- <view style="color: #FF2400; font-size: 28rpx;">换车</view>
- </view>
- </view>
- <view class="mesView">
- <view class="leftTitle">车型</view>
- <view class="carModBtn noSelectColor" v-if="!carMod">请添加您的爱车</view>
- <view class="carModBtn selectColor" v-else>{{carMod}}</view>
- <image src="../../static/img/rightArrow.png" class="rightArrow"></image>
- </view>
- <view class="mesView">
- <view class="leftTitle">购车时间</view>
- <picker class="timeBtn" @change="bindChange" mode="date">
- <view class="uni-input selectColor" v-if="time">{{time}}</view>
- <view class="uni-input noSelectColor" v-else>请选择您的购车时间</view>
- </picker>
- <image src="../../static/img/rightArrow.png" class="rightArrow"></image>
- </view>
- <view class="mesView">
- <view class="leftTitle">行驶里程</view>
- <input class="mileageInput selectColor" type="number" v-model="mileage" placeholder="请输入"
- placeholder-style="color:#999999" />
- <view class="kmStr">km</view>
- </view>
- </view>
- <view class="look4s" @click="gomodule">查看4S店保养价格</view>
- <chose-city @selectCity="selectCity" v-if="showCity" @closeModal="closeModal"></chose-city>
- </view>
- </template>
- <script>
- import choseCity from "@/components/chose-city/chose-city"
- import plateInput from "@/components/uni-plate-input/uni-plate-input.vue"
- export default {
- components: {
- choseCity,
- plateInput
- },
- data() {
- return {
- homeData: '',
- shopId: '',
- cityname: '',
- showCity: false,
- location: '',
- cityCode: '',
- plateNo: '',
- plateShow: false,
- joinFirst: false,
- carMod: '',
- time: '',
- mileage: '',
- }
- },
- onLoad() {
- console.log('index-----onLoad')
- var that = this;
- this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
- //#ifdef H5
- var logodata = {
- uid: '10E96C26-92CD-4559-8019-ADBE4F83851A',
- token: "7994AC696DB441F5A9DCD738CD9943D5",
- memberInfo: {
- nickName: '布克',
- name: '66',
- headUrl: 'https://thirdwx.qlogo.cn/mmopen/vi_32/PHgdyF2l1fvicOPTicZlAdhuK65E6VFnNJIhA9QWFCUwftgc9hySDltLEEWic27eMLkiaoQG9emzqg0s87JaW28HFQ/132'
- }
- }
- var obj = {
- cityname: "济南市",
- lat: 36.68013,
- lng: 117.06533,
- cityCode: 370100
- }
- uni.setStorage({
- key: 'location',
- data: obj,
- success: function() {}
- });
- uni.setStorage({
- key: 'logodata',
- data: logodata,
- success: function() {}
- });
- var wxOpend = {
- openid: "oqeJ-5Lsmi-vM1Oirso6z9-MrD3g",
- session_key: "sxV2xbqNvOkk+p7i/KosiQ=="
- }
- uni.setStorage({
- key: 'wxOpendata',
- data: wxOpend,
- success: function() {}
- });
- that.queryHomeDetail();
- that.getqueryMemberCarShop()
- // #endif
- this.uid = uni.getStorageSync("logodata").uid;
- this.shopId = uni.getStorageSync("shopData").shopId;
- console.log(this.shopId)
- this.location = uni.getStorageSync("location");
- if (this.location) {
- this.lng = this.location.lng;
- this.lat = this.location.lat;
- this.cityname = this.location.cityname;
- this.cityCode = this.location.cityCode;
- //that.queryHomeDetail();
- if (that.uid) {
- that.getqueryMemberCarShop()
- } else {
- that.queryHomeDetail();
- }
- } else {
- uni.getLocation({
- type: 'gcj02',
- success: function(res) {
- console.log(res)
- that.lng = res.longitude
- that.lat = res.latitude
- that.getAdress();
- //登录状态下获取车辆信息
- if (that.uid) {
- that.getqueryMemberCarShop()
- } else {
- that.queryHomeDetail();
- }
- },
- fail(err) {
- console.log(err)
- that.queryHomeDetail();
- //登录状态下获取车辆信息
- if (that.uid) {
- that.getqueryMemberCarShop()
- }
- }
- });
- }
- },
- methods: {
- gomodule(){
- uni.navigateTo({
- url:'../module/maintain'
- })
- },
- selectCity(item) {
- console.log('-您选择的城市-', item)
- this.location.cityname = item.name;
- this.location.cityCode = item.citycode;
- this.cityname = item.name;
- console.log(this.location)
- uni.setStorage({
- key: 'location',
- data: this.location,
- success: function() {}
- });
- this.showCity = false;
- },
- closeModal() {
- this.showCity = false
- },
- setPlate(plate) {
- if (plate.length >= 7) this.plateNo = plate;
- this.plateShow = false;
- },
- changeCar() {
- },
- bindChange(e) {
- console.log(e);
- this.time = e.target.value
- },
- getAdress() {
- var location = this.lng + ',' + this.lat
- uni.request({
- url: 'https://restapi.amap.com/v3/place/around', //仅为示例,并非真实接口地址。
- data: {
- key: '064b6a4a8ade55656edcde2f528876de',
- location: location,
- types: "190000",
- extensions: "all",
- radius: 100
- },
- dataType: "json",
- success: (res) => {
- console.log(res);
- this.cityname = res.data.pois[0].cityname;
- var cityCode = res.data.pois[0].adcode
- cityCode = cityCode.slice(0, -2)
- cityCode = cityCode + '00'
- var obj = {
- cityname: this.cityname,
- lng: this.lng,
- lat: this.lat,
- cityCode: cityCode
- }
- uni.setStorage({
- key: 'location',
- data: obj,
- success: function() {}
- });
- }
- });
- },
- }
- }
- </script>
- <style>
- .content {
- min-height: 100vh;
- background-color: #F4F5F7;
- }
- .bBannerList {
- width: 100%;
- height: 300rpx;
- background-color: #3F536E;
- }
- .swpImg {
- width: 100%;
- height: 300rpx;
- }
- .carMessage {
- margin: 24rpx 24rpx 40rpx;
- height: 600rpx;
- background-color: #FFFFFF;
- border-radius: 10rpx;
- }
- .look4s {
- margin: 40rpx 24rpx;
- height: 88rpx;
- line-height: 88rpx;
- text-align: center;
- background-color: #FD5300;
- border-radius: 10rpx;
- color: #FFFFFF;
- font-weight: bold;
- font-size: 30rpx;
- }
- .mesView {
- display: flex;
- align-items: center;
- width: 100%;
- height: 120rpx;
- background-color: #FFFFFF;
- }
- .leftTitle {
- margin: 28rpx;
- width: 120rpx;
- font-size: 28rpx;
- color: #666666;
- }
- .noSelectColor {
- color: #999999;
- }
- .selectColor {
- color: #333333;
- }
- .rightArrow {
- margin-right: 28rpx;
- width: 14rpx;
- height: 23rpx;
- }
- .cityBtn {
- width: 65%;
- font-size: 28rpx;
- }
- .plateNumber {
- width: 55%;
- font-size: 28rpx;
- }
- .carModBtn {
- width: 65%;
- font-size: 28rpx;
- }
- .timeBtn {
- width: 65%;
- font-size: 28rpx;
- }
- .mileageInput {
- width: 20%;
- font-size: 28rpx;
- }
- .kmStr {
- font-size: 28rpx;
- color: #333333;
-
- }
- .changeCarBg {
- display: flex;
- /* justify-content: flex-start; */
- align-items: center;
- width: 120rpx;
- margin-right: 28rpx;
- }
- </style>
|