diff --git a/frontend/src/views/admin/ProjectMembers.vue b/frontend/src/views/admin/ProjectMembers.vue
index a6c46e8f..2261ad0c 100644
--- a/frontend/src/views/admin/ProjectMembers.vue
+++ b/frontend/src/views/admin/ProjectMembers.vue
@@ -30,7 +30,9 @@
-
+
+ {{ displayDateTime(scope.row.added_at) }}
+
route.params.projectId as string);
diff --git a/frontend/src/views/admin/Projects.vue b/frontend/src/views/admin/Projects.vue
index 39846d14..41226bf9 100644
--- a/frontend/src/views/admin/Projects.vue
+++ b/frontend/src/views/admin/Projects.vue
@@ -25,7 +25,9 @@
{{ statusLabel(scope.row.status) }}
-
+
+ {{ displayDateTime(scope.row.created_at) }}
+
编辑
@@ -48,6 +50,7 @@ import { fetchStudies } from "../../api/studies";
import type { Study } from "../../types/api";
import ProjectForm from "./ProjectForm.vue";
import { useStudyStore } from "../../store/study";
+import { displayDateTime } from "../../utils/display";
const projects = ref([]);
const loading = ref(false);
diff --git a/frontend/src/views/admin/Users.vue b/frontend/src/views/admin/Users.vue
index acc7e421..79378711 100644
--- a/frontend/src/views/admin/Users.vue
+++ b/frontend/src/views/admin/Users.vue
@@ -16,7 +16,9 @@
已禁用
-
+
+ {{ displayDateTime(scope.row.created_at) }}
+
编辑
@@ -65,6 +67,7 @@ import type { UserInfo } from "../../types/api";
import UserForm from "./UserForm.vue";
import UserResetPassword from "./UserResetPassword.vue";
import { useAuthStore } from "../../store/auth";
+import { displayDateTime } from "../../utils/display";
const users = ref([]);
const total = ref(0);