article.js 234 Bytes
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'
  })
}