mirror of
https://github.com/jekip/naive-ui-admin.git
synced 2026-02-07 15:02:27 +08:00
11 lines
184 B
TypeScript
11 lines
184 B
TypeScript
import { http } from '@/utils/http/axios';
|
|
|
|
//获取table
|
|
export function getTableList(params) {
|
|
return http.request({
|
|
url: '/table/list',
|
|
method: 'get',
|
|
params,
|
|
});
|
|
}
|