table.js 147 B

12345678910
  1. import fetch from '@/utils/fetch'
  2. export function getList(params) {
  3. return fetch({
  4. url: '/table/list',
  5. method: 'get',
  6. params
  7. })
  8. }