mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
17 lines
239 B
JavaScript
17 lines
239 B
JavaScript
import { fetch } from 'utils/fetch';
|
|
|
|
export function getList() {
|
|
return fetch({
|
|
url: '/article/list',
|
|
method: 'get'
|
|
});
|
|
}
|
|
|
|
export function getArticle() {
|
|
return fetch({
|
|
url: '/article/detail',
|
|
method: 'get'
|
|
});
|
|
}
|
|
|