From 74502b2cd5efb18b65734af6233b9ff01b705eb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Sun, 15 May 2022 13:20:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20data-full=20=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit data-modal 及 data-iframe 增加 data-full 参数,可全屏显示 --- public/static/admin.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/public/static/admin.js b/public/static/admin.js index d6645030e..14d500fb2 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -316,15 +316,14 @@ $(function () { }; /*! 打开 IFRAME 窗口 */ this.iframe = function (url, name, area, offset, destroy, success, isfull) { - console.log(arguments) this.idx = layer.open({title: name || '窗口', type: 2, area: area || ['800px', '580px'], end: destroy || null, offset: offset, fixed: true, maxmin: false, content: url, success: success}); return isfull && layer.full(this.idx), this.idx; }; /*! 加载 HTML 到弹出层 */ - this.modal = function (url, data, name, call, load, tips, area, offset) { + this.modal = function (url, data, name, call, load, tips, area, offset, isfull) { this.load(url, data, 'GET', function (res) { if (typeof res === 'object') return $.msg.auto(res), false; - return $.msg.mdx.push(layer.open({ + return $.msg.mdx.push(this.idx = layer.open({ type: 1, btn: false, area: area || "800px", resize: false, content: res, title: name || '', offset: offset || 'auto', success: function ($dom, idx) { typeof call === 'function' && call.call(that, $dom); $.form.reInit($dom.off('click', '[data-close]').on('click', '[data-close]', function () { @@ -333,7 +332,7 @@ $(function () { }); })); } - })), false; + })), isfull && layer.full(this.idx), false; }, load, tips); }; }; @@ -953,9 +952,9 @@ $(function () { /*! 注册 data-modal 事件行为 */ onEvent('click', '[data-modal]', function () { - var emap = this.dataset, data = {open_type: 'modal'}, un = undefined; + var un = undefined, emap = this.dataset, data = {open_type: 'modal'}; if (emap.rule && (applyRuleValue(this, data)) === false) return false; - return $.form.modal(emap.modal, data, emap.title || this.innerText || '编辑', un, un, un, emap.area || emap.width || '800px', emap.offset || 'auto'); + return $.form.modal(emap.modal, data, emap.title || this.innerText || '编辑', un, un, un, emap.area || emap.width || '800px', emap.offset || 'auto', emap.full !== un); }); /*! 注册 data-iframe 事件行为 */