提交 0099414a 编写于 作者: T Terry

超过1000后,函数number_format增加一个,导致的计数问题,譬如:160,656.00,会加一个逗号,计算的时候需要去除,前端显示的时候才加上

上级 bdc719fc
......@@ -183,8 +183,8 @@ class Shipping extends Service
$currentCost = eval("return $formula;");
return [
'currCost' => number_format($currentCost, 2),
'baseCost' => number_format($currentCost, 2),
'currCost' => Yii::$service->helper->format->number_format($currentCost, 2),
'baseCost' => Yii::$service->helper->format->number_format($currentCost, 2),
];
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册