From a70e327a8efaf38d74911ea568419a087fbd235a Mon Sep 17 00:00:00 2001
From: lawrencehj <1934378145@qq.com>
Date: 星期四, 15 四月 2021 11:42:05 +0800
Subject: [PATCH] 修改用户密码前先验证旧密码,增加安全性

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

diff --git a/web_src/src/components/Login.vue b/web_src/src/components/Login.vue
index 2a91886..6adf4a8 100644
--- a/web_src/src/components/Login.vue
+++ b/web_src/src/components/Login.vue
@@ -61,10 +61,11 @@
       //璁剧疆鍦ㄧ櫥褰曠姸鎬�
       this.isLoging = true;
 
-      this.$axios.get("/api/user/login",{
+      this.$axios({
+      	method: 'get',
+	url:"/api/user/login",
         params: loginParam
-      } )
-      .then(function (res) {
+      }).then(function (res) {
         console.log(JSON.stringify(res));
           if (res.data == "success") {
             that.$cookies.set("session", {"username": that.username}) ;
@@ -79,9 +80,8 @@
                   type: 'error'
               });
           }
-      })
-      .catch(function (error) {
-        that.$message.error(error.response.statusText);
+      }).catch(function (error) {
+        that.$message.error(error.response.data.msg);
         that.isLoging = false;
       });
     },

--
Gitblit v1.8.0