mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Calendar): fix timezone
This commit is contained in:
parent
3b120e3c5b
commit
33a32903e0
@ -6,7 +6,7 @@ function getMonths(minDate, maxDate) {
|
||||
var cursor = getDate(minDate);
|
||||
|
||||
cursor.setDate(1);
|
||||
cursor.setMinutes(cursor.getMinutes() - cursor.getTimezoneOffset())
|
||||
cursor.setMinutes(cursor.getMinutes() - cursor.getTimezoneOffset());
|
||||
|
||||
do {
|
||||
months.push(cursor.getTime());
|
||||
|
@ -497,7 +497,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
>
|
||||
<month
|
||||
class="month"
|
||||
data-date="{{1325347200000}}"
|
||||
data-date="{{1325376000000}}"
|
||||
id="month0"
|
||||
bind:click="onClickDay"
|
||||
>
|
||||
@ -892,7 +892,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
</month>
|
||||
<month
|
||||
class="month"
|
||||
data-date="{{1328025600000}}"
|
||||
data-date="{{1328054400000}}"
|
||||
id="month1"
|
||||
bind:click="onClickDay"
|
||||
>
|
||||
@ -1270,7 +1270,7 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
</month>
|
||||
<month
|
||||
class="month"
|
||||
data-date="{{1330531200000}}"
|
||||
data-date="{{1330560000000}}"
|
||||
id="month2"
|
||||
bind:click="onClickDay"
|
||||
>
|
||||
|
Loading…
x
Reference in New Issue
Block a user