Sfoglia il codice sorgente

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

yz 2 settimane fa
parent
commit
baae24b114
1 ha cambiato i file con 0 aggiunte e 1 eliminazioni
  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)
 }