2023-02-21 22:40:56 +08:00

19 lines
309 B
JavaScript

import {
request
} from './request'
export function articleList(params) {
return request({
path: '/system/article/list',
params: params,
method: 'GET'
});
}
export function articleQuery(params) {
return request({
path: '/system/article',
params: params,
method: 'GET'
});
}