-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
Description
- I have searched the issues of this repository and believe that this is not a duplicate.
Version
3.2.20
Environment
macos, Chrome, vue3
Reproduction link
https://github.com/gaokun/antdv-datepicker
Steps to reproduce
详见: https://github.com/gaokun/antdv-datepicker
What is expected?
显示成8点
What is actually happening?
显示为0点
Additional Info
示例从西一区, UTC, 到东一区, 时间应该依次相差1小时, 但UTC时区的显示错误
但是popup中的time picker有一部分显示的是正确的

Code
<template>
<p>本示例展示了ant design vue datepicker在 <b>UTC时区</b> 时显示的异常</p>
<p>注意: date-picker的value都为带时区的dayjs对象</p>
<ul>
<li>
<span>西一区</span>
<a-date-picker
v-model:value="west1DateValue"
show-time
placeholder="Select Time"
/>
</li>
<li>
<span>UTC</span>
<a-date-picker
v-model:value="utcDateValue"
show-time
placeholder="Select Time"
/>
<span style="color: red; font-weight: bold"
>应该显示为8点, 实际显示0点</span
>
</li>
<li>
<span>东一区</span>
<a-date-picker
v-model:value="east1DateValue"
show-time
placeholder="Select Time"
/>
</li>
</ul>
</template>
<script setup>
import { ref } from "vue";
import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";
import timezone from "dayjs/plugin/timezone";
dayjs.extend(utc);
dayjs.extend(timezone);
const time = 1708243200000;
const utcDateValue = ref(dayjs(time).tz("Etc/GMT"));
const east1DateValue = ref(dayjs(time).tz("Etc/GMT-1"));
const west1DateValue = ref(dayjs(time).tz("Etc/GMT+1"));
</script>
<style scoped>
ul {
li {
display: grid;
grid-gap: 10px;
grid-template-columns: 70px 300px 1fr;
}
}
</style>