fe-drone-ci/src/api/article.js

17 lines
232 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'
})
}