You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
427 B
22 lines
427 B
import request from '@/utils/request' |
|
|
|
// 资讯主页 |
|
export function articleIndex(data){ |
|
return request.get('/article/index', data, { |
|
login: false, |
|
}) |
|
} |
|
|
|
// 资讯分类 |
|
export function articleCategory(data){ |
|
return request.get('/article/listArticleCategory', data, { |
|
login: false, |
|
}) |
|
} |
|
|
|
// 资讯分类查询 |
|
export function getArticleList(data){ |
|
return request.get('/article/list', data, { |
|
login: false, |
|
}) |
|
} |