feat: 完成系统管理模块功能迭代

新增用户、菜单、日志、问题帮助等业务模块,优化角色权限分配功能,新增依赖包与全局组件
This commit is contained in:
sheng
2026-05-29 18:12:54 +08:00
parent a61036e5dc
commit 20a821ba32
28 changed files with 5512 additions and 39984 deletions

View File

@@ -0,0 +1,15 @@
import { request } from '@/api/_service'
const BASE = 'system_settings/system_assistant/operate_log/'
export function getOperateLogList (data) {
return request({
url: BASE + 'list',
method: 'get',
params: {
method: 'system_settings_system_assistant_operate_log_list',
platform: 'background',
...data
}
})
}