From c71ad05f55177a2fac0cd20786df181dbff6ad60 Mon Sep 17 00:00:00 2001
From: panlinlin <648540858@qq.com>
Date: 星期二, 13 四月 2021 10:13:01 +0800
Subject: [PATCH] 更新readme
---
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..5e75867 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",{
- params: loginParam
- } )
- .then(function (res) {
+ this.$axios({
+ method: 'get',
+ url:"/api/user/login",
+ params: loginParam
+ }).then(function (res) {
console.log(JSON.stringify(res));
if (res.data == "success") {
that.$cookies.set("session", {"username": that.username}) ;
@@ -79,8 +80,7 @@
type: 'error'
});
}
- })
- .catch(function (error) {
+ }).catch(function (error) {
that.$message.error(error.response.statusText);
that.isLoging = false;
});
--
Gitblit v1.8.0