mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
更新layui组件
This commit is contained in:
parent
41759597f5
commit
af31edd63c
@ -304,15 +304,22 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
return $.msg.auto(res);
|
return $.msg.auto(res);
|
||||||
}
|
}
|
||||||
layer.open({
|
layer.open({
|
||||||
|
type: 1,
|
||||||
|
btn: false,
|
||||||
area: "800px",
|
area: "800px",
|
||||||
content: res,
|
content: res,
|
||||||
btn: false,
|
|
||||||
title: title || '',
|
title: title || '',
|
||||||
success: function (dom, index) {
|
success: function (dom, index) {
|
||||||
var $container = $(dom);
|
var $container = $(dom);
|
||||||
/* 处理样式及返回按钮事件 */
|
/* 处理样式及返回按钮事件 */
|
||||||
$container.find('[data-close]').off('click').on('click', function () {
|
$container.find('[data-close]').off('click').on('click', function () {
|
||||||
layer.close(index);
|
if ($(this).attr('data-confirm')) {
|
||||||
|
$.msg.confirm($(this).attr('data-confirm'), function () {
|
||||||
|
layer.close(index);
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
layer.close(index);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
/* 事件重载 */
|
/* 事件重载 */
|
||||||
$.form.reInit($container);
|
$.form.reInit($container);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user