diff --git a/public/static/admin.js b/public/static/admin.js index 10527f3a7..ba8f82523 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -761,21 +761,22 @@ $(function () { $body.on('click', '[data-tips-image]', function () { $.previewImage(this.dataset.tipsImage || this.dataset.lazySrc || this.src, this.dataset.with); }); - $.previewImage = function (src, area, end) { - var idx = 0, img = new Image(), index = $.msg.loading(); + $.previewImage = function (src, area, done, close) { + var img = new Image(), index = $.msg.loading(); img.style.background = '#fff', img.style.display = 'none'; img.style.height = 'auto', img.style.width = area || '480px'; document.body.appendChild(img), img.onerror = function () { $.msg.close(index); }, img.onload = function () { - idx = layer.open({ - type: 1, shadeClose: true, success: img.onerror, content: $(img), title: false, - area: area || '480px', closeBtn: 1, skin: 'layui-layer-nobg', end: function () { - document.body.removeChild(img), (typeof end === 'function' && end()) + layer.open({ + type: 1, title: false, shadeClose: true, content: $(img), success: function (idx) { + $.msg.close(index), (typeof done === 'function' && done(idx)) + }, area: area || '480px', closeBtn: 1, skin: 'layui-layer-nobg', end: function () { + document.body.removeChild(img), (typeof close === 'function' && close()) } }); }; - return (img.src = src), idx; + return img.src = src; }; /*! 注册 data-phone-view 事件行为 */