mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
import request from '@/utils/request'
|
|
|
|
export function getList (params) {
|
|
return request({
|
|
url: '/table/list',
|
|
method: 'get',
|
|
params
|
|
})
|
|
}
|