game2006admin/src/api/article.js
2017-04-22 21:44:36 +08:00

9 lines
135 B
JavaScript

import { fetch } from 'utils/fetch';
export function getList() {
return fetch({
url: '/article/list',
method: 'get'
});
}