mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-09-18 02:19:56 +08:00
26 lines
386 B
Vue
26 lines
386 B
Vue
import request from '@/utils/request'
|
|
|
|
export function getList(data) {
|
|
return request({
|
|
url: '/table/getList',
|
|
method: 'post',
|
|
data,
|
|
})
|
|
}
|
|
|
|
export function doEdit(data) {
|
|
return request({
|
|
url: '/table/doEdit',
|
|
method: 'post',
|
|
data,
|
|
})
|
|
}
|
|
|
|
export function doDelete(data) {
|
|
return request({
|
|
url: '/table/doDelete',
|
|
method: 'post',
|
|
data,
|
|
})
|
|
}
|