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
b4d41bec
authored
2020-12-17 09:47:50 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:电子证书
1 parent
75abc20f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
4 deletions
staticCss/dzzs.css
staticJs/onlineApply/certificateIssuance.js
staticViews/onlineApply/certificateIssuance.html
staticCss/dzzs.css
View file @
b4d41be
...
...
@@ -71,8 +71,11 @@
.acceptance_information
ul
li
p
{
display
:
inline-block
;
}
.informationList
li
{
width
:
100%
!important
;
}
.informationList
p
{
display
:
block
!important
;
width
:
25%
!important
;
}
.informationList
p
span
{
width
:
80px
!important
;
...
...
staticJs/onlineApply/certificateIssuance.js
View file @
b4d41be
...
...
@@ -6,8 +6,6 @@ $(function () {
});
addTabs
(
'#wssq'
)
setAcceptFlow
(
GetQueryString
(
'bsm_slsq'
),
GetQueryString
(
'businessno'
));
list
=
getApplyRecord
(
GetQueryString
(
'bsm_slsq'
),
GetQueryString
(
'businessno'
));
// 房屋信息
houseInfo
=
getFDCQ2
(
GetQueryString
(
'bsm_slsq'
));
...
...
@@ -22,6 +20,11 @@ $(function () {
$
(
'#area p'
).
text
(
houseInfo
.
jzmj
);
// 买方信息
var
listItem
;
let
userInfo
=
[];
userInfo
.
push
(
getCookie
(
'myCookie'
));
console
.
log
(
userInfo
)
if
(
list
.
sqrList
&&
list
.
sqrList
.
length
>
0
)
{
for
(
var
i
=
0
;
i
<
list
.
sqrList
.
length
;
i
++
)
{
listItem
=
'<li>'
listItem
+=
'<p><span>姓名</span>:'
+
list
.
sqrList
[
i
].
sqrmc
+
'</p>'
...
...
@@ -32,4 +35,16 @@ $(function () {
listItem
+=
'<p><span>联系电话</span>:'
+
list
.
sqrList
[
i
].
dhhm
+
'</p>'
$
(
'#informationList'
).
append
(
listItem
)
}
}
else
{
for
(
var
i
=
0
;
i
<
userInfo
.
length
;
i
++
)
{
listItem
=
'<li>'
listItem
+=
'<p><span>姓名</span>:'
+
userInfo
[
i
].
username
+
'</p>'
if
(
userInfo
[
i
].
zjzl
==
1
)
{
listItem
+=
'<p><span>证件类型</span>:身份证</p>'
}
listItem
+=
'<p><span>证件号码</span>:'
+
userInfo
[
i
].
zjhm
+
'</p>'
listItem
+=
'<p><span>联系电话</span>:'
+
userInfo
[
i
].
phone
+
'</p>'
$
(
'#informationList'
).
append
(
listItem
)
}
}
})
...
...
staticViews/onlineApply/certificateIssuance.html
View file @
b4d41be
...
...
@@ -86,7 +86,7 @@
</div>
<!-- ------------房屋信息-------------- -->
<div
class=
"acceptance_information"
>
<h3>
屋信息
</h3>
<h3>
房
屋信息
</h3>
<ul>
<li
id=
"unitNumber"
>
<span>
不动产单元号:
</span>
...
...
Please
register
or
sign in
to post a comment