优化:商品编辑 - 总量单位由默认的千克改为克

This commit is contained in:
wuhui_zzw 2023-08-31 11:17:59 +08:00
parent 64fea5c8b3
commit 82af4074de
1 changed files with 1 additions and 1 deletions

View File

@ -14,8 +14,8 @@ namespace Beike\Libraries;
class Weight
{
public const WEIGHT_CLASS = [
'kg' => 0.001,
'g' => 1,
'kg' => 0.001,
'oz' => 0.035,
'lb' => 0.0022046,
];