feat: add legal tabs and update header assets

Switch the legal page to tabbed EULA/privacy content with URL sync, update header styling, and migrate footer icons to Ant Design.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-11 07:00:05 +08:00
parent b91855095b
commit 86e259a500
12 changed files with 324 additions and 84 deletions
+5 -5
View File
@@ -7,9 +7,9 @@ interface FirearmParams extends PageQueryParams {
}
/**
* 查询武器列表
* Fetch firearm list
*
* @param params 分页查询参数¬
* @param params Paged query parameters
*/
export async function getFirearms(params?: FirearmParams): Promise<Page<Firearm>> {
let uri = "/firearms"
@@ -28,9 +28,9 @@ export async function getFirearms(params?: FirearmParams): Promise<Page<Firearm>
}
/**
* 根据 ID 查询武器
* Fetch firearm by ID
*
* @param id 武器 ID
* @param id Firearm ID
*/
export async function getFirearm(id: number): Promise<Firearm> {
const { data } = await WebClient.get<Firearm>(`/firearms/${id}`)
@@ -38,7 +38,7 @@ export async function getFirearm(id: number): Promise<Firearm> {
}
/**
* 新建武器
* Create firearm
* @param request
*/
export async function addFirearm(request: AddFirearmRequest): Promise<Firearm> {