fetch(modify):修复API的URL
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 5m1s

This commit is contained in:
sexygoat
2026-02-03 10:04:59 +08:00
parent 06cde977ad
commit 2c6fe4375b
17 changed files with 225 additions and 205 deletions

View File

@@ -45,6 +45,7 @@ export interface PermissionTreeNode {
url?: string // 请求路径
platform?: string // 适用端口 (all:全部, web:Web后台, h5:H5端)
sort?: number // 排序值
status?: number // 状态 (0:禁用, 1:启用)
available_for_role_types?: string // 可用角色类型 (1:平台角色, 2:客户角色)
children?: PermissionTreeNode[] // 子权限列表
}

View File

@@ -44,11 +44,3 @@ export interface PlatformRoleFormData {
role_type: RoleType
status: RoleStatus
}
// 权限树节点
export interface PermissionTreeNode {
id: number
label: string
value: string
children?: PermissionTreeNode[]
}