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
35198f86
authored
2020-12-29 19:59:31 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:填报信息
1 parent
e64efcc5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
3 deletions
staticCss/wdyy.css
staticJs/onlineApply/houseFill.js
staticJs/wdyy.js
staticViews/wdyy.html
staticCss/wdyy.css
View file @
35198f8
.central_area
{
min-height
:
calc
(
100vh
-
190
px
);
min-height
:
calc
(
100vh
-
525
px
);
margin-top
:
20px
;
color
:
#4A4A4A
;
}
...
...
@@ -183,4 +183,9 @@
}
.business
{
cursor
:
pointer
;
}
\ No newline at end of file
}
.noData
{
text-align
:
center
;
padding-top
:
30px
;
display
:
none
;
}
\ No newline at end of file
...
...
staticJs/onlineApply/houseFill.js
View file @
35198f8
...
...
@@ -430,6 +430,7 @@ function _saveSQR() {
sqrList
=
sqrList
.
concat
(
tLists
)
for
(
var
i
=
0
;
i
<
sqrList
.
length
;
i
++
)
{
sqrList
[
i
].
sqrlx
=
1
;
sqrList
[
i
].
sqrlb
=
slsqxx
.
sqrlb
;
}
// 领证方式-邮寄地址
var
addMailRecordRequest
=
{};
...
...
@@ -448,7 +449,6 @@ function _saveSQR() {
data
:
JSON
.
stringify
({
'bsmSlsq'
:
slsqxx
.
bsmSlsq
,
'gyfsbm'
:
gyfsmc
,
'sqrlb'
:
slsqxx
.
sqrlb
,
'lzfs'
:
lzfs
,
'sqrList'
:
sqrList
,
'addMailRecordRequest'
:
addMailRecordRequest
...
...
staticJs/wdyy.js
View file @
35198f8
...
...
@@ -118,6 +118,13 @@ function paged(pageCount, curr) {
}
});
})
if
(
pageCount
==
0
)
{
$
(
'#page'
).
hide
();
$
(
'.noData'
).
show
();
}
else
{
$
(
'#page'
).
show
();
$
(
'.noData'
).
hide
();
}
}
var
dataList
=
{
...
...
staticViews/wdyy.html
View file @
35198f8
...
...
@@ -44,6 +44,7 @@
<div
class=
"contentBox"
>
<ul
class=
"appointment_list"
></ul>
<div
id=
"page"
></div>
<div
class=
"noData"
>
暂无数据
</div>
</div>
</div>
</div>
...
...
Please
register
or
sign in
to post a comment