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'
| })
| }
|
|