博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
element ui中表格table翻页记忆勾选状态
阅读量:5090 次
发布时间:2019-06-13

本文共 1564 字,大约阅读时间需要 5 分钟。

  

 

//初始化列表数据 init(currentPage, pageSize) {      let _this = this;      let parmas = {        currentPage: currentPage,        pageSize: pageSize,        communityId: this.form.communityId,        companyId: this.form.companyId      };      // this.Utils.exeuhttpResquestGet(this.apiUrls.communityManagement.getTableData, {}, result => {      _this.Utils.exeuhttpResquestPost(this.apiUrls.rate.selectHouseInfoRate, parmas, result => {        _this.datalist = result.data.data.dataList;        _this.total = result.data.data.totalCount;        _this.$nextTick(function () {          _this.memoryChecked();        })      });    },    //行选中函数  若有删除,若无添加    handleselectRow(selection, row) {      if (this.selectObj[row.houseId]) {        delete this.selectObj[row.houseId]      } else {        this.selectObj[row.houseId] = row.houseId      }    },    //全选函数  点击全选遍历当页数据若无添加,若是反选则删除(判断是否是全选还是反选)    handleselectAll(selection) {      this.datalist.forEach((row, index) => {        if (this.selectObj.hasOwnProperty(row.houseId)) {          selection.length ? null : delete this.selectObj[row.houseId]        } else {          this.selectObj[row.houseId] = row.houseId        }      });    },    //记忆函数    memoryChecked(){      this.datalist.forEach((row, index) => {        if (this.selectObj.hasOwnProperty(row.houseId)) {          this.$refs.multipleTable.toggleRowSelection(row, true);            } else {          this.$refs.multipleTable.toggleRowSelection(row, false);        }      });    },

  

转载于:https://www.cnblogs.com/samsara-yx/p/11236713.html

你可能感兴趣的文章
《Genesis-3D开源游戏引擎完整实例教程-跑酷游戏篇03:暂停游戏》
查看>>
CPU,寄存器,一缓二缓.... RAM ROM 外部存储器等简介
查看>>
git .gitignore 文件不起作用
查看>>
Alan Turing的纪录片观后感
查看>>
IOS--沙盒机制
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
【题解】[P4178 Tree]
查看>>
Mongo自动备份
查看>>
cer证书签名验证
查看>>
synchronized
查看>>
【深度学习】caffe 中的一些参数介绍
查看>>
Python-Web框架的本质
查看>>
QML学习笔记之一
查看>>
App右上角数字
查看>>
从.NET中委托写法的演变谈开去(上):委托与匿名方法
查看>>
小算法
查看>>
201521123024 《java程序设计》 第12周学习总结
查看>>
新作《ASP.NET MVC 5框架揭秘》正式出版
查看>>