评论界面与后端连接完成

Change-Id: Id7d3f293b964c82533095f020d9720a43422ea68
diff --git a/react-ui/src/pages/Torrent/Comments/service.ts b/react-ui/src/pages/Torrent/Comments/service.ts
index f4243b6..1ea221a 100644
--- a/react-ui/src/pages/Torrent/Comments/service.ts
+++ b/react-ui/src/pages/Torrent/Comments/service.ts
@@ -3,9 +3,8 @@
 
 /** 获取种子评论列表 */
 export async function listComments(torrentId: number) {
-    return request<SysTorrentComment[]>(`/api/system/torrent/comment/list`, {
+    return request<SysTorrentComment[]>(`/api/system/torrent/comment/${torrentId}`, {
         method: 'get',
-        params: { torrentId },
     });
 }