美文网首页
关于vue界面刷新之后 ,table选中的行又没有被选中的情况

关于vue界面刷新之后 ,table选中的行又没有被选中的情况

作者: 大明天下奈何亡与朕手 | 来源:发表于2019-06-19 15:45 被阅读0次

1、如果是一行:

 _this.zabbix_alarm_tableData.forEach(item => {                                     //_this.zabbix_alarm_tableData为table的数据行

    if (item.eventid == _this.alarm_info_row.eventid) {                                  //this.alarm_info_row为要设置为选中状态的行数据

        _this.$refs.alarmTable.setCurrentRow(item);            

  }

})

2、如果是多行:

let _this =this;

this.$nextTick(() => {

_this.server_select_list.forEach(row => {

    _this.assert_list_tmp.forEach(item => {

            if (item.eventid == row.eventid) {

                _this.$refs.multipleTable.toggleRowSelection(item);

      }

})

});

});

相关文章

网友评论

      本文标题:关于vue界面刷新之后 ,table选中的行又没有被选中的情况

      本文链接:https://www.haomeiwen.com/subject/saekqctx.html