lj_zhgd-app/zhgd-app/service/config.js

18 lines
518 B
JavaScript

const CONFIG = {
// qianwt 2022-06-22 统一使用域名方式访问
PROD_URL: 'http://app.shengchan.com', // 生产环境
// TEST_URL: 'http://10.40.92.44:18080', //文
// TEST_URL: 'http://10.40.92.95:18080', //郝
// TEST_URL: 'http://192.168.0.7:20048', // 测试环境
TEST_URL: 'http://36.33.26.201:18080',
// POC_URL: 'http://app.uat.dictmc.com', // POC环境
};
// 页面路由白名单列表
CONFIG.whiteList = [
'index', // 首页Tab
'login', // 登录页
];
export default CONFIG