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 (disabledDay) {
|
||||||
if(startDay.getTime() >= getPrevDay(disabledDay).getTime()) {
|
const endDay = getPrevDay(disabledDay);
|
||||||
|
if (compareDay(startDay, endDay) === -1) {
|
||||||
|
select([startDay, endDay]);
|
||||||
|
} else {
|
||||||
select([date]);
|
select([date]);
|
||||||
}else {
|
|
||||||
select([startDay, getPrevDay(disabledDay)]);
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
select([startDay, date], true);
|
select([startDay, date], true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user