From a790793c5f27c8438ab5e4e4712249bf5a3c76dc Mon Sep 17 00:00:00 2001 From: TianyangZhang Date: Thu, 11 Dec 2025 10:47:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20bug--gx=20-=E4=BF=AE=E6=94=B9=20?= =?UTF-8?q?=E8=BD=A6=E8=BE=86=E9=A2=84=E5=AE=9A=E6=97=B6=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ofm/vehicle_form.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/ofm/vehicle_form.vue b/src/views/ofm/vehicle_form.vue index e5eab27a..6f68cf50 100644 --- a/src/views/ofm/vehicle_form.vue +++ b/src/views/ofm/vehicle_form.vue @@ -14,7 +14,7 @@ - + { slot.sloted = false; @@ -247,14 +247,14 @@ export default { }, mdateChange(){ let that = this; - if(that.form.vehiclereg!==''&&that.form.vehiclereg!==null){ + if(that.form.vehreg!==''&&that.form.vehreg!==null){ that.getmRoomSlot(); } }, vehChange(){ let that = this; that.vehRegList.forEach(item=>{ - if(item.id == that.form.vehiclereg){ + if(item.id == that.form.vehreg){ that.mroomName = item.name; that.bookingTitle = item.name+"预定"; if(that.form.vdate!==''&&that.form.vdate!==null){ @@ -285,7 +285,7 @@ export default { }, handleEidt(id) { let that = this; - that.$API.ofm.vehicleslot.list.req({booking:id,page:0}).then(res=>{ + that.$API.ofm.vehicleslot.list.req({vehicle_use:id,page:0}).then(res=>{ res.forEach(item=>{ that.timesList[item.slot].isSelect = true; })