提交 5f6a7a13 编写于 作者: D DCloud_LXH

chore(h5): swiper navigation click event stopPropagation

上级 544fa23b
......@@ -635,7 +635,9 @@ export default {
this.circularEnabled ? 1 : 0
)
},
_navigationClick (type) {
_navigationClick ($event, type) {
$event.stopPropagation()
const swiperItemLength = this.items.length
let _current = this.currentSync
......@@ -783,7 +785,7 @@ export default {
'div',
{
on: {
click: () => this._navigationClick('prev'),
click: (e) => this._navigationClick(e, 'prev'),
...navigationEvent
},
class: [
......@@ -801,7 +803,7 @@ export default {
'div',
{
on: {
click: () => this._navigationClick('next'),
click: (e) => this._navigationClick(e, 'next'),
...navigationEvent
},
class: [
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册