# 监听键盘事件

plus.key.addEventListener('keydown',function(e){
			if(e.keyCode==4){
				this.$Router.back(backLayer=2)
			}
		})
1
2
3
4
5