From 202954ab68656d3279e3f6d8a87bff34f1940e1c Mon Sep 17 00:00:00 2001 From: mayiming <1627832236@qq.com> Date: Tue, 23 Sep 2025 18:50:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9apiBaseUrl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- miniprogram/env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniprogram/env.js b/miniprogram/env.js index a05eaf6..074d4dd 100644 --- a/miniprogram/env.js +++ b/miniprogram/env.js @@ -1,6 +1,6 @@ const env = wx.getAccountInfoSync().miniProgram.envVersion; // 获取当前环境(develop/trial/release) const config = { - develop: { apiBaseUrl: 'http://192.168.5.5:9096' }, // 开发环境(本地调试) + develop: { apiBaseUrl: 'http://localhost:9096' }, // 开发环境(本地调试) trial: { apiBaseUrl: 'https://test-api.example.com' }, // 体验版(测试环境) release: { apiBaseUrl: 'https://api.example.com' } // 正式版(生产环境) };