qx
qx
2025-06-11 1204e3becc14a30bc0c22cda1d49f042986fc61d
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import request from '@/utils/request'
 
// 查询客户信息列表
export function listCustomer(query) {
  return request({
    url: '/hosp/customer/getcusList',
    method: 'get',
    params: query
  })
}
 
//体检(退费)页面查询接口
export function getTjRefundList(form) {
  return request({
    url: '/hosp/water/findTjRefundListByNameAndTjNumAndPhone',
    method: 'get',
    params: form
  })
}
 
//体检(退费)页面查询接口
export function getTjRefundList2(form) {
  return request({
    url: '/hosp/water/findTjRefundListByNameAndTjNumAndPhone2',
    method: 'get',
    params: form
  })
}
 
 
// 体检退费项目详情查询接口
export function getTjList(data) {
  return request({
    url: '/hosp/water/getTjRefundProInfoVoList',
    method: 'get',
    params: data
  })
}
 
// 体检退费项目详情查询接口
export function getTjList2(data) {
  return request({
    url: '/hosp/water/getTjRefundProInfoVoList2',
    method: 'get',
    params: data
  })
}
 
// 体检退费按钮接口
export function getTjRefund(data) {
  return request({
    url: '/hosp/water/tjRefund',
    method: 'post',
    data: data
  })
}
 
// 体检退费按钮接口
export function getTjRefund2(data) {
  return request({
    url: '/hosp/water/tjRefund2',
    method: 'post',
    data: data
  })
}
 
// 体检(收费)页面查询接口
export function getfindTj(form) {
  return request({
    // url: '/hosp/water/findTjCollectFeesByNameAndTjNumAndPhone',
    url: '/hosp/water/findTjCollectFeesByNameAndTjNumAndPhoneN',
    method: 'get',
    params: form
  })
}
 
// 体检已收费未收费信息查询接口
export function getByTjNum(data) {
  return request({
    // url: '/hosp/water/findTjChargedButNotChargedByTjNum',
    url: '/hosp/water/findTjChargedButNotChargedByTjNumN',
    method: 'get',
    params: data
  })
}
 
// 体检点击收费按钮接口
export function getwater(data) {
  return request({
    url: '/hosp/water',
    method: 'put',
    data: data
  })
}
export function getwaterSupper(data) {
  return request({
    url: '/hosp/water/supper',
    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
  })
}
 
 
export function getHistryTjOrderByCusIdCard(cusId) {
  return request({
    url: '/hosp/order/getHistryTjOrderByCusId',
    method: 'get',
    params:{
      cusId:cusId
 
    }
  })
}
 
 
 
// 体检点击收费按钮接口
export function getUserinfo(data) {
  return request({
    url: '/hosp/customer/zhuceTjCustomer',
    method: 'post',
    data: data
  })
}