From b0088b8bd38c7ddc0c3f88fb2c8485d44e9a6ddb Mon Sep 17 00:00:00 2001
From: Lawrence <1934378145@qq.com>
Date: 星期五, 22 一月 2021 15:36:23 +0800
Subject: [PATCH] 修正不支持的method处理错误

---
 web_src/src/components/Login.vue |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/web_src/src/components/Login.vue b/web_src/src/components/Login.vue
index f047c5d..160197a 100644
--- a/web_src/src/components/Login.vue
+++ b/web_src/src/components/Login.vue
@@ -62,7 +62,7 @@
       //璁剧疆鍦ㄧ櫥褰曠姸鎬�
       this.isLoging = true;
 
-      this.$axios.get("/auth/login",{
+      this.$axios.get("/api/user/login",{
         params: loginParam
       } )
       .then(function (res) {
@@ -71,6 +71,13 @@
             that.$cookies.set("session", {"username": that.username}) ;
             //鐧诲綍鎴愬姛鍚�
             that.$router.push('/');
+          }else{
+            that.isLoging = false;
+            that.$message({
+                  showClose: true,
+                  message: '鐧诲綍澶辫触锛岀敤鎴峰悕鎴栧瘑鐮侀敊璇�',
+                  type: 'error'
+              });
           }
       })
       .catch(function (error) {

--
Gitblit v1.8.0