Преглед на файлове

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)
 }