qinxianzhangyao
2023-09-12 bb6bfe4bbe0ec84c15cd1eaebf7a55cbd11b4094
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from '@/utils/request'
 
// 查询弃检列表
export function listInspection(query) {
    return request({
        url: '/hosp/inspection/list',
        method: 'get',
        params: query
    })
}
 
// 查询弃检详细
export function getInspection(id) {
    return request({
        url: '/hosp/inspection/' + id,
        method: 'get'
    })
}