game2006admin/src/api/article_table.js
2017-08-28 13:18:35 +08:00

18 lines
284 B
JavaScript

import fetch from 'utils/fetch'
export function fetchList(query) {
return fetch({
url: '/article_table/list',
method: 'get',
params: query
})
}
export function fetchPv(pv) {
return fetch({
url: '/article_table/pv',
method: 'get',
params: { pv }
})
}