123456789101112131415161718192021222324 |
- let BASE_URL = ''
- if (process.env.NODE_ENV == 'development') {
- // BASE_URL = 'http://127.0.0.1:8080/jeecg-boot' // 开发环境
- //BASE_URL = 'http://127.0.0.1:5100/ibps/business/v3/mobile' // 开发环境
- //BASE_URL = 'http://127.0.0.1:5100' // 开发环境
- BASE_URL = 'https://www.szjyxt.com/'// 生产环境
- // BASE_URL = 'https://www.szjyxt.com/'// 生产环境
- } else {
- //BASE_URL = 'http://127.0.0.1:5100/ibps/business/v3/mobile' // 生产环境
- //BASE_URL = 'http://127.0.0.1:5100' // 生产环境
- BASE_URL = 'https://www.szjyxt.com/'
- }
- let staticDomainURL = BASE_URL+ '/sys/common/static';
- const configService = {
- apiUrl: BASE_URL,
- staticDomainURL: staticDomainURL
- };
- export default configService
|