Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
etl-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
etl-platform
Commits
784103f7
Commit
784103f7
authored
Nov 25, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改xml111
parent
fd49f6b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
etl-manager-ui/admin/src/components/Header.vue
etl-manager-ui/admin/src/components/Header.vue
+4
-4
etl-manager/src/main/java/com/mortals/xhx/base/login/web/LoginController.java
.../java/com/mortals/xhx/base/login/web/LoginController.java
+2
-0
No files found.
etl-manager-ui/admin/src/components/Header.vue
View file @
784103f7
...
@@ -93,10 +93,10 @@ export default {
...
@@ -93,10 +93,10 @@ export default {
},
},
// 退出登录
// 退出登录
logout
()
{
logout
()
{
this
.
$post
(
'
/
login/logout
'
).
then
(
data
=>
{}).
catch
(
error
=>
{}).
then
(()
=>
{
this
.
$post
(
'
/
portal_home
'
).
then
(
data
=>
{}).
catch
(
error
=>
{}).
then
(()
=>
{
this
.
$message
.
success
(
'
已退出登录
'
);
//
this.$message.success('已退出登录');
this
.
$store
.
commit
(
'
logout
'
);
//
this.$store.commit('logout');
this
.
$router
.
replace
(
'
/login
'
);
//
this.$router.replace('/login');
})
})
}
}
},
},
...
...
etl-manager/src/main/java/com/mortals/xhx/base/login/web/LoginController.java
View file @
784103f7
...
@@ -78,6 +78,8 @@ public class LoginController extends BaseCRUDJsonBodyMappingController<UserServi
...
@@ -78,6 +78,8 @@ public class LoginController extends BaseCRUDJsonBodyMappingController<UserServi
return resp;
return resp;
*/
*/
JSONObject
ret
=
new
JSONObject
();
JSONObject
ret
=
new
JSONObject
();
ret
.
put
(
KEY_RESULT_CODE
,
VALUE_RESULT_FAILURE
);
ret
.
put
(
KEY_RESULT_MSG
,
"请返回门户登录"
);
try
{
try
{
/* JSONObject ret = new JSONObject();
/* JSONObject ret = new JSONObject();
String loginName = loginForm.getLoginName();
String loginName = loginForm.getLoginName();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment