| 12345678910111213141516171819 |
- let BASE_URL = ''
- if (process.env.NODE_ENV == 'development') {
- // BASE_URL = 'https://test.baoxianzhanggui.com/locallive-java' // 测试环境
- // BASE_URL = 'http://192.168.0.36:8080/jeecg-boot' // 开发环境
- BASE_URL = 'http://192.168.0.52:8080/jeecg-boot' // 开发环境
- } else {
- BASE_URL = 'https://test.baoxianzhanggui.com/locallive-java' // 测试环境
- }
- let staticDomainURL = BASE_URL + '/sys/common/static';
- const configService = {
- apiUrl: BASE_URL,
- staticDomainURL: staticDomainURL
- };
- export default configService
|