style:样式
Showing
3 changed files
with
15 additions
and
10 deletions
| ... | @@ -438,7 +438,7 @@ input[type='file'] { | ... | @@ -438,7 +438,7 @@ input[type='file'] { |
| 438 | } | 438 | } |
| 439 | .conImageUpdate { | 439 | .conImageUpdate { |
| 440 | width: 100%; | 440 | width: 100%; |
| 441 | min-height: 290px; | 441 | overflow: hidden; |
| 442 | border: 1px solid #DEDEDE; | 442 | border: 1px solid #DEDEDE; |
| 443 | border-radius: 5px; | 443 | border-radius: 5px; |
| 444 | padding: 10px 0; | 444 | padding: 10px 0; |
| ... | @@ -448,7 +448,9 @@ input[type='file'] { | ... | @@ -448,7 +448,9 @@ input[type='file'] { |
| 448 | .itemImageUpdate { | 448 | .itemImageUpdate { |
| 449 | margin-right: 15px; | 449 | margin-right: 15px; |
| 450 | position: relative; | 450 | position: relative; |
| 451 | margin-bottom: 20px; | ||
| 451 | } | 452 | } |
| 453 | |||
| 452 | .mask { | 454 | .mask { |
| 453 | width: 100%; | 455 | width: 100%; |
| 454 | height: 240px; | 456 | height: 240px; |
| ... | @@ -488,7 +490,6 @@ input[type='file'] { | ... | @@ -488,7 +490,6 @@ input[type='file'] { |
| 488 | .imageUpdateTitle { | 490 | .imageUpdateTitle { |
| 489 | float: left; | 491 | float: left; |
| 490 | margin-right: 10px; | 492 | margin-right: 10px; |
| 491 | height: 240px; | ||
| 492 | width: 70px; | 493 | width: 70px; |
| 493 | text-align: center; | 494 | text-align: center; |
| 494 | writing-mode:vertical-lr; | 495 | writing-mode:vertical-lr; | ... | ... |
| ... | @@ -33,12 +33,13 @@ $(document).on('click', '.PersonLogin', function () { | ... | @@ -33,12 +33,13 @@ $(document).on('click', '.PersonLogin', function () { |
| 33 | 33 | ||
| 34 | // 点击登陆的时候 | 34 | // 点击登陆的时候 |
| 35 | $(document).on('click', '#loginButton', function () { | 35 | $(document).on('click', '#loginButton', function () { |
| 36 | var userLoginRequest = {} | 36 | var userLoginRequest = {}; |
| 37 | var username = $('#phone').val() | 37 | var username = $('#phone').val(); |
| 38 | var password = $('#IDcard').val() | 38 | var password = $('#IDcard').val(); |
| 39 | userLoginRequest.phone = username | 39 | userLoginRequest.phone = username; |
| 40 | userLoginRequest.password = password | 40 | userLoginRequest.password = password; |
| 41 | clicklogin(userLoginRequest) | 41 | delCookie(); |
| 42 | clicklogin(userLoginRequest); | ||
| 42 | }); | 43 | }); |
| 43 | 44 | ||
| 44 | // cancellation | 45 | // cancellation |
| ... | @@ -69,7 +70,7 @@ function delCookie () { | ... | @@ -69,7 +70,7 @@ function delCookie () { |
| 69 | $(function () { | 70 | $(function () { |
| 70 | $('.PersonLogin').html(getCookie('myCookie').username) | 71 | $('.PersonLogin').html(getCookie('myCookie').username) |
| 71 | if (getCookie('myCookie').username) { | 72 | if (getCookie('myCookie').username) { |
| 72 | $('.personalCenter').addClass('show') | 73 | $('.personalCenter').addClass('show'); |
| 73 | } | 74 | } |
| 74 | }) | 75 | }) |
| 75 | // 点击注册的时候 | 76 | // 点击注册的时候 | ... | ... |
| ... | @@ -39,7 +39,6 @@ $(function () { | ... | @@ -39,7 +39,6 @@ $(function () { |
| 39 | //读取邮寄信息 | 39 | //读取邮寄信息 |
| 40 | loadMailDetail(); | 40 | loadMailDetail(); |
| 41 | // 在这里页面显示进行处理 | 41 | // 在这里页面显示进行处理 |
| 42 | console.log(99999, slsqxx) | ||
| 43 | if (slsqxx.sqrlb == '1' && slsqxx.sqfs == '2') { | 42 | if (slsqxx.sqrlb == '1' && slsqxx.sqfs == '2') { |
| 44 | $('.obtaining_license').hide(); | 43 | $('.obtaining_license').hide(); |
| 45 | $('#obligeeInformation').text('权利人信息'); | 44 | $('#obligeeInformation').text('权利人信息'); |
| ... | @@ -56,6 +55,10 @@ $(function () { | ... | @@ -56,6 +55,10 @@ $(function () { |
| 56 | if (slsqxx.sqfs == '1') { | 55 | if (slsqxx.sqfs == '1') { |
| 57 | $('.folkObligee').show(); | 56 | $('.folkObligee').show(); |
| 58 | } | 57 | } |
| 58 | // 动态设置样式 | ||
| 59 | for(var i=0;i<$('.conImageUpdate').length;i++) { | ||
| 60 | $('.conImageUpdate').eq(i).find('.imageUpdateTitle').css('height', $('.conImageUpdate').eq(i).height()-60); | ||
| 61 | } | ||
| 59 | }); | 62 | }); |
| 60 | 63 | ||
| 61 | //读取受理信息 | 64 | //读取受理信息 | ... | ... |
-
Please register or sign in to post a comment