二手车交易,缓存问题

This commit is contained in:
2025-03-17 17:34:18 +08:00
parent abd4b2a84b
commit 3668ee7f0a

View File

@ -243,22 +243,22 @@ export default {
this.vehicleAnglePhotoList=[{url:this.form.vehicleAnglePhoto}] this.vehicleAnglePhotoList=[{url:this.form.vehicleAnglePhoto}]
} }
if(carSourceFormInfo.otherImgSrc0){ if(carSourceFormInfo.otherImgSrc0){
this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc0) this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc0})
} }
if(carSourceFormInfo.otherImgSrc1){ if(carSourceFormInfo.otherImgSrc1){
this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc1) this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc1})
} }
if(carSourceFormInfo.otherImgSrc2){ if(carSourceFormInfo.otherImgSrc2){
this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc2) this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc2})
} }
if(carSourceFormInfo.otherImgSrc3){ if(carSourceFormInfo.otherImgSrc3){
this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc3) this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc3})
} }
if(carSourceFormInfo.otherImgSrc4){ if(carSourceFormInfo.otherImgSrc4){
this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc4) this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc4})
} }
if(carSourceFormInfo.otherImgSrc5){ if(carSourceFormInfo.otherImgSrc5){
this.otherImgSrcList.push(carSourceFormInfo.otherImgSrc5) this.otherImgSrcList.push({url:carSourceFormInfo.otherImgSrc5})
} }
console.log("--",this.vehicleLicensePhotoList,this.vehicleAnglePhotoList,this.otherImgSrcList) console.log("--",this.vehicleLicensePhotoList,this.vehicleAnglePhotoList,this.otherImgSrcList)
}, },