faglgl.js
679 Bytes
import request from '@/utils/request'
// 招商方案列表
export function getList(data) {
return request({
url: '/cereInvestmentProposal/queryByPage',
method: 'post',
data
})
}
// 招商方案删除
export function colse(data) {
return request({
url: '/cereInvestmentProposal/deleteById',
method: 'post',
data
})
}
// 招商方案新增
export function add(data) {
return request({
url: '/cereInvestmentProposal/addInvestmentProposal',
method: 'post',
data
})
}
// 招商方案编辑
export function edit(data) {
return request({
url: '/cereInvestmentProposal/editInvestmentProposal',
method: 'post',
data
})
}