Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
2272a742
authored
2023-06-28 11:17:04 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'dev' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
into dev
2 parents
c905cbc0
d867a9d0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
src/views/login/index.vue
src/views/login/index.vue
View file @
2272a74
...
...
@@ -125,6 +125,15 @@ export default {
this
.
initPage
();
this
.
userInfo
.
redirectUrl
=
localStorage
.
getItem
(
"dj-location"
);
this
.
reloadCaptcha
()
let
self
=
this
;
document
.
onkeydown
=
function
(
e
)
{
//按下回车提交
let
key
=
window
.
event
.
keyCode
;
//事件中keycode=13为回车事件
if
(
key
==
13
)
{
self
.
goHome
();
}
};
},
methods
:
{
// 更新验证码
...
...
Please
register
or
sign in
to post a comment