Ver código fonte

play_id => user_id

ssvfdn 3 meses atrás
pai
commit
4d63dc1445
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      apps/web-antd/src/api/player/player_list.ts

+ 1 - 1
apps/web-antd/src/api/player/player_list.ts

@@ -27,7 +27,7 @@ export async function getPlayerList(data:any) {
  * 获取玩家详情
  */
 export async function getPlayerInfo(user_id:string | number) {
-    return requestClient.get<ApiResultInfoData>('/player/detail?player_id=' + user_id, {
+    return requestClient.get<ApiResultInfoData>('/player/detail?user_id=' + user_id, {
         // withCredentials: true,
     });
 }