feat : 表单权限处理

This commit is contained in:
clay
2024-05-30 22:31:47 +08:00
parent 7a5fbd501e
commit ee890c0e80
8 changed files with 71 additions and 39 deletions

View File

@@ -18,6 +18,13 @@ export const getConfigDetails = (configId) => {
method: 'get'
})
}
// 获取参数配置表详情
export const getConfigByKey = (configKey) => {
return request({
url: '/admin/config/key/' + configKey,
method: 'get'
})
}
// 新增参数配置表
export const addConfig = (data) => {

View File

@@ -68,4 +68,11 @@ export function getTypeOption() {
})
}
export function getFromPerm(processKey) {
return request({
url: "/workflow/process/definition/from/perm/"+processKey,
method: "get",
})
}