cereBusinessInfo.js
1.12 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import request from '@/utils/request'
// 租赁审核
// 查询
export function GetAll(data) {
return request({
url: '/cereBusinessInfo/queryByPage',
method: 'post',
data
})
}
// 单条查询
export function queryGetAll(data) {
return request({
url: '/cereBusinessInfo/queryById',
method: 'post',
data
})
}
// 新增
export function msgadd(data) {
return request({
url: '/cereBusinessInfo/add',
method: 'post',
data
})
}
// 编辑
export function msgedit(data) {
return request({
url: '/cereBusinessInfo/edit',
method: 'post',
data
})
}
// 删除
export function close(data) {
return request({
url: '/cereBusinessInfo/deleteById',
method: 'post',
data
})
}
// 招商统计分析
export function getInvestmentStatistics(data) {
return request({
url: '/attractInvestmentStatisticsController/getInvestmentStatistics',
method: 'post',
data
})
}
// 招商方案统计
export function getInvestmentPlanStatistics(data) {
return request({
url: '/attractInvestmentStatisticsController/getInvestmentPlanStatistics',
method: 'post',
data
})
}