table.js 151 Bytes
Newer Older
Pan's avatar
Pan committed
1 2 3 4 5 6 7 8 9 10 11
import fetch from '@/utils/fetch';

export function getList(params) {
  return fetch({
    url: '/table/list',
    method: 'get',
    params
  });
}