style:电子证书
Showing
3 changed files
with
22 additions
and
4 deletions
... | @@ -71,8 +71,11 @@ | ... | @@ -71,8 +71,11 @@ |
71 | .acceptance_information ul li p { | 71 | .acceptance_information ul li p { |
72 | display: inline-block; | 72 | display: inline-block; |
73 | } | 73 | } |
74 | .informationList li { | ||
75 | width: 100%!important; | ||
76 | } | ||
74 | .informationList p { | 77 | .informationList p { |
75 | display: block!important; | 78 | width: 25%!important; |
76 | } | 79 | } |
77 | .informationList p span { | 80 | .informationList p span { |
78 | width: 80px!important; | 81 | width: 80px!important; | ... | ... |
... | @@ -6,8 +6,6 @@ $(function () { | ... | @@ -6,8 +6,6 @@ $(function () { |
6 | }); | 6 | }); |
7 | addTabs('#wssq') | 7 | addTabs('#wssq') |
8 | setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno')); | 8 | setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno')); |
9 | |||
10 | |||
11 | list = getApplyRecord(GetQueryString('bsm_slsq'),GetQueryString('businessno')); | 9 | list = getApplyRecord(GetQueryString('bsm_slsq'),GetQueryString('businessno')); |
12 | // 房屋信息 | 10 | // 房屋信息 |
13 | houseInfo = getFDCQ2(GetQueryString('bsm_slsq')); | 11 | houseInfo = getFDCQ2(GetQueryString('bsm_slsq')); |
... | @@ -22,6 +20,11 @@ $(function () { | ... | @@ -22,6 +20,11 @@ $(function () { |
22 | $('#area p').text(houseInfo.jzmj); | 20 | $('#area p').text(houseInfo.jzmj); |
23 | // 买方信息 | 21 | // 买方信息 |
24 | var listItem; | 22 | var listItem; |
23 | let userInfo = []; | ||
24 | userInfo.push(getCookie('myCookie')); | ||
25 | |||
26 | console.log(userInfo) | ||
27 | if(list.sqrList && list.sqrList.length>0) { | ||
25 | for (var i = 0; i < list.sqrList.length; i++) { | 28 | for (var i = 0; i < list.sqrList.length; i++) { |
26 | listItem = '<li>' | 29 | listItem = '<li>' |
27 | listItem += '<p><span>姓名</span>:'+list.sqrList[i].sqrmc+'</p>' | 30 | listItem += '<p><span>姓名</span>:'+list.sqrList[i].sqrmc+'</p>' |
... | @@ -32,4 +35,16 @@ $(function () { | ... | @@ -32,4 +35,16 @@ $(function () { |
32 | listItem += '<p><span>联系电话</span>:'+list.sqrList[i].dhhm+'</p>' | 35 | listItem += '<p><span>联系电话</span>:'+list.sqrList[i].dhhm+'</p>' |
33 | $('#informationList').append(listItem) | 36 | $('#informationList').append(listItem) |
34 | } | 37 | } |
38 | }else { | ||
39 | for (var i = 0; i < userInfo.length; i++) { | ||
40 | listItem = '<li>' | ||
41 | listItem += '<p><span>姓名</span>:'+userInfo[i].username+'</p>' | ||
42 | if (userInfo[i].zjzl == 1) { | ||
43 | listItem += '<p><span>证件类型</span>:身份证</p>' | ||
44 | } | ||
45 | listItem += '<p><span>证件号码</span>:'+userInfo[i].zjhm+'</p>' | ||
46 | listItem += '<p><span>联系电话</span>:'+userInfo[i].phone+'</p>' | ||
47 | $('#informationList').append(listItem) | ||
48 | } | ||
49 | } | ||
35 | }) | 50 | }) | ... | ... |
... | @@ -86,7 +86,7 @@ | ... | @@ -86,7 +86,7 @@ |
86 | </div> | 86 | </div> |
87 | <!-- ------------房屋信息-------------- --> | 87 | <!-- ------------房屋信息-------------- --> |
88 | <div class="acceptance_information"> | 88 | <div class="acceptance_information"> |
89 | <h3>屋信息</h3> | 89 | <h3>房屋信息</h3> |
90 | <ul> | 90 | <ul> |
91 | <li id="unitNumber"> | 91 | <li id="unitNumber"> |
92 | <span>不动产单元号:</span> | 92 | <span>不动产单元号:</span> | ... | ... |
-
Please register or sign in to post a comment