diff --git a/frontend_nuxt/components/PostChangeLogItem.vue b/frontend_nuxt/components/PostChangeLogItem.vue index 71e8d248b..2043ecea2 100644 --- a/frontend_nuxt/components/PostChangeLogItem.vue +++ b/frontend_nuxt/components/PostChangeLogItem.vue @@ -11,8 +11,18 @@ {{ log.username }} 变更了文章内容 变更了文章标题 - 变更了文章分类 - 变更了文章标签 + +
变更了文章分类, 从
+ +
修改为
+ +
+ +
变更了文章标签, 从
+ +
修改为
+ +
@@ -46,6 +56,8 @@ import 'diff2html/bundles/css/diff2html.min.css' import BaseImage from '~/components/BaseImage.vue' import { navigateTo } from 'nuxt/app' import { themeState } from '~/utils/theme' +import ArticleCategory from '~/components/ArticleCategory.vue' +import ArticleTags from '~/components/ArticleTags.vue' const props = defineProps({ log: Object, title: String, @@ -124,4 +136,11 @@ const diffHtml = computed(() => { .content-diff { margin-top: 8px; } + +.change-log-category { + display: flex; + flex-direction: row; + gap: 4px; + align-items: center; +}