refactor(projects): 动态路由权限完善

This commit is contained in:
Soybean
2022-04-29 02:00:51 +08:00
parent 401f0c748d
commit 55ddc9cab0
36 changed files with 406 additions and 717 deletions

View File

@ -8,9 +8,9 @@ type EnvType = 'dev' | 'test' | 'prod';
/** env环境配置 */
interface EnvConfig {
/** 请求地址 */
/** 后端的请求地址 */
url: string;
/** 代理地址 */
/** 代理标识, 用于拦截地址转发代理(如:"/api",这个和后端路径有无 "/api" 路径没有任何关系) */
proxy: string;
}