45c905c0 by 任超

style:样式

1 parent d23618b9
......@@ -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;
......
......@@ -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');
}
})
// 点击注册的时候
......
......@@ -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);
}
});
//读取受理信息
......