Lawrence
2021-01-28 a522d09734844fffec1c7a4f65159bfb6226c2d3
修复各页面按下回车键都会退回Contral页面的问题
1个文件已修改
13 ■■■■■ 已修改文件
web_src/src/components/Login.vue 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
web_src/src/components/Login.vue
@@ -36,7 +36,6 @@
      that.login();
    }
  }
  },
  methods:{
@@ -70,6 +69,7 @@
          if (res.data == "success") {
            that.$cookies.set("session", {"username": that.username}) ;
            //登录成功后
            that.cancelEnterkeyDefaultAction();
            that.$router.push('/');
          }else{
            that.isLoging = false;
@@ -84,9 +84,6 @@
        that.$message.error(error.response.statusText);
        that.isLoging = false;
      });
    },
     setCookie: function (cname, cvalue, exdays) {
                var d = new Date();
@@ -96,6 +93,14 @@
                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>