auth-web/src/views/i18n/i18n-setting/utils/auth.ts

13 lines
296 B
TypeScript
Raw Normal View History

export const auth = {
2025-04-24 13:43:37 +08:00
// 分页查询
2025-04-27 22:16:06 +08:00
query: ['i18n::query', 'i18n::queryPage'],
2025-04-24 13:43:37 +08:00
// 添加操作
2025-04-27 22:16:06 +08:00
add: ['i18n::add'],
2025-04-24 13:43:37 +08:00
// 更新操作
2025-04-27 22:16:06 +08:00
update: ['i18n::update'],
2025-04-24 13:43:37 +08:00
// 删除操作
2025-04-27 22:16:06 +08:00
deleted: ['i18n::delete'],
2025-04-24 13:43:37 +08:00
// 下载多语言配置
2025-04-27 22:16:06 +08:00
download: ['i18n::update', 'i18n::download'],
};