31 lines
725 B
JavaScript
31 lines
725 B
JavaScript
// 应用全局配置
|
|
const config = {
|
|
baseUrl: 'http://152.136.151.187:82/prod-api',
|
|
// baseUrl: 'http://localhost:8080',
|
|
//cloud后台网关地址
|
|
// baseUrl: 'http://192.168.10.3:8080',
|
|
// 应用信息
|
|
appInfo: {
|
|
// 应用名称
|
|
name: "intc-invest-app",
|
|
// 应用版本
|
|
version: "1.1.0",
|
|
// 应用logo
|
|
logo: "/static/logo.jpg",
|
|
// 官方网站
|
|
site_url: "http://www.qdintc.com",
|
|
// 政策协议
|
|
agreements: [{
|
|
title: "隐私政策",
|
|
url: "http://qdintc.com/static/protocol.html"
|
|
},
|
|
{
|
|
title: "用户服务协议",
|
|
url: "http://qdintc.com/static/protocol.html"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
export default config
|