fix(fsgx): 积分释放定时任务、佣金轮巡与 UniApp 体验

- PointsReleaseServices: 使用 Db::table 查询与更新,构造函数注入 UserDao;日志与账单独立 try/catch\n- SystemTimer: implement_timer 捕获后重新抛出异常,便于 run_now 返回错误\n- SystemTimerServices / 控制器: runNow 返回任务结果并在 API 中带回 result\n- StoreOrderCreateServices: 报单佣金位次修正与多件轮巡\n- UniApp: 佣金记录跳转 type=2、余额提现免手续费展示、状态页与资产页头部渐变与提现页一致\n- docs: 增加 fsgx-issues-0328-1 问题跟踪

Made-with: Cursor
This commit is contained in:
panchengyong
2026-03-29 10:36:52 +08:00
parent 35b6d76d50
commit ac86ec57cf
9 changed files with 141 additions and 102 deletions

View File

@@ -174,7 +174,7 @@ export default {
},
goToCommissionDetail() {
uni.navigateTo({ url: '/pages/users/user_spread_money/index' });
uni.navigateTo({ url: '/pages/users/user_spread_money/index?type=2' });
}
}
};
@@ -183,12 +183,12 @@ export default {
<style scoped lang="scss">
.brokerage-page {
min-height: 100vh;
background: #f4f5f7;
background: #db5d02;
padding-bottom: 60rpx;
}
.header-gradient {
background: linear-gradient(135deg, var(--view-theme, #e93323) 0%, var(--view-gradient, #f76b1c) 100%);
background: linear-gradient(90deg, var(--view-theme) 0%, var(--view-gradient) 100%);
padding: 40rpx 30rpx 56rpx;
position: relative;
overflow: hidden;