Update admin.js

This commit is contained in:
Anyon 2021-01-08 17:05:48 +08:00
parent 5a2c5b9eaf
commit 71493594ae

View File

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