Files
urbanLifeline/docker/urbanLifeline/web/config/app-config-bidding.js
2026-01-07 15:41:04 +08:00

63 lines
1.2 KiB
JavaScript

/**
* @description Bidding 运行时配置 (Docker 部署用)
*
* 域名: https://192.168.130.131
* 修改此文件后重启容器生效
*/
window.APP_RUNTIME_CONFIG = {
// 环境标识
env: 'production',
// API 配置
api: {
baseUrl: '/urban-lifeline',
timeout: 30000
},
// 应用基础路径
baseUrl: '/bidding/',
// 文件配置
file: {
downloadUrl: '/urban-lifeline/file/download/',
uploadUrl: '/urban-lifeline/file/upload',
maxSize: {
image: 5,
video: 100,
document: 10
},
acceptTypes: {
image: 'image/*',
video: 'video/*',
document: '.pdf,.doc,.docx,.xls,.xlsx,.ppt,.pptx'
}
},
// Token 配置
token: {
key: 'token',
refreshThreshold: 300000
},
// 公共资源路径
publicImgPath: '/bidding/img',
publicWebPath: '/bidding',
// 单点登录配置
sso: {
platformUrl: 'https://192.168.130.131/platform/',
workcaseUrl: 'https://192.168.130.131/workcase/',
biddingUrl: 'https://192.168.130.131/bidding/'
},
// AES 加密密钥
aesSecretKey: 'MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI=',
// 功能开关
features: {
enableDebug: false,
enableMockData: false
}
};