xiangpei
2024-11-28 cf2faab021222e1e345e8098da38f2c24ea8b504
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
import request from '@/utils/request'
 
// 获取投资项目基础信息表分页
export const getProjectInvestmentInfos = (params) => {
    return request({
        url: "/project/investmentInfo/page",
        method: "GET",
        params: params
    })
}
 
// 获取投资项目基础信息表列表
export const getProjectInvestmentInfoList = () => {
    return request({
        url: "/project/investmentInfo/list",
        method: "GET"
    })
}
 
// 通过id获取投资项目基础信息表
export const getProjectInvestmentInfoById = (params) => {
    return request({
        url: "/project/investmentInfo/" + params,
        method: "GET"
    })
}
 
// 通过id删除投资项目基础信息表
export const deleteProjectInvestmentInfoById = (params) => {
    return request({
        url: "/project/investmentInfo/" + params,
        method: "DELETE"
    })
}
 
// 批量删除投资项目基础信息表
export const deleteProjectInvestmentInfoByIds = (params) => {
    return request({
        url: "/project/investmentInfo/batch",
        method: "DELETE",
        data: params
    })
}
 
// 修改投资项目基础信息表
export const editProjectInvestmentInfo = (params) => {
    return request({
        url: "/project/investmentInfo/",
        method: "PUT",
        data: params
    })
}
 
// 添加投资项目基础信息表
export const addProjectInvestmentInfo = (params) => {
    return request({
        url: "/project/investmentInfo/",
        method: "POST",
        data: params
    })
}