增加帖子详情api与前端页面,需完善按钮与显示

Change-Id: I84d3aace81055b8dc372f91942523d163b1ec463
diff --git a/JWLLL/API_front/src/router/index.jsx b/JWLLL/API_front/src/router/index.jsx
index 64191ac..023e8f6 100644
--- a/JWLLL/API_front/src/router/index.jsx
+++ b/JWLLL/API_front/src/router/index.jsx
@@ -3,6 +3,7 @@
 import UploadPage from '../components/UploadPage'
 import PlaceholderPage from '../components/PlaceholderPage'
 import HomeFeed from '../components/HomeFeed'
+import PostDetail from '../components/PostDetail'
 
 export default function AppRouter() {
   return (
@@ -10,6 +11,7 @@
       <Route path="/" element={<Navigate to="/dashboard" replace />} />
 
       <Route path="/home"      element={<HomeFeed />} />
+      <Route path="/post/:id"  element={<PostDetail />} />
       <Route path="/notebooks" element={<PlaceholderPage pageId="notebooks" />} />
       <Route path="/activity"  element={<PlaceholderPage pageId="activity" />} />
       <Route path="/notes"     element={<PlaceholderPage pageId="notes" />} />