Browse Source

1.保存车辆 加vin

guo 3 years ago
parent
commit
d8bd9d7e28
2 changed files with 19 additions and 10 deletions
  1. 4 4
      common/request.js
  2. 15 6
      pages/index/addCar.vue

+ 4 - 4
common/request.js

@@ -1,8 +1,8 @@
-//const baseUrl = 'http://58.56.15.138:20201/' 
-//const burl2='http://58.56.15.138:20201/' 
+const baseUrl = 'http://58.56.15.138:20201/' 
+const burl2='http://58.56.15.138:20201/' 
 //const baseUrl = 'http://58.56.15.138:20132/' 
- const baseUrl = 'https://apiclt.66km.com/'
-const burl2='https://apiclt.66km.com/'
+//  const baseUrl = 'https://apiclt.66km.com/'
+// const burl2='https://apiclt.66km.com/'
 
 import md5 from './MD5.js'
 

+ 15 - 6
pages/index/addCar.vue

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