From f72e1d45eb215d7f2b5c6892ba16cd65a6f43bbf Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 5 Jan 2021 11:42:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20model=20=E5=B0=BA=E5=AF=B8?= =?UTF-8?q?=E8=AE=BE=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/wechat/view/config/options.html | 2 +- public/static/admin.js | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/wechat/view/config/options.html b/app/wechat/view/config/options.html index c76515a53..1b1f3ed3f 100644 --- a/app/wechat/view/config/options.html +++ b/app/wechat/view/config/options.html @@ -2,7 +2,7 @@ {block name="button"} - + {/block} diff --git a/public/static/admin.js b/public/static/admin.js index 31f45739e..e503e7a86 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -256,11 +256,11 @@ $(function () { return layer.open({title: title || '窗口', type: 2, area: area || ['800px', '580px'], fix: true, maxmin: false, content: url}); }; /*! 加载 HTML 到弹出层 */ - this.modal = function (url, data, title, callback, loading, tips) { + this.modal = function (url, data, title, callback, loading, tips, area) { this.load(url, data, 'GET', function (res, index) { if (typeof (res) === 'object') return $.msg.auto(res), false; index = layer.open({ - type: 1, btn: false, area: "800px", content: res, title: title || '', success: function (dom, index) { + type: 1, btn: false, area: area || "800px", content: res, title: title || '', success: function (dom, index) { $(dom).find('[data-close]').off('click').on('click', function () { if (this.dataset.confirm) return $.msg.confirm(this.dataset.confirm, function (_index) { layer.close(_index), layer.close(index); @@ -640,7 +640,8 @@ $(function () { /*! 注册 data-modal 事件行为 */ $body.on('click', '[data-modal]', function () { - return $.form.modal(this.dataset.modal, 'open_type=modal', this.dataset.title || this.innerText || '编辑'); + var area = this.dataset.area || this.dataset.width || '800px'; + return $.form.modal(this.dataset.modal, 'open_type=modal', this.dataset.title || this.innerText || '编辑', undefined, undefined, undefined, area); }); /*! 注册 data-open 事件行为 */