修改博客时间格式

This commit is contained in:
Guarp 2025-03-15 09:02:10 +08:00
parent a59bf199d5
commit e3fc4f04c4

View File

@ -11,7 +11,7 @@ import Blog_rootComment from "../../components/Blog_comment.vue";
import {getInfoWithPages} from "../../utils/getInfoWithPages.js"; import {getInfoWithPages} from "../../utils/getInfoWithPages.js";
import Blog_commentDisplay from "../../components/Blog_commentDisplay.vue"; import Blog_commentDisplay from "../../components/Blog_commentDisplay.vue";
import Profile_display from "../../components/Profile_display.vue"; import Profile_display from "../../components/Profile_display.vue";
import {getCurrentISODateTime} from "../../utils/formatTime.js"; import {formatGMTToLocal, getCurrentISODateTime} from "../../utils/formatTime.js";
// //
const route = useRoute() const route = useRoute()
@ -37,6 +37,7 @@ const commentInputFocus = ref(false);
const commentButtonFocus = ref(false); const commentButtonFocus = ref(false);
const commentSubmitLoading = ref(false); const commentSubmitLoading = ref(false);
const checkWindowSize = () => { const checkWindowSize = () => {
windowWidth.value = window.innerWidth; windowWidth.value = window.innerWidth;
}; };
@ -172,7 +173,7 @@ const submitComment = async () => {
</div> </div>
<div class="info-text"> <div class="info-text">
<span class="username-text">{{ posterInfo?.username || '' }}</span> <span class="username-text">{{ posterInfo?.username || '' }}</span>
<span class="date-text">{{ blog.post_date }}</span> <span class="date-text">最后更新: {{ formatGMTToLocal(blog.edit_date, 3) }}</span>
</div> </div>
</div> </div>