diff --git a/src/views/secondHandCar/wantBuy.vue b/src/views/secondHandCar/wantBuy.vue index 867ac9e8..8e5da079 100644 --- a/src/views/secondHandCar/wantBuy.vue +++ b/src/views/secondHandCar/wantBuy.vue @@ -157,9 +157,9 @@ export default { this.supplierName=res.data?.supplierName this.supplierCode=res.data?.supplierCode if(res.data.vehicleType.includes(',')){ - let res=res.data.vehicleType?.split(',') - this.form.vehicleType=res[0] - this.ortherReason=res[1] + let result=res.data.vehicleType?.split(',') + this.form.vehicleType=result[0] + this.ortherReason=result[1] } } let wantBuyFormInfo=localStorage.getItem("wantBuyFormInfo") ? JSON.parse(localStorage.getItem("wantBuyFormInfo")) : '' diff --git a/src/views/secondHandCar/wantBuySale.vue b/src/views/secondHandCar/wantBuySale.vue index a10a5fcf..47ff02fc 100644 --- a/src/views/secondHandCar/wantBuySale.vue +++ b/src/views/secondHandCar/wantBuySale.vue @@ -214,6 +214,7 @@ export default { .itemInfo{ display: flex; flex-direction: column; + width: 25%; span:first-child{ font-weight: bold; font-size: 14px;