diff --git a/src/pages/common/PostTopic.vue b/src/pages/common/PostTopic.vue
index 4353953a..e794d1c0 100644
--- a/src/pages/common/PostTopic.vue
+++ b/src/pages/common/PostTopic.vue
@@ -4,8 +4,10 @@
- {{ topicInfo.topic.name }}({{ curTopic }})
- {{ topicInfo.topic.desc }}
+ {{ curTopic }}-{{ topicInfo.topic.name }}
+
+ {{ topicInfo.topic.desc }}
+
@@ -98,6 +100,7 @@ import VpOverlayUser from "@comp/viewPost/vp-overlay-user.vue";
import { usePageReachBottom } from "@hooks/reachBottom.js";
import postReq from "@req/postReq.js";
import topicReq from "@req/topicReq.js";
+import useAppStore from "@store/app.js";
import useBBSStore from "@store/bbs.js";
import { createPost } from "@utils/TGWindow.js";
import { storeToRefs } from "pinia";
@@ -112,6 +115,8 @@ const route = useRoute();
const router = useRouter();
const { isReachBottom } = usePageReachBottom();
+const { sidebar } = storeToRefs(useAppStore());
+const { gameList } = storeToRefs(useBBSStore());
const curGid = ref