增加字典功能
This commit is contained in:
52
src/api/system/dict/data.ts
Normal file
52
src/api/system/dict/data.ts
Normal 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'
|
||||
})
|
||||
}
|
||||
2
src/api/system/dict/index.ts
Normal file
2
src/api/system/dict/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from './data'
|
||||
export * from './type'
|
||||
61
src/api/system/dict/type.ts
Normal file
61
src/api/system/dict/type.ts
Normal 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",
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user