公告板
版本库
filestore
活动
搜索
登录
main
/
hubiaoscreen
吉木乃户表系统大屏项目
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
大屏改版代码提交
zhangchunxia
2024-05-06
a3bc1499023bfcca59d823aefae8c546e36e7a45
[hubiaoscreen.git]
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
let baseUrl = ''
switch (process.env.VUE_APP_TITLE) {
case 'test': //测试
baseUrl = "http://xxxx"
break
case 'prod': //生产
baseUrl = "http://xxxx"
break
default://本地
baseUrl = "http://xxxxt"
}
export default baseUrl;