diff --git a/packages/ui/certd-client/src/views/framework/home/dashboard/index.vue b/packages/ui/certd-client/src/views/framework/home/dashboard/index.vue index f939db99..c0cc510c 100644 --- a/packages/ui/certd-client/src/views/framework/home/dashboard/index.vue +++ b/packages/ui/certd-client/src/views/framework/home/dashboard/index.vue @@ -182,7 +182,7 @@ const userInfo: ComputedRef = computed(() => { return userStore.getUserInfo; }); const now = computed(() => { - const serverTime = settingStore.app.deltaTime + Date.now(); + const serverTime = Date.now() - settingStore.app.deltaTime; return dayjs(serverTime).format("YYYY-MM-DD HH:mm:ss"); });