审稿正确率和错误率乘100

This commit is contained in:
chengxl
2025-04-18 15:30:55 +08:00
parent e9520a6c9d
commit a884dca823

View File

@@ -107,6 +107,8 @@ class Recommend extends Base
foreach ($aUser as $key => $value) {
$value += empty($aInfo[$value['user_id']]) ? [] : $aInfo[$value['user_id']];
$value['right_rate'] = $value['right_rate']*100;
$value['error_rate'] = $value['error_rate']*100;
$aUser[$key] = $value;
}
exit(json_encode(array('status' => 1,'msg' => '','data' => ['total' => $iCount,'lists' => $aUser])));