D:/workspace/chenjingjing/git/gx_tieta/gx_tieta/.gitignore
2019-01-21 35fefed0792c40cb99b8d15fa5811bbb5992bff9
gx_tieta/WebRoot/js/popup.js
@@ -8,10 +8,15 @@
Popup.prototype.showPopup = function() {
   var winHt = $(window).height();
   var popupMask = $('<div class="popup-mask"></div>');
   $('body').append(popupMask);
   if($('body .popup-mask').length == 0) {
      $('body').append(popupMask);
   }
   $('.popup-mask').animate({height: winHt+"px"});
   this.centerPopup();
   this.popup.css('visibility', 'visible');
   $('body').css('overflow-y', 'hidden');
   //console.info('显示执行成功!!!');
};
@@ -24,6 +29,7 @@
Popup.prototype.hidePopup = function() {
   this.popup.css('top', -9999+'px');
   $('body').css('overflow-y', 'auto');
   $('.popup-mask').animate({height:0},function() {
      $('.popup-mask').remove();