Authored by 沈志敏

fix bug

... ... @@ -329,14 +329,23 @@ $('.close').on('click', function() {
$('.dialog').addClass('hidden');
$('.mask').addClass('hidden');
$('#dialog .content').html(' ');
$('body').css({
overflow: 'auto'
});
});
$('.coupon-description span').on('click', function() {
$('#message').removeClass('hidden');
$('.mask').removeClass('hidden');
$('body').css({
overflow: 'hidden'
});
});
$('.description').on('click', function() {
$('#message').removeClass('hidden');
$('.mask').removeClass('hidden');
$('body').css({
overflow: 'hidden'
});
});
$('.use-coupon-btn').on('click', function() {
... ... @@ -357,4 +366,4 @@ $('.input-content .clear-verify').on('click', function() {
$('.input-content input').eq('1').val('');
$(this).addClass('hidden');
$('.input-content div').eq('1').removeClass();
});
});
\ No newline at end of file
... ...
... ... @@ -187,7 +187,7 @@
.dialog {
width: 84%;
height: 410px;
position: absolute;
position: fixed;
background: #fff;
border-radius: 0.6rem;
left: 8%;
... ... @@ -232,7 +232,7 @@
.activity-message {
width: 100%;
height: 410px;
overflow: scroll;
overflow: auto;
}
.activity-message h3 {
... ...