Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.portalStaticPage
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
c654d6d9
authored
2021-01-12 09:47:35 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:登录
1 parent
bc34574c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
33 deletions
staticCss/common.css
staticJs/login.js
staticCss/common.css
View file @
c654d6d
...
...
@@ -358,34 +358,6 @@ div.footer .system_service ul li a:hover {
display
:
flex
;
justify-content
:
center
;
}
#loginButton
{
margin-right
:
30px
;
cursor
:
pointer
;
border
:
1px
solid
#dcdfe6
;
color
:
#606266
;
-webkit-appearance
:
none
;
text-align
:
center
;
box-sizing
:
border-box
;
outline
:
none
;
transition
:
.1s
;
padding
:
5px
10px
;
font-size
:
14px
;
border-radius
:
4px
;
}
#registerButton
{
margin-right
:
30px
;
cursor
:
pointer
;
border
:
1px
solid
#dcdfe6
;
color
:
#606266
;
-webkit-appearance
:
none
;
text-align
:
center
;
box-sizing
:
border-box
;
outline
:
none
;
transition
:
.1s
;
padding
:
5px
10px
;
font-size
:
14px
;
border-radius
:
4px
;
}
.personalCenter
{
display
:
inline-block
;
}
...
...
@@ -476,6 +448,10 @@ div.footer .system_service ul li a:hover {
position
:
relative
;
top
:
18px
!important
;
}
.loginInput
{
height
:
26px
;
margin-bottom
:
10px
;
}
.marginTop20
{
margin-top
:
20px
;
}
\ No newline at end of file
...
...
staticJs/login.js
View file @
c654d6d
...
...
@@ -5,17 +5,17 @@ function login() {
type
:
1
,
title
:
'登录信息'
,
shadeClose
:
false
,
area
:
[
'500px'
,
'
32
0px'
],
area
:
[
'500px'
,
'
28
0px'
],
scrollbar
:
false
,
skin
:
'confimInfo'
,
content
:
'<div class="loginINfo">'
+
'<ul>'
+
'<li><span><a class="require">*</a>手机号</span>:<input id="phone"></li>'
+
'<li><span><a class="require">*</a>密码</span>:<input type="password" id="IDcard"></li>'
+
'<li><span><a class="require">*</a>手机号</span>:<input
class="loginInput"
id="phone"></li>'
+
'<li><span><a class="require">*</a>密码</span>:<input
class="loginInput"
type="password" id="IDcard"></li>'
+
'</ul>'
+
'<div class="btns">'
+
'<button type="button" id="loginButton">登录</button>'
+
'<button type="button" id="registerButton">注册</button></div>'
+
'<button type="button"
class="layui-btn layui-btn-normal"
id="loginButton">登录</button>'
+
'<button type="button"
class="layui-btn layui-btn-primary"
id="registerButton">注册</button></div>'
+
'</div>'
});
})
...
...
@@ -43,6 +43,7 @@ function fetchDataReview() {
window
.
open
(
''
+
localhostPaht
+
'/index.html'
,
'_self'
);
$
(
'.loginAfter'
).
hide
();
$
(
'.isLogin'
).
show
();
sessionStorage
.
clear
()
},
function
()
{
layer
.
msg
(
'已取消'
);
});
...
...
Please
register
or
sign in
to post a comment