feat: 用户行为信誉分系统

- User 新增 credit_score 字段(0-200,默认100)
- 信誉分影响检测阈值系数:高分降低敏感度,低分提高敏感度
- 发布成功+1分,被拦截-2分;申诉通过+10分,驳回-5分
- 新增手动调整和批量重算信誉分接口
- admin-users 页面显示信誉分进度条,支持编辑调整

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
刘正航
2026-04-21 23:52:47 +08:00
parent 5279816452
commit 6d62120443
8 changed files with 166 additions and 10 deletions

View File

@@ -12,7 +12,8 @@ Page({
title: '',
phone: '',
is_admin: false,
password: ''
password: '',
credit_score: 100
},
importText: '[{"username":"operator01","password":"123456","nickname":"运营同学","company":"示例科技公司"}]'
},
@@ -60,7 +61,8 @@ Page({
title: row.title || '',
phone: row.phone || '',
is_admin: !!row.is_admin,
password: ''
password: '',
credit_score: row.credit_score || 100
}
})
},