niucloud-admin/web/app/api/article.ts
wangchen147 295fb5d386 1.0.0
2024-04-03 15:26:01 +08:00

27 lines
510 B
TypeScript

/**
* 文章列表
*/
export function getArticleList(params: Record<string, any>) {
return request.get('article/article', params)
}
/**
* 文章列表
*/
export function getArticleAll(params: Record<string, any>) {
return request.get('article/article/all', params)
}
/**
* 文章详情
*/
export function getArticleDetail(id: number) {
return request.get(`article/article/${id}`)
}
/**
* 文章分类
*/
export function getArticleCategory() {
return request.get('article/category')
}