收藏
回答

弹出框点击确认让内容隐藏。

wx.showModal

的弹窗点击确认让一块view内容隐藏。

跪求大神帮解决。


回答关注问题邀请回答
收藏

1 个回答

  • 铭锋科技
    铭锋科技
    2018-12-22


    Wxml:

    <view wx:if='{{!hiddenView}}'>要隐藏的</view>

    <button bindtap='showMyModal'>打开弹窗</button>


    Js:

    data: {

    //hiddenView初始为假

    hiddenView: false

    },

    showMyModal(){

    var that = this

    wx.showModal({

    title: '标题',

    content: '内容',

    success: function(res) {

    //如果是点击的确定,设置hiddenView为真

    if(res.confirm){

    that.setData({

    hiddenView : true

    })

    }

    },

    fail: function(res) {},

    complete: function(res) {},

    })

    },


    2018-12-22
    有用 3
    回复 1
    • 🙃
      🙃
      2018-12-22

       解决了, 谢谢!大佬

      2018-12-22
      回复
登录 后发表内容