|
@@ -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) {
|