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.
 
 
 
 
 

53 lines
1.1 KiB

import request from '@/utils/request'
// 查询造价变幅预警管理列表
export function listCostChangeWarning(query) {
return request({
url: '/build/costChangeWarning/list',
method: 'post',
data: query
})
}
// 查询造价变幅预警管理详细
export function getCostChangeWarning(id) {
return request({
url: '/build/costChangeWarning/' + id,
method: 'get'
})
}
// 新增造价变幅预警管理
export function addCostChangeWarning(data) {
return request({
url: '/build/costChangeWarning',
method: 'post',
data: data
})
}
// 修改造价变幅预警管理
export function updateCostChangeWarning(data) {
return request({
url: '/build/costChangeWarning',
method: 'put',
data: data
})
}
// 删除造价变幅预警管理
export function delCostChangeWarning(id) {
return request({
url: '/build/costChangeWarning/' + id,
method: 'delete'
})
}
// 导出造价变幅预警管理
export function exportCostChangeWarning(query) {
return request({
url: '/build/costChangeWarning/export',
method: 'get',
params: query
})
}