@@ -45,7 +45,10 @@
}).off('mouseleave', '.news-item').on('mouseleave', '.news-item', function () {
$(this).find('.news-tools').addClass('layui-hide');
});
+ $.msg.loading();
require(['jquery.masonry'], function (Masonry) {
+ layui.layer.closeAll();
+ $('#news-box').removeClass('layui-hide');
var newsbox = document.querySelector('#news-box');
var msnry = new Masonry(newsbox, {itemSelector: '.news-item', columnWidth: 0});
msnry.layout(), $('body').on('click', '[data-news-del]', function (event) {
diff --git a/public/static/admin.js b/public/static/admin.js
index 282e70beb..2c5541e27 100644
--- a/public/static/admin.js
+++ b/public/static/admin.js
@@ -131,7 +131,7 @@ $(function () {
};
// 内容区域动态加载后初始化
this.reInit = function ($dom) {
- $.vali.listen(this), $dom = $dom || $(this.selecter);
+ $(window).trigger('scroll'), $.vali.listen(this), $dom = $dom || $(this.selecter);
$dom.find('[required]').map(function ($parent) {
if (($parent = $(this).parent()) && $parent.is('label')) {
$parent.addClass('label-required-prev');
@@ -160,9 +160,7 @@ $(function () {
$this.uploadFile(function (url, file) {
$($this.data('input')).data('file', file).val(url).trigger('change');
});
- }), setTimeout(function () {
- $(window).trigger('scroll');
- }, 500);
+ });
};
// 在内容区显示视图
this.show = function (html) {