TalentService-mobile/common/config.service.js

15 lines
308 B
JavaScript
Raw Normal View History

2024-10-27 00:26:19 +08:00
// 接口环境
2024-11-28 10:09:55 +08:00
// 测试环境
// let BASE_URL = 'http://8.138.171.103:8081';
// let IP = 'http://8.138.171.103/';
// 正式环境
let BASE_URL = 'https://www.ymsc.org.cn/vueAdminApi';
let IP = 'https://www.ymsc.org.cn/';
2024-10-27 00:26:19 +08:00
const configService = {
apiUrl: BASE_URL,
2024-10-31 21:24:54 +08:00
ip: IP
2024-10-27 00:26:19 +08:00
};
export default configService