1
lkk
6 天以前 efb20e6757a3e40e34fdeb8c5a8c28bd9f8be8f7
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
    })
  }