1
lkk
4 分钟以前 4936c229b0eeea0305e15d019c801bd88b8d074e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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'
    })
}
 
// 恢复弃检
export function recall(data) {
    return request({
        url: '/hosp/inspection/recall',
        method: 'post',
        data: data
    })
}