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 () {
$.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 事件行为 */