为了账号安全,请及时绑定邮箱和手机立即绑定

微信小程序,多个view绑定相同点击事件,如何绑定当前view

微信小程序,多个view绑定相同点击事件,如何绑定当前view

慕容森 2019-03-13 17:19:53
如图所示两个栏目分别弹出不同的的从底部弹出的弹层 怎么定位当前的view对应的弹层呢<view class='item'><view bindtap="showModal">已选择</view><view class="mask" bindtap="hideModal" wx:if="{{ModalStatus}}"></view><view animation="{{animationData}}" class="commodity_attr_box" wx:if="{{ModalStatus}}">  <view class='product_info box-center-v border'>规格弹出层</view></view></view><view class='item'><view bindtap="showModal">配送至</view><view class="mask" bindtap="hideModal" wx:if="{{ModalStatus}}"></view><view animation="{{animationData}}" class="commodity_attr_box" wx:if="{{ModalStatus}}">  <view class='product_info box-center-v border'>地址弹出层</view></view></view>showModal: function () {    // 显示遮罩层    var animation = wx.createAnimation({      duration:300,      timingFunction: "ease",      delay: 0,    })    this.animation = animation    animation.translateY(600).step()    this.setData({      animationData: animation.export(),      ModalStatus: true    })    setTimeout(function () {      animation.translateY(0).step()      this.setData({        animationData: animation.export()      })    }.bind(this), 200)  },  //隐藏对话框  hideModal: function () {    // 隐藏遮罩层    var animation = wx.createAnimation({      duration: 200,      timingFunction: "linear",      delay: 0    })    this.animation = animation    animation.translateY(400).step()    this.setData({      animationData: animation.export(),    })    setTimeout(function () {      animation.translateY(0).step()      this.setData({        animationData: animation.export(),        ModalStatus: false      })    }.bind(this), 200)  }
查看完整描述

2 回答

?
蝴蝶刀刀

TA贡献1801条经验 获得超8个赞

你是想知道现在弹起的是哪个view吗?那你为何不设个变量,存当前弹窗的队列,最后一个就永远是最上面的,多弹窗设计下的管理方案。


查看完整回答
反对 回复 2019-03-20
  • 2 回答
  • 0 关注
  • 4744 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信