qx
77 分钟以前 ad54cf427ee94e01e8c72a01f738615eb2b6569d
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
    })
  }