mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-05 06:22:45 +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,
|
|
});
|
|
}
|