用户2767450
用户2767450
  • 发布:2025-03-14 15:52
  • 更新:2025-03-14 15:52
  • 阅读:38

#插件讨论# 【 zb-table(多功能表格) - 3***@qq.com 】我自己写了翻页,但是翻页之后,但是我发现对选择框操作不了,就是我翻页之后肯定是要清空已选择的内容的

分类:uni-app

暂时的解决方案,翻页时执行选中的方法,// 上一页
prevPage() {
if (this.currentPage > 1) {
this.currentPage--;
this.paginateData();

    // 修改当前页数据的 checked 属性  
    this.data.forEach(item => {  
      item.checked = false;  
    });  

    // 调用 toggleRowSelection  

    this.toggleAllSelection(false, this.data);  
          }  
},
2025-03-14 15:52 负责人:无 分享
已邀请:

要回复问题请先登录注册