mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update admin.js
This commit is contained in:
parent
56366a49d5
commit
020c757045
@ -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 事件行为 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user