qx
qx
2025-06-09 e03e83323c452893d3d5e43fc3e0f2f8f34f47c9
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
import request from '@/utils/request'
 
// 查询疾病字典列表
export function listIcd(query) {
    return request({
        url: '/system/icd/list',
        method: 'get',
        params: query
    })
}
 
// 查询疾病字典详细
export function getIcd(id) {
    return request({
        url: '/system/icd/' + id,
        method: 'get'
    })
}
 
// 新增疾病字典
export function addIcd(data) {
    return request({
        url: '/system/icd',
        method: 'post',
        data: data
    })
}
 
// 修改疾病字典
export function updateIcd(data) {
    return request({
        url: '/system/icd',
        method: 'put',
        data: data
    })
}
 
// 删除疾病字典
export function delIcd(id) {
    return request({
        url: '/system/icd/' + id,
        method: 'delete'
    })
}