1234567891011121314151617 |
- let BASE_URL = ''
- let FILE_URL = ''
- // baseurl 联调时改url
- if (process.env.NODE_ENV == 'development') {
- BASE_URL = 'https://www.gzrea.org.cn:8443/wxmp/api';
- FILE_URL = 'https://www.gzrea.org.cn:8443/wxmp/api';
- }else{
- BASE_URL = '';
- FILE_URL = '';
- }
- const configService = {
- apiUrl: BASE_URL,
- FILE_URL:FILE_URL
- }
- export default configService
|