修复各页面按下回车键都会退回Contral页面的问题
| | |
| | | that.login(); |
| | | } |
| | | } |
| | | |
| | | }, |
| | | methods:{ |
| | | |
| | |
| | | if (res.data == "success") { |
| | | that.$cookies.set("session", {"username": that.username}) ; |
| | | //登录成功后 |
| | | that.cancelEnterkeyDefaultAction(); |
| | | that.$router.push('/'); |
| | | }else{ |
| | | that.isLoging = false; |
| | |
| | | that.$message.error(error.response.statusText); |
| | | that.isLoging = false; |
| | | }); |
| | | |
| | | |
| | | |
| | | }, |
| | | setCookie: function (cname, cvalue, exdays) { |
| | | var d = new Date(); |
| | |
| | | document.cookie = cname + "=" + cvalue + "; " + expires; |
| | | console.info(document.cookie); |
| | | }, |
| | | cancelEnterkeyDefaultAction: function() { |
| | | document.onkeydown = function(e) { |
| | | var key = window.event.keyCode; |
| | | if (key == 13) { |
| | | return false; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | </script> |