1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| import request from '@/utils/request'
|
| // 查询体检记录列表
| export function getCustomerBlack(query) {
| return request({
| url: '/hosp/cusBlack/getCustomerBlack',
| method: 'get',
| params: query
| })
| }
|
| // 查询体检记录列表
| export function putCustomerBlack(data) {
| return request({
| url: '/hosp/cusBlack/putCustomerBlack',
| method: 'put',
| data: data
| })
| }
|
|