jinjianback1.1/src/api/table.js

10 lines
147 B
JavaScript
Raw Normal View History

2017-08-30 17:42:06 +08:00
import fetch from '@/utils/fetch'
2017-06-26 18:45:30 +08:00
export function getList(params) {
return fetch({
url: '/table/list',
method: 'get',
params
2017-08-30 17:42:06 +08:00
})
2017-06-26 18:45:30 +08:00
}