This commit is contained in:
shijing 2025-12-01 14:23:20 +08:00
commit 973d3485ed
1 changed files with 5 additions and 1 deletions

View File

@ -222,7 +222,11 @@ export default {
})
that.$API.ofm.mroomslot.list.req(form).then(res=>{
res.forEach(item=>{
that.timesList[item.slot].sloted = true;
if (item.booking == that.form.id) {
that.timesList[item.slot].isSelect = true;
}else{
that.timesList[item.slot].sloted = true;
}
})
})
},