diff --git a/src/pages/Bid/ReviewConfig/Config/components/commonFunc.ts b/src/pages/Bid/ReviewConfig/Config/components/commonFunc.ts index 28e15e8..efa8ae3 100644 --- a/src/pages/Bid/ReviewConfig/Config/components/commonFunc.ts +++ b/src/pages/Bid/ReviewConfig/Config/components/commonFunc.ts @@ -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; }