Blame view

admin-web-master/src/api/cereBusinessInfo.js 1.12 KB
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
36
37
38
39
40
41
42
43
44
45
  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
    })
  }
  
3ea048fb   杨鑫   最新修改
46
47
48
49
50
51
52
53
54
  // 招商统计分析
  export function getInvestmentStatistics(data) {
    return request({
      url: '/attractInvestmentStatisticsController/getInvestmentStatistics',
      method: 'post',
      data
    })
  }
  
e22d7ad7   杨鑫   最新
55
56
57
58
59
60
61
62
  // 招商方案统计
  export function getInvestmentPlanStatistics(data) {
    return request({
      url: '/attractInvestmentStatisticsController/getInvestmentPlanStatistics',
      method: 'post',
      data
    })
  }