From 123ce171d2b8ca97d9f4011a33ce4e5e8d1cc339 Mon Sep 17 00:00:00 2001 From: panlinlin <648540858@qq.com> Date: 星期二, 13 四月 2021 15:08:09 +0800 Subject: [PATCH] 使用数据库用户表代替配置文件 --- web_src/src/components/Login.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web_src/src/components/Login.vue b/web_src/src/components/Login.vue index 5e75867..315293b 100644 --- a/web_src/src/components/Login.vue +++ b/web_src/src/components/Login.vue @@ -62,9 +62,9 @@ this.isLoging = true; this.$axios({ - method: 'get', - url:"/api/user/login", - params: loginParam + method: 'get', + url:"/api/user/login", + params: loginParam }).then(function (res) { console.log(JSON.stringify(res)); if (res.data == "success") { -- Gitblit v1.8.0