javashop/cms/web/api/article.ts
zhangzhiqiang_z 7cedf9a874 up
2024-01-02 16:18:27 +08:00

27 lines
494 B
TypeScript

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