二手车交易,优化

This commit is contained in:
2025-03-17 09:23:37 +08:00
parent eddabd68b4
commit db26230208
2 changed files with 4 additions and 3 deletions

View File

@ -157,9 +157,9 @@ export default {
this.supplierName=res.data?.supplierName this.supplierName=res.data?.supplierName
this.supplierCode=res.data?.supplierCode this.supplierCode=res.data?.supplierCode
if(res.data.vehicleType.includes(',')){ if(res.data.vehicleType.includes(',')){
let res=res.data.vehicleType?.split(',') let result=res.data.vehicleType?.split(',')
this.form.vehicleType=res[0] this.form.vehicleType=result[0]
this.ortherReason=res[1] this.ortherReason=result[1]
} }
} }
let wantBuyFormInfo=localStorage.getItem("wantBuyFormInfo") ? JSON.parse(localStorage.getItem("wantBuyFormInfo")) : '' let wantBuyFormInfo=localStorage.getItem("wantBuyFormInfo") ? JSON.parse(localStorage.getItem("wantBuyFormInfo")) : ''

View File

@ -214,6 +214,7 @@ export default {
.itemInfo{ .itemInfo{
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 25%;
span:first-child{ span:first-child{
font-weight: bold; font-weight: bold;
font-size: 14px; font-size: 14px;