i18n: 参数管理新增多语言配置

This commit is contained in:
xlsea
2025-05-12 21:43:55 +08:00
committed by 马铃薯头
parent e7af01f084
commit 88467844be
6 changed files with 257 additions and 31 deletions

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

@ -532,6 +532,48 @@ declare namespace App {
addClient: string;
editClient: string;
};
config: {
title: string;
configName: string;
configKey: string;
configValue: string;
configType: string;
remark: string;
createTime: string;
refreshCache: string;
refreshCacheSuccess: string;
form: {
configId: FormMsg;
configName: FormMsg;
configKey: FormMsg;
configValue: FormMsg;
configType: FormMsg;
remark: FormMsg;
};
addConfig: string;
editConfig: string;
};
dept: {
title: string;
deptName: string;
leader: string;
phone: string;
email: string;
status: string;
sort: string;
createTime: string;
form: {
parentId: FormMsg;
deptName: FormMsg;
leader: FormMsg;
phone: FormMsg;
email: FormMsg;
status: FormMsg;
sort: FormMsg;
};
addDept: string;
editDept: string;
};
};
};
form: {