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

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选中的行又没有被选中的情况)