TalentService-mobile/common/config.service.js

11 lines
179 B
JavaScript
Raw Normal View History

2024-10-27 00:26:19 +08:00
// 接口环境
2024-10-31 21:24:54 +08:00
let BASE_URL = 'http://8.138.171.103:8081';
let IP = 'http://8.138.171.103/';
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