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.
23 lines
360 B
23 lines
360 B
3 years ago
|
import request from '@/utils/request'
|
||
|
|
||
|
|
||
|
export function getIndexData(q){
|
||
|
return request.get('index', q, {login: false})
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
* 文章列表
|
||
|
* */
|
||
|
export function getArticle(q) {
|
||
|
return request.get("/article/list", q, {
|
||
|
login: false
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* 文章详情
|
||
|
* */
|
||
|
export function getArticleDetail(q) {
|
||
|
return request.get("/article/details/" + q.id);
|
||
|
}
|