12 lines
151 B
JavaScript
12 lines
151 B
JavaScript
|
import fetch from '@/utils/fetch';
|
||
|
|
||
|
export function getList(params) {
|
||
|
return fetch({
|
||
|
url: '/table/list',
|
||
|
method: 'get',
|
||
|
params
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|