This commit is contained in:
kk
2026-07-08 18:00:33 +08:00
commit e66b4a3680
312 changed files with 54718 additions and 0 deletions

88
src/api/system/dictbiz.js Normal file
View File

@@ -0,0 +1,88 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/blade-system/dict-biz/list',
method: 'get',
params: {
...params,
current,
size,
},
});
};
export const getParentList = (current, size, params) => {
return request({
url: '/blade-system/dict-biz/parent-list',
method: 'get',
params: {
...params,
current,
size,
},
});
};
export const getChildList = (current, size, parentId, params) => {
return request({
url: '/blade-system/dict-biz/child-list',
method: 'get',
params: {
...params,
current,
size,
parentId: parentId,
},
});
};
export const remove = ids => {
return request({
url: '/blade-system/dict-biz/remove',
method: 'post',
params: {
ids,
},
});
};
export const add = row => {
return request({
url: '/blade-system/dict-biz/submit',
method: 'post',
data: row,
});
};
export const update = row => {
return request({
url: '/blade-system/dict-biz/submit',
method: 'post',
data: row,
});
};
export const getDict = id => {
return request({
url: '/blade-system/dict-biz/detail',
method: 'get',
params: {
id,
},
});
};
export const getDictTree = () => {
return request({
url: '/blade-system/dict-biz/tree?code=DICT',
method: 'get',
});
};
export const getDictionary = params => {
return request({
url: '/blade-system/dict-biz/dictionary',
method: 'get',
params,
});
};