zhangchunxia
2024-05-06 a3bc1499023bfcca59d823aefae8c546e36e7a45
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;