3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
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
})
}
|