初始化提交

This commit is contained in:
psh
2024-01-18 10:11:54 +08:00
commit df510cdc39
2485 changed files with 208753 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'api/schBasePoint',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'api/schBasePoint/',
method: 'delete',
data: ids
})
}
export function edit(data) {
return request({
url: 'api/schBasePoint',
method: 'put',
data
})
}
export function changeUsed(data) {
return request({
url: 'api/schBasePoint/changeUsed',
method: 'post',
data: data
})
}
export function getPointList(data) {
return request({
url: 'api/schBasePoint/getPointList',
method: 'post',
data
})
}
export default { add, edit, del, changeUsed, getPointList }