111
lkk
2024-12-19 93772a2ef59f61f613d7ca6b6cd3b5065c63a103
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
    })
  }