mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
10 lines
153 B
JavaScript
10 lines
153 B
JavaScript
import request from '@/utils/request'
|
|
|
|
export function getList(params) {
|
|
return request({
|
|
url: '/table/list',
|
|
method: 'get',
|
|
params
|
|
})
|
|
}
|