qx
qx
1 天以前 6636b48aab02c10b261562abd5dcb6f2c1566a86
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
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'
    })
}
 
 
 
 
// 根据团队体检编号和套餐id获取结账信息
export function getTjCompPay(data) {
  return request({
    url: '/team/pay/getTjCompPay',
    method: 'get',
    params:data
  })
}