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
45c905c0
authored
2020-12-24 10:12:19 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:样式
1 parent
d23618b9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
10 deletions
staticCss/yysq.css
staticJs/login.js
staticJs/onlineApply/houseFill.js
staticCss/yysq.css
View file @
45c905c
...
...
@@ -438,7 +438,7 @@ input[type='file'] {
}
.conImageUpdate
{
width
:
100%
;
min-height
:
290px
;
overflow
:
hidden
;
border
:
1px
solid
#DEDEDE
;
border-radius
:
5px
;
padding
:
10px
0
;
...
...
@@ -448,7 +448,9 @@ input[type='file'] {
.itemImageUpdate
{
margin-right
:
15px
;
position
:
relative
;
margin-bottom
:
20px
;
}
.mask
{
width
:
100%
;
height
:
240px
;
...
...
@@ -488,7 +490,6 @@ input[type='file'] {
.imageUpdateTitle
{
float
:
left
;
margin-right
:
10px
;
height
:
240px
;
width
:
70px
;
text-align
:
center
;
writing-mode
:
vertical-lr
;
...
...
staticJs/login.js
View file @
45c905c
...
...
@@ -33,12 +33,13 @@ $(document).on('click', '.PersonLogin', function () {
// 点击登陆的时候
$
(
document
).
on
(
'click'
,
'#loginButton'
,
function
()
{
var
userLoginRequest
=
{}
var
username
=
$
(
'#phone'
).
val
()
var
password
=
$
(
'#IDcard'
).
val
()
userLoginRequest
.
phone
=
username
userLoginRequest
.
password
=
password
clicklogin
(
userLoginRequest
)
var
userLoginRequest
=
{};
var
username
=
$
(
'#phone'
).
val
();
var
password
=
$
(
'#IDcard'
).
val
();
userLoginRequest
.
phone
=
username
;
userLoginRequest
.
password
=
password
;
delCookie
();
clicklogin
(
userLoginRequest
);
});
// cancellation
...
...
@@ -69,7 +70,7 @@ function delCookie () {
$
(
function
()
{
$
(
'.PersonLogin'
).
html
(
getCookie
(
'myCookie'
).
username
)
if
(
getCookie
(
'myCookie'
).
username
)
{
$
(
'.personalCenter'
).
addClass
(
'show'
)
$
(
'.personalCenter'
).
addClass
(
'show'
)
;
}
})
// 点击注册的时候
...
...
staticJs/onlineApply/houseFill.js
View file @
45c905c
...
...
@@ -39,7 +39,6 @@ $(function () {
//读取邮寄信息
loadMailDetail
();
// 在这里页面显示进行处理
console
.
log
(
99999
,
slsqxx
)
if
(
slsqxx
.
sqrlb
==
'1'
&&
slsqxx
.
sqfs
==
'2'
)
{
$
(
'.obtaining_license'
).
hide
();
$
(
'#obligeeInformation'
).
text
(
'权利人信息'
);
...
...
@@ -56,6 +55,10 @@ $(function () {
if
(
slsqxx
.
sqfs
==
'1'
)
{
$
(
'.folkObligee'
).
show
();
}
// 动态设置样式
for
(
var
i
=
0
;
i
<
$
(
'.conImageUpdate'
).
length
;
i
++
)
{
$
(
'.conImageUpdate'
).
eq
(
i
).
find
(
'.imageUpdateTitle'
).
css
(
'height'
,
$
(
'.conImageUpdate'
).
eq
(
i
).
height
()
-
60
);
}
});
//读取受理信息
...
...
Please
register
or
sign in
to post a comment