1
0
mirror of https://github.com/newnius/YAO-portal.git synced 2025-12-15 09:36:43 +00:00
This commit is contained in:
2019-05-06 14:56:40 +08:00
parent e80f1c8480
commit 6229f86b06
11 changed files with 52 additions and 37 deletions

View File

@@ -2,7 +2,7 @@ $(function () {
$("#btn-signout").click(function (e) {
e.preventDefault();
var ajax = $.ajax({
url: window.config.BASE_URL + "/service?action=user_signout",
url: "service?action=user_signout",
type: 'POST',
data: {}
});
@@ -14,7 +14,7 @@ $(function () {
$("#btn-oauth-login").click(function (e) {
e.preventDefault();
var ajax = $.ajax({
url: window.config.BASE_URL + "/service?action=user_login",
url: "service?action=user_login",
type: 'POST',
data: {}
});