增加字典功能

This commit is contained in:
tao
2025-12-29 17:20:34 +08:00
parent 0bc46dbd14
commit ae56afcf93
8 changed files with 333 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
import request from '@/api/request'
// 查询字典数据列表
export function listData(params: any) {
return request({
url: '/system/dict/data/list',
method: 'get',
params
})
}
// 查询字典数据详细
export function getData(dictCode: string) {
return request({
url: '/system/dict/data/' + dictCode,
method: 'get'
})
}
// 根据字典类型查询字典数据信息
export function getDicts(dictType: string) {
return request({
url: '/system/dict/data/type/' + dictType,
method: 'get'
})
}
// 新增字典数据
export function addData(data: any) {
return request({
url: '/system/dict/data',
method: 'post',
data
})
}
// 修改字典数据
export function updateData(data: any) {
return request({
url: '/system/dict/data',
method: 'put',
data
})
}
// 删除字典数据
export function delData(dictCode: string) {
return request({
url: '/system/dict/data/' + dictCode,
method: 'delete'
})
}

View File

@@ -0,0 +1,2 @@
export * from './data'
export * from './type'

View File

@@ -0,0 +1,61 @@
import request from '@/api/request'
import type { ID } from '@/api/common'
// 查询字典类型列表
export function listType(params: any) {
return request({
url: "/system/dict/type/list",
method: "get",
params,
});
}
// 查询字典类型详细
export function getType(dictId: ID) {
return request({
url: "/system/dict/type/" + dictId,
method: "get",
});
}
// 新增字典类型
export function addType(data: any) {
return request({
url: "/system/dict/type",
method: "post",
data,
});
}
// 修改字典类型
export function updateType(data: any) {
return request({
url: "/system/dict/type",
method: "put",
data,
});
}
// 删除字典类型
export function delType(dictId: ID) {
return request({
url: "/system/dict/type/" + dictId,
method: "delete",
});
}
// 刷新字典缓存
export function refreshCache() {
return request({
url: "/system/dict/type/refreshCache",
method: "delete",
});
}
// 获取字典选择框列表
export function getOptions() {
return request({
url: "/system/dict/type/optionselect",
method: "get",
});
}