mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore(Calendar): using compareDay util (#10198)
This commit is contained in:
parent
6dbd0caf2b
commit
f50c462978
@ -406,10 +406,11 @@ export default defineComponent({
|
||||
);
|
||||
|
||||
if (disabledDay) {
|
||||
if(startDay.getTime() >= getPrevDay(disabledDay).getTime()) {
|
||||
select([date]);
|
||||
const endDay = getPrevDay(disabledDay);
|
||||
if (compareDay(startDay, endDay) === -1) {
|
||||
select([startDay, endDay]);
|
||||
} else {
|
||||
select([startDay, getPrevDay(disabledDay)]);
|
||||
select([date]);
|
||||
}
|
||||
} else {
|
||||
select([startDay, date], true);
|
||||
|
Loading…
x
Reference in New Issue
Block a user