瀏覽代碼

fix(订单表单): 移除formatIntegerNumber中的console.log语句

yz 2 周之前
父節點
當前提交
baae24b114
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      src/components/order-form/number-format-utils.js

+ 0 - 1
src/components/order-form/number-format-utils.js

@@ -150,7 +150,6 @@ export function formatIntegerNumber(value) {
     return '0'
   }
 
-  console.log(value, Math.round(validation.value).toLocaleString('zh-CN', NUMBER_FORMAT_CONFIG.QUANTITY_INTEGER))
   return Math.round(validation.value).toLocaleString('zh-CN', NUMBER_FORMAT_CONFIG.QUANTITY_INTEGER)
 }