预约课程-时间限制修改

This commit is contained in:
lyc 2024-09-18 10:53:22 +08:00
parent ddd53943b8
commit aee945f90f
1 changed files with 12 additions and 5 deletions

View File

@ -178,16 +178,23 @@ const disabledHours = ()=>{
}
// -
const disabledMinute = (hour,role) => {
if(form.time == null) return
if(getCurrentTime('YYYY-MM-DD') == form.day){
const arrs = []
if(role == 'start'){
let nowHour = new Date().getHours().toString().padStart(2, '0');
if(nowHour < hour){
return []
}
else{
for (let i = 0; i < 60; i++) {
if (new Date().getMinutes() <= i) continue;
arrs.push(i)
}
return arrs;
}
else{
}
if(role == 'end'){
if(form.time[0]) return []
}
}