duhuizhe
2023-10-16 3aa55dd3f62cee2c1c4c0aa74e1570acf83f8927
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
import request from '@/utils/request';
// 顶部项目信息统计
export function getTotal(params) {
  return request({
    url: '/pc/p/project/info/total',
    method: 'get',
    params
  })
}
// 项目信息列表
export function getInfolist(params) {
  return request({
    url: '/pc/p/project/info/list',
    method: 'get',
    params
  })
}
// 预警设置 修改列表上项目预警状态
export function updateInfoStatus(data) {
  return request({
    url: '/pc/p/project/info/status/update',
    method: 'post',
    data: data
  })
}
// 预警设置 获取预警列表
export function getWarnTempletelist(params) {
  return request({
    url: '/pc/p/temp/expiration/notify/list',
    method: 'get',
    params
  })
}
// 预警设置 保存
export function warnTempleteSave(data) {
  return request({
    url: '/pc/p/project/info/tempNotify/save',
    method: 'post',
    data: data
  })
}
// 下达投资 获取已经下达投资的额度
export function getInvestInfoList(params) {
  return request({
    url: '/pc/p/release/invest/info/list',
    method: 'get',
    params
  })
}
// 下达投资 保存
export function investInfoSave(data) {
  return request({
    url: '/pc/p/project/info/investInfo/save',
    method: 'post',
    data: data
  })
}