Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / CI OK (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import { requestClient } from '#/api/request';
|
|
|
|
export namespace Demo02CategoryApi {
|
|
/** 示例分类信息 */
|
|
export interface Demo02Category {
|
|
id: number; // 编号
|
|
name?: string; // 名字
|
|
parentId?: number; // 父级编号
|
|
children?: Demo02Category[];
|
|
}
|
|
}
|
|
|
|
/** 查询示例分类列表 */
|
|
export function getDemo02CategoryList(params: any) {
|
|
return requestClient.get<Demo02CategoryApi.Demo02Category[]>(
|
|
'/infra/demo02-category/list',
|
|
{ params },
|
|
);
|
|
}
|
|
|
|
/** 查询示例分类详情 */
|
|
export function getDemo02Category(id: number) {
|
|
return requestClient.get<Demo02CategoryApi.Demo02Category>(
|
|
`/infra/demo02-category/get?id=${id}`,
|
|
);
|
|
}
|
|
|
|
/** 新增示例分类 */
|
|
export function createDemo02Category(data: Demo02CategoryApi.Demo02Category) {
|
|
return requestClient.post('/infra/demo02-category/create', data);
|
|
}
|
|
|
|
/** 修改示例分类 */
|
|
export function updateDemo02Category(data: Demo02CategoryApi.Demo02Category) {
|
|
return requestClient.put('/infra/demo02-category/update', data);
|
|
}
|
|
|
|
/** 删除示例分类 */
|
|
export function deleteDemo02Category(id: number) {
|
|
return requestClient.delete(`/infra/demo02-category/delete?id=${id}`);
|
|
}
|
|
|
|
/** 导出示例分类 */
|
|
export function exportDemo02Category(params: any) {
|
|
return requestClient.download('/infra/demo02-category/export-excel', {
|
|
params,
|
|
});
|
|
}
|