diff --git a/honey_box/common/env.js b/honey_box/common/env.js
index 6ee2ac79..927fcad7 100644
--- a/honey_box/common/env.js
+++ b/honey_box/common/env.js
@@ -11,9 +11,9 @@
// 测试环境配置 - .NET 10 后端
const testing = {
- baseUrl: 'https://app.zpc-xy.com/honey/api',
+ // baseUrl: 'https://app.zpc-xy.com/honey/api',
// baseUrl: 'http://192.168.1.24:5238',
- // baseUrl: 'http://192.168.195.15:2822',
+ baseUrl: 'http://192.168.195.15:2822',
imageUrl: 'https://youdas-1308826010.cos.ap-shanghai.myqcloud.com',
loginPage: '',
wxAppId: ''
diff --git a/server/HoneyBox/src/HoneyBox.Api/Controllers/WelfareController.cs b/server/HoneyBox/src/HoneyBox.Api/Controllers/WelfareController.cs
index fab71e33..1a9a18a2 100644
--- a/server/HoneyBox/src/HoneyBox.Api/Controllers/WelfareController.cs
+++ b/server/HoneyBox/src/HoneyBox.Api/Controllers/WelfareController.cs
@@ -151,13 +151,12 @@ public class WelfareController : ControllerBase
///
/// 获取福利屋详情
- /// GET/POST /api/fuliwu_detail
+ /// GET /api/fuliwu_detail
/// Requirements: 13.1-13.4
///
[HttpGet("fuliwu_detail")]
- [HttpPost("fuliwu_detail")]
[Authorize]
- public async Task> GetWelfareDetail([FromForm] WelfareDetailRequest? request)
+ public async Task> GetWelfareDetail([FromQuery] WelfareDetailRequest? request)
{
var userId = GetCurrentUserId();
if (userId == null)