xiangpei
2025-04-18 7feee0463330ee014b0ac1a6f8e31118bb699f12
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
53
54
55
56
57
58
59
60
61
62
import axios from "./request";
 
// 获取字典类型分页
export const getDictTypes = (params) => {
    return axios({
        url: "/sys-dict-type/page",
        method: "GET",
        params: params
    })
}
 
// 通过id获取字典类型
export const getDictTypeById = (params) => {
    return axios({
        url: "/sys-dict-type/" + params,
        method: "GET"
    })
}
 
// 通过id删除字典
export const deleteDictTypeById = (params) => {
    return axios({
        url: "/sys-dict-type/" + params,
        method: "DELETE"
    })
}
 
// 批量删除字典
export const deleteDictTypeByIds = (params) => {
    return axios({
        url: "/sys-dict-type/batch",
        method: "DELETE",
        data: params
    })
}
 
// 修改字典
export const editDictType = (params) => {
    return axios({
        url: "/sys-dict-type/",
        method: "PUT",
        data: params
    })
}
 
// 添加字典
export const addDictType = (params) => {
    return axios({
        url: "/sys-dict-type/",
        method: "POST",
        data: params
    })
}
 
// 字典列表
export const typeList = (params) => {
    return axios({
        url: "/sys-dict-type/list",
        method: "GET",
        params: params
    })
}