shish il y a 7 mois
Parent
commit
604b317020
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. 3 0
      hdPad/src/components/delivery-input/weight-input.vue

+ 3 - 0
hdPad/src/components/delivery-input/weight-input.vue

@@ -76,6 +76,9 @@ export default {
       val = Math.floor(val);
       val = Math.floor(val);
       this.localWeight = val;
       this.localWeight = val;
       this.$emit('input', val);
       this.$emit('input', val);
+    },
+    handleFocus() {
+      // 处理 focus 事件
     }
     }
   }
   }
 }
 }