|
@@ -85,8 +85,8 @@
|
|
plate_type:'',
|
|
plate_type:'',
|
|
sbPlate:[],
|
|
sbPlate:[],
|
|
visible:false,
|
|
visible:false,
|
|
- defaultProps:{"label":"value","value":"ids"}
|
|
|
|
-
|
|
|
|
|
|
+ defaultProps:{"label":"value","value":"ids"},
|
|
|
|
+ vin:'',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad(opt) {
|
|
onLoad(opt) {
|
|
@@ -168,6 +168,7 @@
|
|
this.mileage = res.data.milage;
|
|
this.mileage = res.data.milage;
|
|
|
|
|
|
this.carModelInfo = carModelInfo;
|
|
this.carModelInfo = carModelInfo;
|
|
|
|
+ this.vin = res.data.vIN
|
|
|
|
|
|
console.log('this carModelInfo',this.carModelInfo);
|
|
console.log('this carModelInfo',this.carModelInfo);
|
|
})
|
|
})
|
|
@@ -199,12 +200,19 @@
|
|
}, 'GET').then(res => {
|
|
}, 'GET').then(res => {
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
console.log(res);
|
|
console.log(res);
|
|
- if(res.data&&res.data.length>0){
|
|
|
|
- this.sbPlate=res.data
|
|
|
|
|
|
+ if (res.data) {
|
|
|
|
+ this.vin = res.data.vin
|
|
|
|
+ if (res.data.buyTime) {
|
|
|
|
+ this.time = res.data.buyTime.slice(0,res.data.buyTime.length-8);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ if(res.data.list&&res.data.list.length>0){
|
|
|
|
+ this.sbPlate=res.data.list
|
|
//this.sbPlate=this.sbPlate.concat(this.sbPlate)
|
|
//this.sbPlate=this.sbPlate.concat(this.sbPlate)
|
|
if(this.sbPlate.length==1){
|
|
if(this.sbPlate.length==1){
|
|
//this.carModelInfo.value=res.data[0].value
|
|
//this.carModelInfo.value=res.data[0].value
|
|
- this.carModelInfo=res.data[0]
|
|
|
|
|
|
+ this.carModelInfo=res.data.list[0]
|
|
}else{
|
|
}else{
|
|
this.visible=true
|
|
this.visible=true
|
|
}
|
|
}
|
|
@@ -280,6 +288,7 @@
|
|
brandLogo: this.carModelInfo.carModelInfo.logo,
|
|
brandLogo: this.carModelInfo.carModelInfo.logo,
|
|
acarTime: this.time,
|
|
acarTime: this.time,
|
|
guidePrice: this.carModelInfo.carModelInfo.guidePrice,
|
|
guidePrice: this.carModelInfo.carModelInfo.guidePrice,
|
|
|
|
+ vIN:this.vin,
|
|
}, 'POST').then(res => {
|
|
}, 'POST').then(res => {
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
if (res.code == 0) {
|
|
if (res.code == 0) {
|
|
@@ -322,7 +331,7 @@
|
|
brandLogo: this.carModelInfo.carModelInfo.logo,
|
|
brandLogo: this.carModelInfo.carModelInfo.logo,
|
|
acarTime: this.time,
|
|
acarTime: this.time,
|
|
guidePrice: this.carModelInfo.carModelInfo.guidePrice,
|
|
guidePrice: this.carModelInfo.carModelInfo.guidePrice,
|
|
-
|
|
|
|
|
|
+ vIN:this.vin,
|
|
id: this.carId,
|
|
id: this.carId,
|
|
}, 'POST').then(res => {
|
|
}, 'POST').then(res => {
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|