Files
SmartParks_uniapp/common/config.js
2025-09-16 17:27:32 +08:00

38 lines
692 B
JavaScript

/**
* Copyright (c) 2013-Now http://aidex.vip All rights reserved.
*/
const config = {
// 产品名称
productName: 'Aidex Mobile',
// 公司名称
companyName: 'Aidex',
// 产品版本号
productVersion: 'V4.3.0',
// 版本检查标识
appCode: 'android',
// 内部版本号码
appVersion: 1,
// 管理基础路径
adminPath: ''
}
// 设置后台接口服务的基础地址
//测试
// config.baseUrl = 'http://tc.cqsznc.com:7080/api';
//本地
config.baseUrl = '/js';
//正式
// config.baseUrl = 'http://183.230.235.66:11010/api';
config.imgUrl = 'http://183.230.235.66:11010';
// config.baseUrl = 'http://378a061a.r28.cpolar.top'
export default config;