Update admin.js

This commit is contained in:
Anyon 2022-03-25 19:06:03 +08:00
parent 56366a49d5
commit 020c757045

View File

@ -1023,11 +1023,14 @@ $(function () {
/*! 注册 data-tips-image 事件行为 */ /*! 注册 data-tips-image 事件行为 */
onEvent('click', '[data-tips-image]', function () { onEvent('click', '[data-tips-image]', function () {
var $imgs, items = []; var items = [], $imgs;
($imgs = $(this).parent().find('[data-tips-image]')).map(function () { ($imgs = $(this).parent().find('[data-tips-image]')).map(function () {
items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src}); items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src});
}) && layui.layer.photos({anim: 5, photos: {start: $imgs.index(this), data: items}}); }) && layui.layer.photos({
// $.previewImage(this.dataset.tipsImage || this.dataset.lazySrc || this.src, this.dataset.width); anim: 5, closeBtn: 1, photos: {start: $imgs.index(this), data: items}, tab: function (pic, $ele) {
$ele.find('.layui-layer-close').css({position: 'fixed', top: 0, right: 0});
}
});
}); });
/*! 注册 data-phone-view 事件行为 */ /*! 注册 data-phone-view 事件行为 */