修复种子封面路径

Change-Id: I9e5560fbdf226bd0ede9e35b8dbc1249ed67ced4
diff --git a/src/pages/FriendMoments/FriendMoments.jsx b/src/pages/FriendMoments/FriendMoments.jsx
index 9595b8b..c642772 100644
--- a/src/pages/FriendMoments/FriendMoments.jsx
+++ b/src/pages/FriendMoments/FriendMoments.jsx
@@ -9,7 +9,7 @@
 const formatImageUrl = (url) => {
   if (!url) return '';
   const filename = url.split('/').pop(); // 提取文件名部分
-  return `http://localhost:8080/uploads/post/${filename}`;
+  return `http://localhost:5011/uploads/dynamic/${filename}`;
 };
 
 const FriendMoments = () => {