mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-09-10 21:30:14 +08:00
29 lines
473 B
JavaScript
29 lines
473 B
JavaScript
import request from '@/utils/request'
|
|
|
|
export function fetchDataList(page, pageSize, data) {
|
|
return request({
|
|
url: '/user/apiExtDfs/list',
|
|
method: 'post',
|
|
data: {
|
|
page,
|
|
pageSize,
|
|
...data
|
|
}
|
|
})
|
|
}
|
|
|
|
export function statistics() {
|
|
return request({
|
|
url: '/user/apiExtDfs/statistics',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export function delData(id) {
|
|
return request({
|
|
url: '/user/apiExtDfs/del',
|
|
method: 'post',
|
|
data: { id }
|
|
})
|
|
}
|