12345678910111213141516171819202122232425 |
- //系统参数
- let config = {
- copyright: 'MiaoXun',//开发公司
- app: {//软件资料
- titleCh: '声波定位系统',
- titleEn: 'APLS',
- version: 'V2.0.00',
- snCode: 'T0T3061F!',
- },
- domanName: 'csxm',//二级域名
- baseURL: 'http://localhost:8080/msapi',//开发接口
- //baseURL: 'https://www.locaty.com.cn/msapi',//生产接口
- user: {
- tokenKey: 'apls-8000-token',
- userInfoKey: 'apls-8000-user-info-key'
- },
- apiWhiteList: ["userMobileLogin"],
- //系统消息
- sysMsg: [
- 'REC_LOCARION_AUDIO_DATA',//录音模块到定位模块的音频数据
- ]
- }
- export default config
|