Browse Source

H5-商品购买:写注释

panyong 3 years ago
parent
commit
33dd9a25d4
1 changed files with 4 additions and 3 deletions
  1. 4 3
      htmldev/dashboard/src/views/sell/goods/index.vue

+ 4 - 3
htmldev/dashboard/src/views/sell/goods/index.vue

@@ -164,9 +164,10 @@ export default {
       this.foodsScroll.scrollToElement(el, 300, true, 3)
     },
     async selectFood (food, event) {
-      // if (!event._constructed) {
-      //   return
-      // }
+      // better-scroll 默认会阻止浏览器的原生 click 事件。当设置为 true,better-scroll 会派发一个 click 事件,我们会给派发的 event 参数加一个私有属性 _constructed,值为 true
+      if (!event._constructed) {
+        return
+      }
       try {
         const { data, status, msg } = await apiProductDetail(food.id)
         if (status) {