su
su1124
2023-12-29 d10c7c728234b5a9098b7bd5bb7a914a14e33c20
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
100
101
102
103
104
105
106
107
108
import request from '@/utils/request'
 
// 查询客户信息列表
export function listCustomer(query) {
  return request({
    url: '/hosp/customer/list',
    method: 'get',
    params: query
  })
}
 
//体检(退费)页面查询接口
export function getTjRefundList(form) {
  return request({
    url: '/hosp/water/findTjRefundListByNameAndTjNumAndPhone',
    method: 'get',
    params: form
  })
}
 
 
// 体检退费项目详情查询接口
export function getTjList(data) {
  return request({
    url: '/hosp/water/getTjRefundProInfoVoList',
    method: 'get',
    params: data
  })
}
 
// 体检退费按钮接口
export function getTjRefund(data) {
  return request({
    url: '/hosp/water/tjRefund',
    method: 'post',
    data: data
  })
}
 
// 体检(收费)页面查询接口
export function getfindTj(form) {
  return request({
    url: '/hosp/water/findTjCollectFeesByNameAndTjNumAndPhone',
    method: 'get',
    params: form
  })
}
 
// 体检已收费未收费信息查询接口
export function getByTjNum(data) {
  return request({
    url: '/hosp/water/findTjChargedButNotChargedByTjNum',
    method: 'get',
    params: data
  })
}
 
// 体检点击收费按钮接口
export function getwater(data) {
  return request({
    url: '/hosp/water',
    method: 'put',
    data: data
  })
}
 
// 查询客户信息详细
export function getCustomer(cusId) {
  return request({
    url: '/hosp/customer/' + cusId,
    method: 'get'
  })
}
 
// 新增客户信息
export function addCustomer(data) {
  return request({
    url: '/hosp/customer',
    method: 'post',
    data: data
  })
}
 
// 修改客户信息
export function updateCustomer(data) {
  return request({
    url: '/hosp/customer',
    method: 'put',
    data: data
  })
}
 
// 删除客户信息
export function delCustomer(cusId) {
  return request({
    url: '/hosp/customer/' + cusId,
    method: 'delete'
  })
}
 
// 修改客户信息
export function getpay(data) {
  return request({
    url: '/team/pay',
    method: 'post',
    data: data
  })
}