添加比赛记录接口

This commit is contained in:
kron
2025-06-09 12:29:48 +08:00
parent 0420f770c3
commit 6614e44688
2 changed files with 15 additions and 1 deletions

View File

@@ -176,3 +176,7 @@ export const simulShootAPI = (device_id, x, y) => {
}
return request("POST", "/index/arrow", data);
};
export const getBattleListAPI = (battleType) => {
return request("POST", "/user/battle/list", { battleType });
};