zhangback
2025-11-27 3849263b31a16a91ff08acaa42786ecfde76f33c
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import request, {download, requestType} from "@/utils/request";
import {BaseEntityInterface} from "@/utils/globalInterface";
 
export interface TmsQuoteItemI extends BaseEntityInterface {
    id?: number,
    quotePlanId?: number,
    freeName?: string,
    unit?: string,
    price?: string,
    currency?: string,
    createTime?: string,
    updateTime?: string
}
 
 
export interface TmsQuotePlanI extends BaseEntityInterface {
    id?: number,
    systemCode?: string,
    planName?: string,
    customerId?: number,
    customerName?: string,
    projectId?: number,
    projectName?: string,
    contractId?: number,
    contractName?: string,
    effectiveDate?: string,
    expiryDate?: string,
    status?: number,
    createBy?: string,
    createTime?: string,
    updateBy?: string,
    updateTime?: string,
    remark?: string,
    planType?: string,
    items?: TmsQuoteItemI[],
}
 
 
/**
 * 查询报价方案管理列表
 */
export const listTmsQuotePlan: requestType = (query) => {
    return request({
        url: '/tms/tmsQuotePlan/list',
        method: 'get',
        params: query
    })
}
/**
 * 查询报价方案管理详细
 */
export const getTmsQuotePlan: requestType = (id) => {
    return request({
        url: '/tms/tmsQuotePlan/' + id,
        method: 'get'
    })
}
 
/**
 * 新增报价方案管理
 */
export const addTmsQuotePlan: requestType = (data) => {
    return request({
        url: '/tms/tmsQuotePlan',
        method: 'post',
        data
    })
}
 
/**
 * 修改报价方案管理
 */
export const updateTmsQuotePlan: requestType = (data) => {
    return request({
        url: '/tms/tmsQuotePlan',
        method: 'put',
        data
    })
}
 
/**
 * 删除报价方案管理
 */
export const delTmsQuotePlan: requestType = (id) => {
    return request({
        url: '/tms/tmsQuotePlan/' + id,
        method: 'delete'
    })
}
 
 
/**
 * 导出报价方案管理
 */
export const exportTmsQuotePlan: requestType = (query) => {
    return new Promise<any>(() => {
        download('/tms/tmsQuotePlan/export', query);
    })
}