feat-wip(components): 相关页面及路由代码提交"

This commit is contained in:
2025-12-01 14:31:42 +08:00
parent 65640c8b71
commit 12f3ad79fb
9 changed files with 152 additions and 4 deletions

12
src/typings/app.d.ts vendored
View File

@ -546,6 +546,18 @@ declare namespace App {
};
creativity: string;
};
system: {
conf: {
dictionary: {
title: string;
};
};
rbac: {
region: {
title: string;
};
};
};
};
form: {
required: string;

View File

@ -23,6 +23,11 @@ declare module "@elegant-router/types" {
"home": "/home";
"iframe-page": "/iframe-page/:url";
"login": "/login/:module(pwd-login|code-login|register|reset-pwd|bind-wechat)?";
"system": "/system";
"system_conf": "/system/conf";
"system_conf_dictionary": "/system/conf/dictionary";
"system_rbac": "/system/rbac";
"system_rbac_region": "/system/rbac/region";
};
/**
@ -60,6 +65,7 @@ declare module "@elegant-router/types" {
| "home"
| "iframe-page"
| "login"
| "system"
>;
/**
@ -82,6 +88,8 @@ declare module "@elegant-router/types" {
| "iframe-page"
| "login"
| "home"
| "system_conf_dictionary"
| "system_rbac_region"
>;
/**