Skip to content

Commit

Permalink
fix: 修复列表事件无法上报的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangzhenfei committed Oct 19, 2020
1 parent b059436 commit eeadf15
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/pi-list-item/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:class="[{ border: getBorder }, customClass]"
:hover-start-time="hoverStartTime"
:hover-stay-time="hoverStayTime"
@tap.stop="handleItemClick"
@tap="handleItemClick"
>
<!-- 左侧区域 -->
<view v-if="$slots.left" class="pi-pd-right-24">
Expand Down Expand Up @@ -191,7 +191,6 @@ export default {
methods: {
handleItemClick(e) {
this.$emit('click', e)
this.$emit('tap', e)
}
}
}
Expand Down

0 comments on commit eeadf15

Please sign in to comment.