diff --git a/src/components/Blog_box.vue b/src/components/Blog_box.vue index 151b5c9..62390e5 100644 --- a/src/components/Blog_box.vue +++ b/src/components/Blog_box.vue @@ -2,6 +2,7 @@ import {setRandomBGCL} from "../utils/randomBGCL.js"; import {blogImage} from "../utils/imageResource.js"; import DefaultCover from "./DefaultCover.vue"; +import {formatGMTToLocal} from "../utils/formatTime.js"; defineProps({ blog: Object, @@ -15,9 +16,9 @@ defineProps({
-

{{ blog.title }}

+

{{ blog.title || '无标题' }}

{{ blog.poster_name }}

-

{{ blog.post_date }}

+

{{ formatGMTToLocal(blog.post_date, 3) }}

{{ tag }}
diff --git a/src/components/Blog_comment.vue b/src/components/Blog_comment.vue index 8722893..f33e52d 100644 --- a/src/components/Blog_comment.vue +++ b/src/components/Blog_comment.vue @@ -7,6 +7,7 @@
{{ comment.content }} @@ -22,7 +23,7 @@ iconSize="16" fontSize="12" /> - +
收起
@@ -58,6 +60,7 @@ import store from "../store/index.js"; import Blog_commentReplyDisplay from "./Blog_commentReplyDisplay.vue"; import Blog_commentInput from "./Blog_replyInput.vue"; import {ArrowUp} from "@element-plus/icons-vue"; +import router from "../router/index.js"; // 定义 props const props = defineProps({ @@ -68,6 +71,9 @@ const props = defineProps({ isSub: { type: Boolean, default: false + }, + blogAuthorUid: { + type: Number } }); @@ -76,6 +82,10 @@ const replyDisplayRef = ref(null); const replyDisplay = ref(false); const replyInputDisplay = ref(false); const toggleReplyInputDisplay = () => { + if (!store.getters.hasUserInfo) { + router.push('/login'); + return; + } replyInputDisplay.value = ! replyInputDisplay.value; } @@ -151,6 +161,18 @@ const clickDeleteBtn = async (isLiked) => { font-size: 14px; margin-right: 10px; } +.author-tag { + background: #00e7e7; + color: black; + padding: 0 2px; + height: 20px; + font-size: 12px; + font-weight: bold; +} +.theme-light .author-tag { + background: #008686; + color: white; +} .comment-text { margin: 5px 0; @@ -185,7 +207,6 @@ const clickDeleteBtn = async (isLiked) => { width: 50px; } .reply { - width: 50px; font-size: 13px; opacity: 0.6; } diff --git a/src/components/Blog_commentDisplay.vue b/src/components/Blog_commentDisplay.vue index b590c86..6638b4d 100644 --- a/src/components/Blog_commentDisplay.vue +++ b/src/components/Blog_commentDisplay.vue @@ -6,6 +6,7 @@ @@ -41,6 +42,9 @@ const props = defineProps({ type: Number, default: null }, + blogAuthorUid: { + type: Number + } }) // 数据相关 const comments = ref([]) // 评论列表 @@ -67,6 +71,9 @@ defineExpose({addCommentToFront, reSort}); const fetchComments = async (pageNum, sortMode) => { + if (!(sortMode > -1)) { + sortMode = store.state.userPreference.blogSortMode; + } // await new Promise(resolve => setTimeout(resolve, 1000));// 测试测试 // return { // list: (() => { diff --git a/src/components/Blog_commentReplyDisplay.vue b/src/components/Blog_commentReplyDisplay.vue index 76d9490..05d0767 100644 --- a/src/components/Blog_commentReplyDisplay.vue +++ b/src/components/Blog_commentReplyDisplay.vue @@ -17,6 +17,9 @@ const props = defineProps({ }, replyDisplay: { type: Boolean + }, + blogAuthorUid: { + type: Number } }); @@ -41,6 +44,9 @@ const isLoading = ref(false); const pageSize = 7; const fetchComments = async (pageNum, sortMode) => { + if (!(sortMode > -1)) { + sortMode = store.state.userPreference.blogSortMode; + } isLoading.value = true; // await new Promise(resolve => setTimeout(resolve, 1000));// 测试测试 @@ -108,6 +114,7 @@ watch(() => props.replyDisplay, (newValue, oldValue) => {
diff --git a/src/components/Blog_replyInput.vue b/src/components/Blog_replyInput.vue index d36d237..9661486 100644 --- a/src/components/Blog_replyInput.vue +++ b/src/components/Blog_replyInput.vue @@ -82,7 +82,7 @@ const submitComment = async () => { "content": commentBody, "date": getCurrentISODateTime(), "father": 0, - "id": String(response.commentId), + "id": response.commentId, "likes": 0, "poster_name": store.state.userInfo.username, "profile": store.state.userInfo.profile, @@ -90,7 +90,7 @@ const submitComment = async () => { }); commentInput.value = ''; // 清空输入框 } else { - swal.tip('error', '发送失败, 未知错误'); + swal.tip('error', '发送失败'); } } catch { swal.tip('error', '发送失败, 网络错误'); diff --git a/src/pages/accountPages/Account.vue b/src/pages/accountPages/Account.vue index a0e0258..987395e 100644 --- a/src/pages/accountPages/Account.vue +++ b/src/pages/accountPages/Account.vue @@ -27,9 +27,9 @@ onMounted(() => {
  • 账号设置
  • -
  • - 个人主页 -
  • + + +
  • 稿件管理
  • diff --git a/src/pages/accountPages/Account_setting.vue b/src/pages/accountPages/Account_setting.vue index 2e85004..0015863 100644 --- a/src/pages/accountPages/Account_setting.vue +++ b/src/pages/accountPages/Account_setting.vue @@ -192,23 +192,23 @@ watch(autoSaveInterval, () => { -
    -
    - - 自动保存 + + + - -
    + + + + + + + + + diff --git a/src/pages/blogPages/SingleBlog_page.vue b/src/pages/blogPages/SingleBlog_page.vue index 079ee1c..3d3f76e 100644 --- a/src/pages/blogPages/SingleBlog_page.vue +++ b/src/pages/blogPages/SingleBlog_page.vue @@ -46,7 +46,9 @@ const checkWindowSize = () => { // 在组件挂载时获取数据 onMounted(async () => { - console.log(sortMode.value, 'ads') + if (store.state.userPreference.blogSortMode === undefined) { + store.commit('setPreferenceValue', {blogSortMode: 1}); + } checkWindowSize(); window.addEventListener('resize', checkWindowSize); @@ -149,7 +151,7 @@ const submitComment = async () => { "likes": 0, "poster_name": store.state.userInfo.username, "profile": store.state.userInfo.profile, - "uid": store.state.userInfo.uid + "uid": Number(store.state.userInfo.uid) }) } else { swal.tip('error', '发送失败, 未知错误'); @@ -234,7 +236,7 @@ const changeSort = () => {
    - + {{ ['降序', '升序'][sortMode] }} @@ -249,6 +251,7 @@ const changeSort = () => { :scroll-container="scrollRef" :blog-id="Number(id)" :sort-mode="sortMode" + :blog-author-uid="blog.poster" />

    不允许评论

    diff --git a/src/pages/blogPages/blogEditor.vue b/src/pages/blogPages/blogEditor.vue index 6624474..9575315 100644 --- a/src/pages/blogPages/blogEditor.vue +++ b/src/pages/blogPages/blogEditor.vue @@ -3,7 +3,7 @@