qx
2024-06-20 772d8df8a3ee02a6fe2dbd6ba7216e3e3ee0ec63
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
import request from '@/utils/request'
 
// 所有公司体检收费数据查询接口
export function listInfo(compId) {
    return request({
        url: '/team/pay',
        method: 'get',
        params: {
            compId:compId
        }
    })
}
 
// 团体体检收费接口
export function getpay(data) {
    return request({
        url: '/team/pay' ,
        method: 'post',
        data:data
    })
}
 
// 新增体检单位缴费明细
export function addInfo(data) {
    return request({
        url: '/team/pay/refund',
        method: 'post',
        data: data
    })
}
 
// 修改体检单位缴费明细
export function updateInfo(data) {
    return request({
        url: '/system/info',
        method: 'put',
        data: data
    })
}
 
// 删除体检单位缴费明细
export function delInfo(id) {
    return request({
        url: '/system/info/' + id,
        method: 'delete'
    })
}