You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.1 KiB
58 lines
1.1 KiB
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 function getPointsByRegionCodes(data) {
|
|
return request({
|
|
url: 'api/schBasePoint/getPointsByRegionCodes',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
export function getCBPointList(data) {
|
|
data = { region_code: 'CB' }
|
|
return request({
|
|
url: 'api/schBasePoint/getPointList',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export default { add, edit, del, changeUsed, getPointList, getCBPointList, getPointsByRegionCodes }
|
|
|