1
lkk
2025-04-16 4f55c0255e5e68b3685d1510062dff6e1e3dbc48
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import request from '@/utils/request'
 
// 查询体检导检单打印记录列表
export function listDyjl(query) {
    return request({
        url: '/system/dyjl/list',
        method: 'get',
        params: query
    })
}
 
// 查询体检导检单打印记录详细
export function getDyjl(id) {
    return request({
        url: '/system/dyjl/' + id,
        method: 'get'
    })
}
 
// 新增体检导检单打印记录
export function addDyjl(data) {
    return request({
        url: '/system/dyjl',
        method: 'post',
        data: data
    })
}
 
// 修改体检导检单打印记录
export function updateDyjl(data) {
    return request({
        url: '/system/dyjl',
        method: 'put',
        data: data
    })
}
 
// 删除体检导检单打印记录
export function delDyjl(id) {
    return request({
        url: '/system/dyjl/' + id,
        method: 'delete'
    })
}
 
// 删除体检导检单打印记录
export function exportDyjl() {
    return request({
        url: '/system/dyjl/export',
        method: 'post'
    })
}