feat(request): baseUrl update

This commit is contained in:
ywk 2025-04-07 11:41:04 +08:00
parent e40c56e3af
commit 21cfa2b371
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,8 @@ module.exports = (vm) => {
// 初始化请求配置
uni.$u.http.setConfig((config) => {
// config.baseURL = 'https://p1.hzs413.com/inter-api';
config.baseURL = 'http://192.168.0.100:8080';
// 192.168.0.100:8080
config.baseURL = 'http://60.205.203.247/prod-api';
config.timeout = 30000;
return config
})