Files
asset_assistant/frontend/asset-assistant-system/assets/js/config/system.js
2025-11-12 17:24:55 +08:00

24 lines
661 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 系统核心配置
*/
window.SystemConfig = {
// 接口基础路径(实际项目替换为真实接口地址)
baseApi: 'https://api.asset-management.com',
// Token存储键名
tokenKey: 'asset_management_token',
// Token过期时间单位小时
tokenExpire: 24,
// 页面加载失败重试次数
retryCount: 2,
// 消息提示默认时长(单位:毫秒)
messageDuration: 3000,
// 菜单折叠状态存储键名
menuCollapseKey: 'asset_menu_collapse',
// 是否开启调试模式
debug: true
};
// 打印调试信息
if (SystemConfig.debug) {
console.log('系统配置初始化完成:', SystemConfig);
}