このコミットが含まれているのは:
dragon1211 2022-01-28 03:01:54 -08:00
コミット 7795f6deb1
4個のファイルの変更15行の追加6行の削除

ファイルの表示

@ -27447,7 +27447,7 @@ var AdminLogin = function AdminLogin() {
switch (response.data.status_code) {
case 200:
{
loginOK(response.data.params.id);
if (location.search == '') window.location.href = "/admin/meeting";else window.location.href = location.search.replace('?redirect_to=', '');
break;
}
@ -31002,7 +31002,7 @@ var ChildLogin = function ChildLogin() {
switch (response.data.status_code) {
case 200:
{
loginOK(response.data.params.id);
if (location.search == '') window.location.href = "/c-account/meeting";else window.location.href = location.search.replace('?redirect_to=', '');
break;
}
@ -37548,7 +37548,7 @@ var ParentLogin = function ParentLogin() {
switch (response.data.status_code) {
case 200:
{
loginOK(response.data.params.id);
if (location.search == '') window.location.href = "/p-account/meeting";else window.location.href = location.search.replace('?redirect_to=', '');
break;
}

ファイルの表示

@ -27,7 +27,10 @@ const AdminLogin = () => {
switch (response.data.status_code) {
case 200: {
loginOK(response.data.params.id);
if(location.search == '')
window.location.href = "/admin/meeting";
else
window.location.href = location.search.replace('?redirect_to=', '');
break;
}
default: break;

ファイルの表示

@ -26,7 +26,10 @@ const ChildLogin = () => {
switch (response.data.status_code) {
case 200: {
loginOK(response.data.params.id);
if(location.search == '')
window.location.href = "/c-account/meeting";
else
window.location.href = location.search.replace('?redirect_to=', '');
break;
}
default: break;

ファイルの表示

@ -28,7 +28,10 @@ const ParentLogin = () => {
switch (response.data.status_code) {
case 200: {
loginOK(response.data.params.id);
if(location.search == '')
window.location.href = "/p-account/meeting";
else
window.location.href = location.search.replace('?redirect_to=', '');
break;
}
default: break;