mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
增加 data-full 参数
data-modal 及 data-iframe 增加 data-full 参数,可全屏显示
This commit is contained in:
parent
65f26e676c
commit
74502b2cd5
@ -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 事件行为 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user