From 21cfa2b3713ca84b6352ff28e94b901704cec326 Mon Sep 17 00:00:00 2001 From: ywk <317226901@qq.com> Date: Mon, 7 Apr 2025 11:41:04 +0800 Subject: [PATCH] feat(request): baseUrl update --- config/request.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/request.js b/config/request.js index 045f520..68faa98 100644 --- a/config/request.js +++ b/config/request.js @@ -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 })