当前位置: 代码迷 >> 综合 >> mint-UI Cell Swipe左滑删除按钮点击时传递参数
  详细解决方案

mint-UI Cell Swipe左滑删除按钮点击时传递参数

热度:96   发布时间:2023-12-23 01:24:50.0

第一步:在标签里的点击事件上传递一个参数,如下:

<mt-cell-swipe :right="[{content: '删除',
          style: { background: 'red', color: '#fff'},
          handler: function(){ delVideo(item.sid) }}]" >

解析:

handler是点击删除时的触发,在这个方法里边再写一个方法名为delVideo的方法,传递参数item.sid


第二步:在methods里边添加delVideo方法,如下:

delVideo(sid) {//取消收藏
  getDelCollect(this.$route.path.slice(11), sid).then((res) => {Toast({message: '删除成功',
      duration: 2000
    });
    this.shiList();
  })
},
解析:delVideo后边括号里的sid是接收的第一步传过来的sid。



  相关解决方案