更新layui版本

This commit is contained in:
邹景立 2023-12-04 22:57:36 +08:00
parent 99e76768b9
commit 85cd63df6f
3 changed files with 7 additions and 12 deletions

View File

@ -932,7 +932,6 @@ $(function () {
/*! 注册 data-modal 事件行为 */
$.base.onEvent('click', '[data-modal]', function () {
$.base.applyRuleValue(this, {open_type: 'modal'}, function (data, elem, dset) {
let area = dset.area || [dset.width || '800px', dset.height || '580px'];
let defer = $.form.modal(dset.modal, data, dset.title || this.innerText || '编辑', undefined, undefined, undefined, dset.area || dset.width || '800px', dset.offset || 'auto', dset.full !== undefined);
defer.progress((type) => type === 'modal.close' && dset.closeRefresh && $.layTable.reload(dset.closeRefresh));
});
@ -972,15 +971,11 @@ $(function () {
/*! 注册 data-copy 事件行为 */
$.base.onEvent('click', '[data-copy]', function () {
let copy = this.dataset.copy || this.innerText;
if (window.clipboardData) {
window.clipboardData.setData('text', copy);
$.msg.tips('已复制到剪贴板!');
} else {
let $input = $('<textarea readonly></textarea>');
$input.css({position: 'fixed', top: '-500px'}).appendTo($body).val(copy).select();
$.msg.tips(document.execCommand('Copy') ? '已复制到剪贴板!' : '请使用鼠标操作复制!') && $input.remove();
}
layui.lay.clipboard.writeText({
text: this.dataset.copy || this.innerText,
done: () => $.msg.tips('已复制到剪贴板!'),
error: () => $.msg.tips('请使用鼠标复制!')
})
});
/*! 异步任务状态监听与展示 */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long