qx
qx
2025-04-10 e6223f3130a1431098c15ef4b9174f2b751a2e66
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
    })
  }