项目初始化

This commit is contained in:
chenxiaoxi
2021-04-19 18:00:27 +08:00
commit b2620a08a1
164 changed files with 14408 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
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,
})
}