zuozhengqing
2024-04-09 63a5da9d6be10bbd910812c423bdfad7ae2945e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import request from "@/common/untils/request.js"
 
// 字典列表
export function getDict(data) {
  return request({
    url: "/api-jl/v1/system/dict?dictType="+data.dictType,
    method: "get",
    data
  })
}
 
// 添加字典
export function addDict(data) {
  return request({
    url: "/api-jl/v1/system/dict",
    method: "post",
    data
  })
}