lyc-dev #163

Merged
lyc merged 2 commits from lyc-dev into main 2024-08-30 14:29:54 +08:00
1 changed files with 11 additions and 5 deletions
Showing only changes of commit 1a6abfaa50 - Show all commits

View File

@ -177,14 +177,19 @@ const disabledHours = ()=>{
} }
} }
// - // -
const disabledMinute = () => { const disabledMinute = (hour,role) => {
if(getCurrentTime('YYYY-MM-DD') == form.day){ if(getCurrentTime('YYYY-MM-DD') == form.day){
const arrs = [] const arrs = []
for (let i = 0; i < 60; i++) { if(role == 'start'){
if (new Date().getMinutes() <= i && form.time[0]) continue; for (let i = 0; i < 60; i++) {
arrs.push(i) if (new Date().getMinutes() <= i) continue;
arrs.push(i)
}
return arrs;
}
else{
if(form.time[0]) return []
} }
return arrs;
} }
} }
@ -204,6 +209,7 @@ const openDialog = (data) => {
// //
form.day = getCurrentTime('YYYY-MM-DD') form.day = getCurrentTime('YYYY-MM-DD')
form.time = [getCurrentTime('HH:mm'), getAfterMinutes(45)] form.time = [getCurrentTime('HH:mm'), getAfterMinutes(45)]
console.log(getCurrentTime('HH:mm'), getAfterMinutes(45))
} }
centerDialogVisible.value = true centerDialogVisible.value = true
} }