|
@@ -15,8 +15,8 @@
|
|
|
|
|
|
<view class="mesView" @click="goCarModel()">
|
|
|
<view class="leftTitle">车型</view>
|
|
|
- <view class="carModBtn noSelectColor" v-if="!carMod">请添加您的爱车</view>
|
|
|
- <view class="carModBtn selectColor" v-else>{{carMod}}</view>
|
|
|
+ <view class="carModBtn noSelectColor" v-if="!carModelInfo.value">请选择车型</view>
|
|
|
+ <view class="carModBtn selectColor" v-else>{{carModelInfo.value}}</view>
|
|
|
<image src="../../static/img/rightArrow.png" class="rightArrow"></image>
|
|
|
</view>
|
|
|
|
|
@@ -41,7 +41,7 @@
|
|
|
|
|
|
|
|
|
<view class="bottomView">
|
|
|
- <view class="saveCar">保存爱车</view>
|
|
|
+ <view class="saveCar" @click="saveCar()">保存爱车</view>
|
|
|
</view>
|
|
|
|
|
|
|
|
@@ -57,43 +57,213 @@
|
|
|
|
|
|
data() {
|
|
|
return {
|
|
|
- homeData: '',
|
|
|
- shopId: '',
|
|
|
+
|
|
|
plateNo: '',
|
|
|
plateShow: false,
|
|
|
- joinFirst: false,
|
|
|
- carMod: '',
|
|
|
+ carModelInfo: '',
|
|
|
time: '',
|
|
|
mileage: '',
|
|
|
+ carId: '',
|
|
|
+ isEditCar: false,
|
|
|
|
|
|
}
|
|
|
},
|
|
|
- onLoad() {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+ onLoad(opt) {
|
|
|
+ var carModelInfo = uni.getStorageSync("carModelInfo");
|
|
|
+ if (carModelInfo) {
|
|
|
+ this.carModelInfo = carModelInfo;
|
|
|
+ }
|
|
|
+ console.log(opt);
|
|
|
+ this.isEditCar = opt.isEditCar
|
|
|
+ this.carId = opt.id
|
|
|
+ if (this.isEditCar == 1) {
|
|
|
+ this.getEditData()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onShow() {
|
|
|
+ var carModelInfo = uni.getStorageSync("carModelInfo");
|
|
|
+ if (carModelInfo) {
|
|
|
+ this.carModelInfo = carModelInfo;
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
- goCarModel(){
|
|
|
- uni.navigateTo({
|
|
|
- url:'carModel'
|
|
|
- })
|
|
|
+ getEditData() {
|
|
|
+ uni.showLoading({});
|
|
|
+ var carModelInfo = {
|
|
|
+ carModelInfo: {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.$http('worldKeepCar/worldHome/queryMyTMemberCarDetail', {
|
|
|
+ id: this.carId
|
|
|
+ }, 'GET').then(res => {
|
|
|
+ uni.hideLoading();
|
|
|
+ carModelInfo.carModelInfo.logo = res.data.brandLogo;
|
|
|
+ carModelInfo.carModelInfo.brand = res.data.brand;
|
|
|
+ carModelInfo.carModelInfo.carSeries = res.data.series;
|
|
|
+ carModelInfo.carModelInfo.displacement = res.data.displacement;
|
|
|
+ carModelInfo.carModelInfo.transmissionType = res.data.transmissionType;
|
|
|
+ carModelInfo.carModelInfo.modelYear = res.data.annualmoney;
|
|
|
+ carModelInfo.carModelInfo.carModel = res.data.carModel;
|
|
|
+ carModelInfo.carModelInfo.guidePrice = res.data.guidePrice;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ // 展示时
|
|
|
+ this.plateNo = res.data.plateNumber;
|
|
|
+ carModelInfo.value = res.data.carModel;
|
|
|
+ this.time = res.data.createTime;
|
|
|
+ this.mileage = res.data.milage;
|
|
|
+
|
|
|
+ this.carModelInfo = carModelInfo;
|
|
|
+
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goCarModel() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: 'carModel'
|
|
|
+ })
|
|
|
},
|
|
|
setPlate(plate) {
|
|
|
if (plate.length >= 7) this.plateNo = plate;
|
|
|
this.plateShow = false;
|
|
|
},
|
|
|
|
|
|
-
|
|
|
+
|
|
|
bindChange(e) {
|
|
|
console.log(e);
|
|
|
this.time = e.target.value
|
|
|
},
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+ saveCar() {
|
|
|
+ uni.showLoading({});
|
|
|
+ if (this.plateNo == '') {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请填写车牌号',
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if (this.carModelInfo == '') {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请选择车型',
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if (this.time == '') {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请选择购车时间',
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if (this.mileage == '') {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请输入行驶里程',
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if (this.isEditCar == 1) {
|
|
|
+ this.updateTMemberCar()
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ this.addTMemberCar()
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+
|
|
|
+ addTMemberCar(){
|
|
|
+ this.$http('worldKeepCar/worldHome/addTMemberCar', {
|
|
|
+ plateNumber: this.plateNo,
|
|
|
+ milage: this.mileage,
|
|
|
+ brand: this.carModelInfo.carModelInfo.brand,
|
|
|
+ displacement: this.carModelInfo.carModelInfo.displacement,
|
|
|
+ series: this.carModelInfo.carModelInfo.carSeries,
|
|
|
+ annualmoney: this.carModelInfo.carModelInfo.productionYear,
|
|
|
+ carModel: this.carModelInfo.title,
|
|
|
+ salesName: this.carModelInfo.carModelInfo.salesName,
|
|
|
+ transmissionType: this.carModelInfo.carModelInfo.transmissionType,
|
|
|
+ model: this.carModelInfo.carModelInfo.carModel,
|
|
|
+ nLevelID: this.carModelInfo.carModelInfo.nLevelID,
|
|
|
+ engineType: this.carModelInfo.carModelInfo.engineModel,
|
|
|
+ brandLogo: this.carModelInfo.carModelInfo.logo,
|
|
|
+ AcarTime: this.time,
|
|
|
+ guidePrice: this.carModelInfo.carModelInfo.guidePrice,
|
|
|
+ }, 'POST').then(res => {
|
|
|
+ uni.hideLoading();
|
|
|
+ if (res.code == 0) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '保存成功',
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ uni.removeStorageSync('carModelInfo');
|
|
|
+ setTimeout(function() {
|
|
|
+ uni.navigateBack({
|
|
|
+
|
|
|
+ })
|
|
|
+ }, 3000);
|
|
|
+
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: res.msg,
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ })
|
|
|
+ },
|
|
|
+ updateTMemberCar(){
|
|
|
+ this.$http('worldKeepCar/worldHome/updateTMemberCar', {
|
|
|
+ plateNumber: this.plateNo,
|
|
|
+ milage: this.mileage,
|
|
|
+ brand: this.carModelInfo.carModelInfo.brand,
|
|
|
+ displacement: this.carModelInfo.carModelInfo.displacement,
|
|
|
+ series: this.carModelInfo.carModelInfo.carSeries,
|
|
|
+ annualmoney: this.carModelInfo.carModelInfo.productionYear,
|
|
|
+ carModel: this.carModelInfo.title,
|
|
|
+ salesName: this.carModelInfo.carModelInfo.salesName,
|
|
|
+ transmissionType: this.carModelInfo.carModelInfo.transmissionType,
|
|
|
+ model: this.carModelInfo.carModelInfo.carModel,
|
|
|
+ nLevelID: this.carModelInfo.carModelInfo.nLevelID,
|
|
|
+ engineType: this.carModelInfo.carModelInfo.engineModel,
|
|
|
+ brandLogo: this.carModelInfo.carModelInfo.logo,
|
|
|
+ AcarTime: this.time,
|
|
|
+ guidePrice: this.carModelInfo.carModelInfo.guidePrice,
|
|
|
+
|
|
|
+ id: this.carId,
|
|
|
+ }, 'POST').then(res => {
|
|
|
+ uni.hideLoading();
|
|
|
+ if (res.code == 0) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '保存成功',
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ uni.removeStorageSync('carModelInfo');
|
|
|
+ setTimeout(function() {
|
|
|
+ uni.navigateBack({
|
|
|
+
|
|
|
+ })
|
|
|
+ }, 3000);
|
|
|
+
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: res.msg,
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ })
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -101,11 +271,11 @@
|
|
|
<style>
|
|
|
.content {
|
|
|
min-height: 100vh;
|
|
|
- background-color: #F4F5F7;
|
|
|
+ background-color: #F4F5F7;
|
|
|
padding-top: 20rpx;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
.carMessage {
|
|
|
margin: 0rpx 24rpx 40rpx;
|
|
@@ -115,7 +285,7 @@
|
|
|
border-radius: 10rpx;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
.mesView {
|
|
|
display: flex;
|
|
@@ -183,7 +353,7 @@
|
|
|
}
|
|
|
|
|
|
.bottomView {
|
|
|
- background-color: #FFFFFF;
|
|
|
+ background-color: #FFFFFF;
|
|
|
width: 100%;
|
|
|
height: 120rpx;
|
|
|
position: fixed;
|
|
@@ -192,14 +362,14 @@
|
|
|
|
|
|
.saveCar {
|
|
|
|
|
|
- background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
|
|
|
- margin: 23rpx 30rpx;
|
|
|
- height: 74rpx;
|
|
|
- line-height: 74rpx;
|
|
|
- border-radius: 37rpx;
|
|
|
- color: #FFFFFF;
|
|
|
- font-size: 30rpx;
|
|
|
- font-weight: bold;
|
|
|
+ background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
|
|
|
+ margin: 23rpx 30rpx;
|
|
|
+ height: 74rpx;
|
|
|
+ line-height: 74rpx;
|
|
|
+ border-radius: 37rpx;
|
|
|
+ color: #FFFFFF;
|
|
|
+ font-size: 30rpx;
|
|
|
+ font-weight: bold;
|
|
|
text-align: center;
|
|
|
|
|
|
}
|