赞
踩
this.$refs.brlbtable.setCurrentRow(this.dataList[0])
// 监听键盘
keyDown() {
document.onkeydown = (e) => {
//事件对象兼容
if(this.showBrlbDlgFlag==true){
//键盘按键判断:左箭头-37;上箭头-38;右箭头-39;下箭头-40
if (e1 && e1.keyCode == 38) {
// 按上箭头
this.$refs.brlbtable.setCurrentRow(this.dataList[this.rowindex])
} else if (e1 && e1.keyCode == 40) {
// 按下箭头
this.$refs.brlbtable.setCurrentRow(this.dataList[this.rowindex])
}else if (e1 && e1.keyCode == 13) {
// 按huiche
setTimeout(() => {
}, 200);
}
}
}
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。