diff --git a/front/src/views/home/infrastructurePage.vue b/front/src/views/home/infrastructurePage.vue index b89224a6..29e63c13 100644 --- a/front/src/views/home/infrastructurePage.vue +++ b/front/src/views/home/infrastructurePage.vue @@ -73,6 +73,7 @@ v-model:value="roomCerateDate" placeholder="开始日期" value-format="YYYY-MM-DD" + :disabled-date="disabledDate" /> @@ -1260,6 +1262,11 @@ chengguoSearch() } // 时间选择器限制----可用时间查询 + //获取不可选择的日期 + const disabledDate = (current) => { + const time = moment().endOf('day').subtract(1, 'days') + return current && current < time + } //获取不可选择的小时 const disabledStartHours = () => { if (roomEndTime.value) {