diff --git a/src/views/secondHandCar/carSource.vue b/src/views/secondHandCar/carSource.vue index 2e0823c4..d3957a97 100644 --- a/src/views/secondHandCar/carSource.vue +++ b/src/views/secondHandCar/carSource.vue @@ -243,22 +243,22 @@ export default { this.vehicleAnglePhotoList=[{url:this.form.vehicleAnglePhoto}] } if(carSourceFormInfo.otherImgSrc0){ - this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc0) + this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc0}) } if(carSourceFormInfo.otherImgSrc1){ - this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc1) + this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc1}) } if(carSourceFormInfo.otherImgSrc2){ - this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc2) + this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc2}) } if(carSourceFormInfo.otherImgSrc3){ - this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc3) + this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc3}) } if(carSourceFormInfo.otherImgSrc4){ - this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc4) + this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc4}) } if(carSourceFormInfo.otherImgSrc5){ - this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc5) + this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc5}) } console.log("--",this.vehicleLicensePhotoList,this.vehicleAnglePhotoList,this.otherImgSrcList) },