1234567891011121314 |
- let BASE_URL = ''
- if (process.env.NODE_ENV === 'development') {
- BASE_URL = 'https://xt.sharingschool.com/sz'
- } else {
- BASE_URL = 'https://xt.sharingschool.com/sz' //测试环境服务器地址
- // BASE_URL = 'https://t.sharingschool.com/sz'; //正式环境地址
- // BASE_URL = 'https://sx.sharingschool.com' //实习环境地址
- }
- const TIME_OUT = 10000
- export {
- BASE_URL,
- TIME_OUT,
- }
|