Explorar el Código

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

yz hace 2 semanas
padre
commit
baae24b114
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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)
 }