feat(hjf): 公排入队可配置,默认关闭时同步发放积分奖励

- 新增 hjf_queue_pool_enable(迁移 SQL),后台公排配置读写统一为该键
- Pay 监听:关闭公排时同步执行等级检查与 PointsRewardServices::reward,开启时仍派发 HjfOrderPayJob
- PointsRewardServices: bcInc 增量传 string,避免 PHP 类型错误
- hjf:patch-rewards 补偿命令补充等级检查与正确的幂等条件
- uniapp vue.config.js 本地 API 代理调整(H5 开发)
- docs/issues-0323-1 更新

Made-with: Cursor
This commit is contained in:
apple
2026-03-25 07:38:12 +08:00
parent d0cd7e4667
commit 6e5bbee71d
7 changed files with 75 additions and 24 deletions

View File

@@ -341,7 +341,11 @@ VALUES
(0, 'hjf_fee_rate', 'text', 'input', 0,
'', 0, '', 100, 0,
'7', '提现手续费率(%)', '申请提现时收取的手续费比例默认7%', 30, 1);
'7', '提现手续费率(%)', '申请提现时收取的手续费比例默认7%', 30, 1),
(0, 'hjf_queue_pool_enable', 'text', 'input', 0,
'', 0, '', 100, 0,
'0', '公排入队开关', '0=关闭(积分同步发放) 1=开启(通过队列异步处理)', 5, 1);
-- ============================================================