You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
353 B
16 lines
353 B
8 months ago
|
'use strict';
|
||
|
// 定义私有变量和配置
|
||
|
const privateConfig = {
|
||
|
baseUrl: 'http://dev.ccwin-in.com:29000/api',//测试环境
|
||
|
socketUrl: 'ws://127.0.0.1:8080',//socket地址
|
||
|
role:'admin',//角色
|
||
|
};
|
||
|
|
||
|
(()=>{
|
||
|
if (typeof window !== 'undefined') {
|
||
|
window._properties = privateConfig;
|
||
|
}
|
||
|
})();
|
||
|
|
||
|
export const _properties = {...privateConfig};
|