Merge branch 'release_20230714' into 'master'

【生产】7.14版本同步到Master

See merge request eshop/fe_service_ebtp_frontend!311
This commit is contained in:
jl-zhoujl2
2023-07-17 07:19:30 +00:00
58 changed files with 1337 additions and 172 deletions

View File

@ -17,7 +17,7 @@ export const checkUnEmp = (val: any) => {
//计算一个table的最高分
export const subCountScore = (subData: any) => {
const mul = 10 ^ 5;
const mul = 10 ** 5;
const sum = subData?.detailList?.reduce((preValue: any, item: any) => { return preValue + item.highScore * mul }, 0);
return Math.round(sum) / mul;
}