From 1d73c7e1428d51c9f4e50fc3aa1198c809cd0990 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 6 Jul 2022 14:52:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A4=9A=E5=9B=BE=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/static/admin.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/static/admin.js b/public/static/admin.js index 17d405a8c..2b83e1c12 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -611,14 +611,14 @@ $(function () { if ($(this).data('inited')) return true; else $(this).data('inited', true); var $bt = $('
'); var ims = this.value ? this.value.split('|') : [], $in = $(this).after($bt); - $bt.find('[data-file]').attr('data-size', $in.data('size') || 0).attr('data-type', $in.data('type') || 'gif,png,jpg,jpeg').data('input', this).on('push', function (evt, src) { + $bt.find('[data-file]').attr('data-size', $in.data('size') || 0).attr('data-type', $in.data('type') || 'gif,png,jpg,jpeg').on('push', function (evt, src) { ims.push(src), $in.val(ims.join('|')), showImageContainer([src]); - }) && (ims.length > 0 && showImageContainer(ims)) + }) && (ims.length > 0 && showImageContainer(ims)); function showImageContainer(srcs) { - $(srcs).each(function (idx, src, $image) { - $image = $('
'); - $image.attr('data-tips-image', encodeURI(src)).css('backgroundImage', 'url(' + encodeURI(src) + ')').on('click', 'a', function (event, index, prevs, $item) { + $(srcs).each(function (idx, src, $img) { + $img = $('
'); + $img.attr('data-tips-image', encodeURI(src)).css('backgroundImage', 'url(' + encodeURI(src) + ')').on('click', 'a', function (event, index, prevs, $item) { event.stopPropagation(), $item = $(this).parent().parent(), index = $(this).index(); if (index === 2 && $item.index() !== $bt.prevAll('div.uploadimage').length) $item.next().after($item); else if (index === 0 && $item.index() > 1) $item.prev().before($item); @@ -627,7 +627,7 @@ $(function () { ims.push($(this).attr('data-tips-image')); }); ims.reverse(), $in.val(ims.join('|')); - }), $bt.before($image); + }), $bt.before($img); }); } });