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