Update admin.js

This commit is contained in:
Anyon 2022-04-07 19:04:05 +08:00
parent 37ffe19737
commit 98a9be550c

View File

@ -238,14 +238,15 @@ $(function () {
}; };
/*! 内容区域动态加载后初始化 */ /*! 内容区域动态加载后初始化 */
this.reInit = function ($dom) { this.reInit = function ($dom) {
$.vali.listen($dom = $dom || $(this.selecter));
layui.form.render(), layui.element.render(), $(window).trigger('scroll'); layui.form.render(), layui.element.render(), $(window).trigger('scroll');
return $dom.find('[required]').map(function ($parent) { $.vali.listen($dom = $dom || $(this.selecter)), $body.trigger('reInit', $dom);
if (($parent = $(this).parent()) && $parent.is('label')) { return $dom.find('[required]').map(function () {
$parent.addClass('label-required-prev'); this.$parent = $(this).parent();
} else { if (this.$parent.is('label')) this.$parent.addClass('label-required-prev');
$parent.prevAll('label').addClass('label-required-next'); else this.$parent.prevAll('label.layui-form-label').addClass('label-required-next');
} }), $dom.find('[data-lazy-src]:not([data-lazy-loaded])').map(function () {
if (this.dataset.lazyLoaded === 'true') return; else this.dataset.lazyLoaded = 'true';
if (this.nodeName === 'IMG') this.src = this.dataset.lazySrc; else this.style.backgroundImage = 'url(' + this.dataset.lazySrc + ')';
}), $dom.find('input[data-date-range]').map(function () { }), $dom.find('input[data-date-range]').map(function () {
this.setAttribute('autocomplete', 'off'), laydate.render({ this.setAttribute('autocomplete', 'off'), laydate.render({
type: this.dataset.dateRange || 'date', range: true, elem: this, done: function (value) { type: this.dataset.dateRange || 'date', range: true, elem: this, done: function (value) {
@ -258,13 +259,7 @@ $(function () {
$(this.elem).val(value).trigger('change'); $(this.elem).val(value).trigger('change');
} }
}); });
}), $dom.find('[data-lazy-src]:not([data-lazy-loaded])').each(function () { }), $dom;
if (this.dataset.lazyLoaded !== 'true') {
this.dataset.lazyLoaded = 'true';
if (this.nodeName === 'IMG') this.src = this.dataset.lazySrc;
else this.style.backgroundImage = 'url(' + this.dataset.lazySrc + ')';
}
}), $body.trigger('reInit', $dom), $dom;
}; };
/*! 在内容区显示视图 */ /*! 在内容区显示视图 */
this.show = function (html) { this.show = function (html) {