diff --git a/src/views/system/freight/freight_list/indexbtn.vue b/src/views/system/freight/freight_list/indexbtn.vue
index a9fca663c0055b187543c04a356f82748877c3d9..ec732d60a86069aabfc24338066f23bfb9d61688 100644
--- a/src/views/system/freight/freight_list/indexbtn.vue
+++ b/src/views/system/freight/freight_list/indexbtn.vue
@@ -422,6 +422,7 @@ export default {
       //正则替换
       str = str.replace(/[^\d^\.]+/g, ""); // 保留数字和小数点
       str = str.replace(/^\D*([0-9]\d*\.?\d{0,2})?.*$/, "$1"); // 小数点后只能输 2 位
+      console.log(str,'看看输的数字')
       return str;
     },
     proving(e) {
@@ -434,6 +435,7 @@ export default {
       }
       str = str.replace(/[^\.\d]/g,'');
       str = str.replace('.','');
+      console.log(str,'看看输的数字')
       return str
 },
   },