Files
smart_storage_app/common/config.js

27 lines
461 B
JavaScript
Raw Permalink Normal View History

2025-06-30 10:21:25 +08:00
const config = {
// 产品名称
2025-12-26 11:26:40 +08:00
productName: 'Zeta Cloud',
2025-06-30 10:21:25 +08:00
// 公司名称
companyName: 'Zetatech',
2025-06-30 10:21:25 +08:00
// 产品版本号
productVersion: 'V1.0.0',
// 版本检查标识
appCode: 'android',
// 内部版本号码
appVersion: '1.0.0',
// 管理基础路径
adminPath: ''
}
// 设置后台接口服务的基础地址
2025-12-26 11:26:40 +08:00
config.baseUrl = "https://zetatech.zzkj-cloud.com/api"
2025-11-07 15:23:08 +08:00
// config.baseUrl = 'http://1.95.170.86:8002/api'
2025-06-30 10:21:25 +08:00
export default config