mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
更新同步插件代码
This commit is contained in:
parent
161b05ce61
commit
c36ae62bf4
@ -16,6 +16,7 @@
|
||||
|
||||
namespace app\admin\controller\api;
|
||||
|
||||
use Error;
|
||||
use Exception;
|
||||
use think\admin\Controller;
|
||||
use think\admin\service\AdminService;
|
||||
@ -90,7 +91,7 @@ class Queue extends Controller
|
||||
} else {
|
||||
echo "<span class='color-red pointer' data-tips-text='{$message}'>未启动</span>";
|
||||
}
|
||||
} catch (Exception $exception) {
|
||||
} catch (Error|Exception $exception) {
|
||||
echo "<span class='color-red pointer' data-tips-text='{$exception->getMessage()}'>异 常</span>";
|
||||
} else {
|
||||
echo "<span class='color-red pointer' data-tips-text='只有超级管理员才能操作!'>无权限</span>";
|
||||
|
@ -5,7 +5,7 @@
|
||||
<a data-table-id="FileTable" data-load='{:url("distinct")}' class='layui-btn layui-btn-sm layui-btn-primary'>清理重复</a>
|
||||
<!--{/if}-->
|
||||
<!--{if auth("remove")}-->
|
||||
<a data-confirm="确定永久删除这些账号吗?" data-table-id="FileTable" data-action='{:url("remove")}' data-rule="id#{id}" class='layui-btn layui-btn-sm layui-btn-primary'>批量删除</a>
|
||||
<a data-confirm="确定删除这些记录吗?" data-table-id="FileTable" data-action='{:url("remove")}' data-rule="id#{id}" class='layui-btn layui-btn-sm layui-btn-primary'>批量删除</a>
|
||||
<!--{/if}-->
|
||||
{/block}
|
||||
|
||||
|
@ -257,11 +257,8 @@ $(function () {
|
||||
};
|
||||
/*! 内容区域动态加载后初始化 */
|
||||
this.reInit = function ($dom) {
|
||||
$dom = $dom || $(this.selecter);
|
||||
layui.form.render(), layui.element.render(), $(window).trigger('scroll');
|
||||
require(['ThinkAdmin'], function () {
|
||||
$.vali.listen($dom) && $body.trigger('reInit', $dom);
|
||||
});
|
||||
layui.form.render() && layui.element.render() && $(window).trigger('scroll');
|
||||
$.vali.listen($dom = $dom || $(this.selecter)) && $body.trigger('reInit', $dom);
|
||||
return $dom.find('[required]').map(function () {
|
||||
this.$parent = $(this).parent();
|
||||
if (this.$parent.is('label')) this.$parent.addClass('label-required-prev'); else this.$parent.prevAll('label.layui-form-label').addClass('label-required-next');
|
||||
@ -739,263 +736,264 @@ $(function () {
|
||||
layer.style(layer.open({type: true, resize: false, scrollbar: false, area: ['320px', '600px'], title: false, closeBtn: true, shadeClose: false, skin: 'layui-layer-nobg', content: laytpl(template).render({title: title || '公众号', url: href})}), {boxShadow: 'none'});
|
||||
};
|
||||
|
||||
/*! 注册 ThinkAdmin 组件及标签行为 */
|
||||
define('ThinkAdmin', ['require', 'queue', 'validate'], function (require, Queue, Validate) {
|
||||
|
||||
/*! 显示任务进度 */
|
||||
$.loadQueue = function (code, doScript, element) {
|
||||
/*! 显示任务进度 */
|
||||
$.loadQueue = function (code, doScript, element) {
|
||||
require(['queue'], function (Queue) {
|
||||
return new Queue(code, doScript, element);
|
||||
};
|
||||
|
||||
/*! 创建表单验证 */
|
||||
$.vali = function (form, callable) {
|
||||
return $(form).data('validate') || new Validate(form, callable, onConfirm);
|
||||
};
|
||||
|
||||
/*! 自动监听表单 */
|
||||
$.vali.listen = function ($dom) {
|
||||
var $els = $($dom || $body).find('form[data-auto]');
|
||||
$dom && $($dom).filter('form[data-auto]') && $els.add($dom);
|
||||
return $els.map(function (idx, form) {
|
||||
$(this).vali(function (data) {
|
||||
var dset = form.dataset, type = form.method || 'POST', href = form.action || location.href;
|
||||
var tips = dset.tips || undefined, time = dset.time || undefined, taid = dset.tableId || false;
|
||||
var call = window[dset.callable || '_default_callable'] || (taid ? function (ret) {
|
||||
if (typeof ret === 'object' && ret.code > 0 && $('#' + taid).size() > 0) {
|
||||
return $.msg.success(ret.info, 3, function () {
|
||||
$.msg.closeLastModal();
|
||||
(typeof ret.data === 'string' && ret.data) ? $.form.goto(ret.data) : $.layTable.reload(taid);
|
||||
}) && false;
|
||||
}
|
||||
} : undefined);
|
||||
onConfirm(dset.confirm, function () {
|
||||
$.form.load(href, data, type, call, true, tips, time);
|
||||
});
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
/*! 注册对象到JqFn */
|
||||
$.fn.vali = function (callable) {
|
||||
return this.each(function () {
|
||||
$.vali(this, callable);
|
||||
});
|
||||
};
|
||||
|
||||
/*! 注册 data-search 表单搜索行为 */
|
||||
onEvent('submit', 'form.form-search', function () {
|
||||
if (this.dataset.tableId) return $('table#' + this.dataset.tableId).trigger('reload', {
|
||||
page: {curr: 1}, where: $(this).formToJson()
|
||||
});
|
||||
var url = $(this).attr('action').replace(/&?page=\d+/g, '');
|
||||
if ((this.method || 'get').toLowerCase() === 'get') {
|
||||
var split = url.indexOf('?') > -1 ? '&' : '?', stype = location.href.indexOf('spm=') > -1 ? '#' : '';
|
||||
$.form.goto(stype + $.menu.parseUri(url + split + $(this).serialize().replace(/\+/g, ' ')));
|
||||
} else {
|
||||
$.form.load(url, this, 'post');
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/*! 注册 data-file 事件行为 */
|
||||
onEvent('click', '[data-file]', function () {
|
||||
this.id = this.dataset.id = this.id || (function (date) {
|
||||
return (date + Math.random()).replace('0.', '');
|
||||
})(layui.util.toDateString(Date.now(), 'yyyyMMddHHmmss-'));
|
||||
/*! 查找表单元素, 如果没有找到将不会自动写值 */
|
||||
if (!(this.$elem = $(this)).data('input') && this.$elem.data('field')) {
|
||||
var $input = $('input[name="' + this.$elem.data('field') + '"]:not([type=file])');
|
||||
this.$elem.data('input', $input.size() > 0 ? $input.get(0) : null);
|
||||
}
|
||||
// 单图或多图选择器 ( image|images )
|
||||
if (typeof this.dataset.file === 'string' && /^images?$/.test(this.dataset.file)) {
|
||||
return $.form.modal(tapiRoot + '/api.upload/image', this.dataset, '图片选择器')
|
||||
}
|
||||
// 其他文件上传处理
|
||||
this.dataset.inited || $(this).uploadFile(undefined, function () {
|
||||
$(this).trigger('upload.start');
|
||||
});
|
||||
/*! 注册JqFn函数 */
|
||||
$.fn.vali = function (done, init) {
|
||||
return this.each(function () {
|
||||
$.vali(this, done, init);
|
||||
});
|
||||
};
|
||||
|
||||
/*! 注册 data-load 事件行为 */
|
||||
onEvent('click', '[data-load]', function () {
|
||||
applyRuleValue(this, {}, function (data, elem, dset) {
|
||||
$.form.load(dset.load, data, 'get', onConfirm.getLoadCallable(dset.tableId), true, dset.tips, dset.time);
|
||||
});
|
||||
/*! 创建表单验证 */
|
||||
$.vali = function (form, done, init) {
|
||||
require(['validate'], function (Validate) {
|
||||
/** @type {import("./plugs/admin/validate")|Validate} */
|
||||
var vali = $(form).data('validate') || new Validate(form, onConfirm);
|
||||
typeof init === 'function' && init.call(vali, $(form).formToJson());
|
||||
typeof done === 'function' && vali.addDoneEvent(done);
|
||||
});
|
||||
};
|
||||
|
||||
/*! 注册 data-reload 事件行为 */
|
||||
onEvent('click', '[data-reload]', function () {
|
||||
$.layTable.reload(this.dataset.tableId || true);
|
||||
});
|
||||
|
||||
/*! 注册 data-dbclick 事件行为 */
|
||||
onEvent('dblclick', '[data-dbclick]', function () {
|
||||
$(this).find(this.dataset.dbclick || '[data-dbclick]').trigger('click');
|
||||
});
|
||||
|
||||
/*! 注册 data-check 事件行为 */
|
||||
onEvent('click', '[data-check-target]', function () {
|
||||
var target = this;
|
||||
$(this.dataset.checkTarget).map(function () {
|
||||
(this.checked = !!target.checked), $(this).trigger('change');
|
||||
});
|
||||
});
|
||||
|
||||
/*! 表单元素失去焦点时数字 */
|
||||
onEvent('blur', '[data-blur-number]', function () {
|
||||
var dset = this.dataset, min = dset.valueMin, max = dset.valueMax;
|
||||
var value = parseFloat(this.value) || 0, fiexd = parseInt(dset.blurNumber || 0);
|
||||
if (typeof min !== 'undefined' && value < min) value = min;
|
||||
if (typeof max !== 'undefined' && value > max) value = max;
|
||||
this.value = parseFloat(value).toFixed(fiexd);
|
||||
});
|
||||
|
||||
/*! 表单元素失焦时提交 */
|
||||
onEvent('blur', '[data-action-blur],[data-blur-action]', function () {
|
||||
var that = $(this), dset = this.dataset, data = {'_token_': dset.token || dset.csrf || '--'};
|
||||
var attrs = (dset.value || '').replace('{value}', that.val()).split(';');
|
||||
for (var i in attrs) data[attrs[i].split('#')[0]] = attrs[i].split('#')[1];
|
||||
onConfirm(dset.confirm, function () {
|
||||
$.form.load(dset.actionBlur || dset.blurAction, data, dset.method || 'post', function (ret) {
|
||||
return that.css('border', (ret && ret.code) ? '1px solid #e6e6e6' : '1px solid red') && false;
|
||||
}, dset.loading !== 'false', dset.loading, dset.time);
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-href 事件行为 */
|
||||
onEvent('click', '[data-href]', function () {
|
||||
if (this.dataset.href && this.dataset.href.indexOf('#') !== 0) {
|
||||
$.form.goto(this.dataset.href);
|
||||
}
|
||||
});
|
||||
|
||||
/*! 注册 data-open 事件行为 */
|
||||
onEvent('click', '[data-open]', function () {
|
||||
if (this.dataset.open.match(/^https?:/)) {
|
||||
$.form.goto(this.dataset.open);
|
||||
} else {
|
||||
$.form.href(this.dataset.open, this);
|
||||
}
|
||||
});
|
||||
|
||||
/*! 注册 data-action 事件行为 */
|
||||
onEvent('click', '[data-action]', function () {
|
||||
applyRuleValue(this, {}, function (data, elem, dset) {
|
||||
Object.assign(data, {'_token_': dset.token || dset.csrf || '--'})
|
||||
var load = dset.loading !== 'false', tips = typeof load === 'string' ? load : undefined;
|
||||
$.form.load(dset.action, data, dset.method || 'post', onConfirm.getLoadCallable(dset.tableId), load, tips, dset.time)
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-modal 事件行为 */
|
||||
onEvent('click', '[data-modal]', function () {
|
||||
applyRuleValue(this, {open_type: 'modal'}, function (data, elem, dset) {
|
||||
return $.form.modal(dset.modal, data, dset.title || this.innerText || '编辑', undefined, undefined, undefined, dset.area || dset.width || '800px', dset.offset || 'auto', dset.full !== undefined);
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-iframe 事件行为 */
|
||||
onEvent('click', '[data-iframe]', function () {
|
||||
applyRuleValue(this, {open_type: 'iframe'}, function (data, elem, dset) {
|
||||
var name = dset.title || this.innerText || 'IFRAME 窗口';
|
||||
var area = dset.area || [dset.width || '800px', dset.height || '580px'];
|
||||
var frame = dset.iframe + (dset.iframe.indexOf('?') > -1 ? '&' : '?') + $.param(data);
|
||||
$(this).attr('data-index', $.form.iframe(frame + '&' + $.param(data), name, area, dset.offset || 'auto', function () {
|
||||
typeof dset.refresh !== 'undefined' && $.layTable.reload(dset.tableId || true);
|
||||
}, undefined, dset.full !== undefined));
|
||||
})
|
||||
});
|
||||
|
||||
/*! 注册 data-icon 事件行为 */
|
||||
onEvent('click', '[data-icon]', function () {
|
||||
var location = tapiRoot + '/api.plugs/icon', field = this.dataset.icon || this.dataset.field || 'icon';
|
||||
$.form.iframe(location + (location.indexOf('?') > -1 ? '&' : '?') + 'field=' + field, '图标选择', ['900px', '700px']);
|
||||
});
|
||||
|
||||
/*! 注册 data-copy 事件行为 */
|
||||
onEvent('click', '[data-copy]', function () {
|
||||
var copy = this.dataset.copy || this.innerText;
|
||||
if (window.clipboardData) {
|
||||
window.clipboardData.setData('text', copy);
|
||||
$.msg.tips('已复制到剪贴板!');
|
||||
} else {
|
||||
var $input = $('<textarea readonly></textarea>');
|
||||
$input.css({position: 'fixed', top: '-500px'}).appendTo($body).val(copy).select();
|
||||
$.msg.tips(document.execCommand('Copy') ? '已复制到剪贴板!' : '请使用鼠标操作复制!') && $input.remove();
|
||||
}
|
||||
});
|
||||
|
||||
/*! 异步任务状态监听与展示 */
|
||||
onEvent('click', '[data-queue]', function () {
|
||||
applyRuleValue(this, {}, function (data, elem, dset) {
|
||||
$.form.load(dset.queue, data, 'post', function (ret) {
|
||||
if (typeof ret.data === 'string' && ret.data.indexOf('Q') === 0) {
|
||||
return $.loadQueue(ret.data, true, elem), false;
|
||||
/*! 自动监听表单 */
|
||||
$.vali.listen = function ($dom) {
|
||||
var $els = $($dom || $body).find('form[data-auto]');
|
||||
$dom && $($dom).filter('form[data-auto]') && $els.add($dom);
|
||||
return $els.map(function (idx, form) {
|
||||
$(this).vali(function (data) {
|
||||
var dset = form.dataset, type = form.method || 'POST', href = form.action || location.href;
|
||||
var tips = dset.tips || undefined, time = dset.time || undefined, taid = dset.tableId || false;
|
||||
var call = window[dset.callable || '_default_callable'] || (taid ? function (ret) {
|
||||
if (typeof ret === 'object' && ret.code > 0 && $('#' + taid).size() > 0) {
|
||||
return $.msg.success(ret.info, 3, function () {
|
||||
$.msg.closeLastModal();
|
||||
(typeof ret.data === 'string' && ret.data) ? $.form.goto(ret.data) : $.layTable.reload(taid);
|
||||
}) && false;
|
||||
}
|
||||
} : undefined);
|
||||
onConfirm(dset.confirm, function () {
|
||||
$.form.load(href, data, type, call, true, tips, time);
|
||||
});
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
/*! 注册 data-tips-text 事件行为 */
|
||||
onEvent('mouseenter', '[data-tips-text]', function () {
|
||||
var opts = {tips: [$(this).attr('data-tips-type') || 3, '#78BA32'], time: 0};
|
||||
var layidx = layer.tips($(this).attr('data-tips-text') || this.innerText, this, opts);
|
||||
$(this).off('mouseleave').on('mouseleave', function () {
|
||||
setTimeout("layer.close('" + layidx + "')", 100);
|
||||
});
|
||||
/*! 注册 data-search 表单搜索行为 */
|
||||
onEvent('submit', 'form.form-search', function () {
|
||||
if (this.dataset.tableId) return $('table#' + this.dataset.tableId).trigger('reload', {
|
||||
page: {curr: 1}, where: $(this).formToJson()
|
||||
});
|
||||
var url = $(this).attr('action').replace(/&?page=\d+/g, '');
|
||||
if ((this.method || 'get').toLowerCase() === 'get') {
|
||||
var split = url.indexOf('?') > -1 ? '&' : '?', stype = location.href.indexOf('spm=') > -1 ? '#' : '';
|
||||
$.form.goto(stype + $.menu.parseUri(url + split + $(this).serialize().replace(/\+/g, ' ')));
|
||||
} else {
|
||||
$.form.load(url, this, 'post');
|
||||
}
|
||||
});
|
||||
|
||||
/*! 注册 data-tips-hover 事件行为 */
|
||||
onEvent('mouseenter', '[data-tips-image][data-tips-hover]', function () {
|
||||
var img = new Image(), ele = $(this);
|
||||
if ((img.src = this.dataset.tipsImage || this.dataset.lazySrc || this.src)) {
|
||||
img.layopt = {anim: 5, time: 0, skin: 'layui-layer-image', isOutAnim: false, scrollbar: false};
|
||||
img.referrerPolicy = 'no-referrer', img.style.maxWidth = '260px', img.style.maxHeight = '260px';
|
||||
ele.data('layidx', layer.tips(img.outerHTML, this, img.layopt)).off('mouseleave').on('mouseleave', function () {
|
||||
layer.close(ele.data('layidx'));
|
||||
});
|
||||
}
|
||||
/*! 注册 data-file 事件行为 */
|
||||
onEvent('click', '[data-file]', function () {
|
||||
this.id = this.dataset.id = this.id || (function (date) {
|
||||
return (date + Math.random()).replace('0.', '');
|
||||
})(layui.util.toDateString(Date.now(), 'yyyyMMddHHmmss-'));
|
||||
/*! 查找表单元素, 如果没有找到将不会自动写值 */
|
||||
if (!(this.$elem = $(this)).data('input') && this.$elem.data('field')) {
|
||||
var $input = $('input[name="' + this.$elem.data('field') + '"]:not([type=file])');
|
||||
this.$elem.data('input', $input.size() > 0 ? $input.get(0) : null);
|
||||
}
|
||||
// 单图或多图选择器 ( image|images )
|
||||
if (typeof this.dataset.file === 'string' && /^images?$/.test(this.dataset.file)) {
|
||||
return $.form.modal(tapiRoot + '/api.upload/image', this.dataset, '图片选择器')
|
||||
}
|
||||
// 其他文件上传处理
|
||||
this.dataset.inited || $(this).uploadFile(undefined, function () {
|
||||
$(this).trigger('upload.start');
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-tips-image 事件行为 */
|
||||
onEvent('click', '[data-tips-image]', function (event) {
|
||||
(event.items = [], event.$imgs = $(this).parent().find('[data-tips-image]')).map(function () {
|
||||
event.items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src});
|
||||
}) && layer.photos({
|
||||
anim: 5, closeBtn: 1, photos: {start: event.$imgs.index(this), data: event.items}, tab: function (pic, $ele) {
|
||||
$ele.find('img').attr('referrerpolicy', 'no-referrer');
|
||||
$ele.find('.layui-layer-close').css({top: '20px', right: '20px', position: 'fixed'});
|
||||
/*! 注册 data-load 事件行为 */
|
||||
onEvent('click', '[data-load]', function () {
|
||||
applyRuleValue(this, {}, function (data, elem, dset) {
|
||||
$.form.load(dset.load, data, 'get', onConfirm.getLoadCallable(dset.tableId), true, dset.tips, dset.time);
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-reload 事件行为 */
|
||||
onEvent('click', '[data-reload]', function () {
|
||||
$.layTable.reload(this.dataset.tableId || true);
|
||||
});
|
||||
|
||||
/*! 注册 data-dbclick 事件行为 */
|
||||
onEvent('dblclick', '[data-dbclick]', function () {
|
||||
$(this).find(this.dataset.dbclick || '[data-dbclick]').trigger('click');
|
||||
});
|
||||
|
||||
/*! 注册 data-check 事件行为 */
|
||||
onEvent('click', '[data-check-target]', function () {
|
||||
var target = this;
|
||||
$(this.dataset.checkTarget).map(function () {
|
||||
(this.checked = !!target.checked), $(this).trigger('change');
|
||||
});
|
||||
});
|
||||
|
||||
/*! 表单元素失去焦点时数字 */
|
||||
onEvent('blur', '[data-blur-number]', function () {
|
||||
var dset = this.dataset, min = dset.valueMin, max = dset.valueMax;
|
||||
var value = parseFloat(this.value) || 0, fiexd = parseInt(dset.blurNumber || 0);
|
||||
if (typeof min !== 'undefined' && value < min) value = min;
|
||||
if (typeof max !== 'undefined' && value > max) value = max;
|
||||
this.value = parseFloat(value).toFixed(fiexd);
|
||||
});
|
||||
|
||||
/*! 表单元素失焦时提交 */
|
||||
onEvent('blur', '[data-action-blur],[data-blur-action]', function () {
|
||||
var that = $(this), dset = this.dataset, data = {'_token_': dset.token || dset.csrf || '--'};
|
||||
var attrs = (dset.value || '').replace('{value}', that.val()).split(';');
|
||||
for (var i in attrs) data[attrs[i].split('#')[0]] = attrs[i].split('#')[1];
|
||||
onConfirm(dset.confirm, function () {
|
||||
$.form.load(dset.actionBlur || dset.blurAction, data, dset.method || 'post', function (ret) {
|
||||
return that.css('border', (ret && ret.code) ? '1px solid #e6e6e6' : '1px solid red') && false;
|
||||
}, dset.loading !== 'false', dset.loading, dset.time);
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-href 事件行为 */
|
||||
onEvent('click', '[data-href]', function () {
|
||||
if (this.dataset.href && this.dataset.href.indexOf('#') !== 0) {
|
||||
$.form.goto(this.dataset.href);
|
||||
}
|
||||
});
|
||||
|
||||
/*! 注册 data-open 事件行为 */
|
||||
onEvent('click', '[data-open]', function () {
|
||||
layui.sessionData('pages', null);
|
||||
if (this.dataset.open.match(/^https?:/)) {
|
||||
$.form.goto(this.dataset.open);
|
||||
} else {
|
||||
$.form.href(this.dataset.open, this);
|
||||
}
|
||||
});
|
||||
|
||||
/*! 注册 data-action 事件行为 */
|
||||
onEvent('click', '[data-action]', function () {
|
||||
applyRuleValue(this, {}, function (data, elem, dset) {
|
||||
Object.assign(data, {'_token_': dset.token || dset.csrf || '--'})
|
||||
var load = dset.loading !== 'false', tips = typeof load === 'string' ? load : undefined;
|
||||
$.form.load(dset.action, data, dset.method || 'post', onConfirm.getLoadCallable(dset.tableId), load, tips, dset.time)
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-modal 事件行为 */
|
||||
onEvent('click', '[data-modal]', function () {
|
||||
applyRuleValue(this, {open_type: 'modal'}, function (data, elem, dset) {
|
||||
return $.form.modal(dset.modal, data, dset.title || this.innerText || '编辑', undefined, undefined, undefined, dset.area || dset.width || '800px', dset.offset || 'auto', dset.full !== undefined);
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-iframe 事件行为 */
|
||||
onEvent('click', '[data-iframe]', function () {
|
||||
applyRuleValue(this, {open_type: 'iframe'}, function (data, elem, dset) {
|
||||
var name = dset.title || this.innerText || 'IFRAME 窗口';
|
||||
var area = dset.area || [dset.width || '800px', dset.height || '580px'];
|
||||
var frame = dset.iframe + (dset.iframe.indexOf('?') > -1 ? '&' : '?') + $.param(data);
|
||||
$(this).attr('data-index', $.form.iframe(frame + '&' + $.param(data), name, area, dset.offset || 'auto', function () {
|
||||
typeof dset.refresh !== 'undefined' && $.layTable.reload(dset.tableId || true);
|
||||
}, undefined, dset.full !== undefined));
|
||||
})
|
||||
});
|
||||
|
||||
/*! 注册 data-icon 事件行为 */
|
||||
onEvent('click', '[data-icon]', function () {
|
||||
var location = tapiRoot + '/api.plugs/icon', field = this.dataset.icon || this.dataset.field || 'icon';
|
||||
$.form.iframe(location + (location.indexOf('?') > -1 ? '&' : '?') + 'field=' + field, '图标选择', ['900px', '700px']);
|
||||
});
|
||||
|
||||
/*! 注册 data-copy 事件行为 */
|
||||
onEvent('click', '[data-copy]', function () {
|
||||
var copy = this.dataset.copy || this.innerText;
|
||||
if (window.clipboardData) {
|
||||
window.clipboardData.setData('text', copy);
|
||||
$.msg.tips('已复制到剪贴板!');
|
||||
} else {
|
||||
var $input = $('<textarea readonly></textarea>');
|
||||
$input.css({position: 'fixed', top: '-500px'}).appendTo($body).val(copy).select();
|
||||
$.msg.tips(document.execCommand('Copy') ? '已复制到剪贴板!' : '请使用鼠标操作复制!') && $input.remove();
|
||||
}
|
||||
});
|
||||
|
||||
/*! 异步任务状态监听与展示 */
|
||||
onEvent('click', '[data-queue]', function () {
|
||||
applyRuleValue(this, {}, function (data, elem, dset) {
|
||||
$.form.load(dset.queue, data, 'post', function (ret) {
|
||||
if (typeof ret.data === 'string' && ret.data.indexOf('Q') === 0) {
|
||||
return $.loadQueue(ret.data, true, elem), false;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-phone-view 事件行为 */
|
||||
onEvent('click', '[data-phone-view]', function () {
|
||||
$.previewPhonePage(this.dataset.phoneView || this.href);
|
||||
});
|
||||
|
||||
/*! 注册 data-target-submit 事件行为 */
|
||||
onEvent('click', '[data-target-submit]', function () {
|
||||
$(this.dataset.targetSubmit || this).submit();
|
||||
});
|
||||
|
||||
/*! 表单编辑返回操作 */
|
||||
onEvent('click', '[data-history-back]', function () {
|
||||
$.msg.confirm(this.dataset.historyBack || '确定要返回吗?', function () {
|
||||
history.back();
|
||||
})
|
||||
});
|
||||
|
||||
/*! 图片加载异常处理 */
|
||||
document.addEventListener('error', function (event) {
|
||||
if (event.target.nodeName !== 'IMG') return;
|
||||
event.target.src = baseRoot + 'theme/img/404_icon.png';
|
||||
}, true);
|
||||
|
||||
});
|
||||
|
||||
/*! 系统菜单表单页面初始化 */
|
||||
require(['ThinkAdmin'], function () {
|
||||
$.menu.listen() && $.form.reInit($body);
|
||||
/*! 注册 data-tips-text 事件行为 */
|
||||
onEvent('mouseenter', '[data-tips-text]', function () {
|
||||
var opts = {tips: [$(this).attr('data-tips-type') || 3, '#78BA32'], time: 0};
|
||||
var layidx = layer.tips($(this).attr('data-tips-text') || this.innerText, this, opts);
|
||||
$(this).off('mouseleave').on('mouseleave', function () {
|
||||
setTimeout("layer.close('" + layidx + "')", 100);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-tips-hover 事件行为 */
|
||||
onEvent('mouseenter', '[data-tips-image][data-tips-hover]', function () {
|
||||
var img = new Image(), ele = $(this);
|
||||
if ((img.src = this.dataset.tipsImage || this.dataset.lazySrc || this.src)) {
|
||||
img.layopt = {anim: 5, time: 0, skin: 'layui-layer-image', isOutAnim: false, scrollbar: false};
|
||||
img.referrerPolicy = 'no-referrer', img.style.maxWidth = '260px', img.style.maxHeight = '260px';
|
||||
ele.data('layidx', layer.tips(img.outerHTML, this, img.layopt)).off('mouseleave').on('mouseleave', function () {
|
||||
layer.close(ele.data('layidx'));
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
/*! 注册 data-tips-image 事件行为 */
|
||||
onEvent('click', '[data-tips-image]', function (event) {
|
||||
(event.items = [], event.$imgs = $(this).parent().find('[data-tips-image]')).map(function () {
|
||||
event.items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src});
|
||||
}) && layer.photos({
|
||||
anim: 5, closeBtn: 1, photos: {start: event.$imgs.index(this), data: event.items}, tab: function (pic, $ele) {
|
||||
$ele.find('img').attr('referrerpolicy', 'no-referrer');
|
||||
$ele.find('.layui-layer-close').css({top: '20px', right: '20px', position: 'fixed'});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
/*! 注册 data-phone-view 事件行为 */
|
||||
onEvent('click', '[data-phone-view]', function () {
|
||||
$.previewPhonePage(this.dataset.phoneView || this.href);
|
||||
});
|
||||
|
||||
/*! 注册 data-target-submit 事件行为 */
|
||||
onEvent('click', '[data-target-submit]', function () {
|
||||
$(this.dataset.targetSubmit || 'form:last').submit();
|
||||
});
|
||||
|
||||
/*! 表单编辑返回操作 */
|
||||
onEvent('click', '[data-target-backup],[data-history-back]', function () {
|
||||
onConfirm(this.dataset.historyBack || this.dataset.targetBackup || '确定要返回上个页面吗?', function () {
|
||||
history.back();
|
||||
});
|
||||
});
|
||||
|
||||
/*! 图片加载异常处理 */
|
||||
document.addEventListener('error', function (event) {
|
||||
if (event.target.nodeName !== 'IMG') return;
|
||||
event.target.src = baseRoot + 'theme/img/404_icon.png';
|
||||
}, true);
|
||||
|
||||
/*! 初始化系统菜单及表单验证 */
|
||||
$.menu.listen() && $.form.reInit($body);
|
||||
});
|
||||
|
@ -12,7 +12,7 @@
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
require(['ThinkAdmin'], function () {
|
||||
$(function () {
|
||||
|
||||
window.$body = $('body');
|
||||
|
||||
|
@ -17,7 +17,9 @@ define(function () {
|
||||
var doAjax = true, doReload = false;
|
||||
var template = '<div class="padding-30 padding-bottom-0" data-queue-load="{{d.code}}"><div class="layui-elip notselect nowrap" data-message-title><b class="color-desc">...</b></div><div class="margin-top-15 layui-progress layui-progress-big" lay-showPercent="yes"><div class="layui-progress-bar transition" lay-percent="0.00%"></div></div>' + '<div class="margin-top-15"><code class="layui-textarea layui-bg-black border-0" style="resize:none;overflow:hidden;height:190px"></code></div></div>';
|
||||
|
||||
return function (code, doScript, element) {
|
||||
return Queue;
|
||||
|
||||
function Queue(code, doScript, element) {
|
||||
layer.open({
|
||||
type: 1, title: false, area: ['560px', '315px'], anim: 2, shadeClose: false, end: function () {
|
||||
doAjax = doReload && doScript && $.layTable.reload(((element || {}).dataset || {}).tableId || true)
|
||||
|
@ -14,7 +14,9 @@
|
||||
|
||||
define(function () {
|
||||
|
||||
return function (form, callable, onConfirm) {
|
||||
return Validate;
|
||||
|
||||
function Validate(form, onConfirm) {
|
||||
var that = this;
|
||||
// 绑定表单元素
|
||||
this.form = $(form);
|
||||
@ -22,17 +24,23 @@ define(function () {
|
||||
this.evts = 'blur change';
|
||||
// 检测表单元素
|
||||
this.tags = 'input,textarea';
|
||||
// 验证成功回调
|
||||
this.dones = [];
|
||||
// 预设检测规则
|
||||
this.patterns = {
|
||||
qq: '^[1-9][0-9]{4,11}$',
|
||||
ip: '^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$',
|
||||
url: '^((https?|ftp|file):\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$',
|
||||
url: '^https?://([a-zA-Z0-9]+\\.)+[a-zA-Z0-9]+',
|
||||
phone: '^1[3-9][0-9]{9}$',
|
||||
email: '^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$',
|
||||
email: '^([a-zA-Z0-9_\\.\\-])+@(([a-zA-Z0-9\-])+\\.)+([a-zA-Z0-9]{2,4})+$',
|
||||
wechat: '^[a-zA-Z]([-_a-zA-Z0-9]{5,19})+$',
|
||||
cardid: '^[1-9]\\d{5}(18|19|([23]\\d))\\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\\d{3}[0-9Xx]$',
|
||||
cardid: '^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$',
|
||||
userame: '^[a-zA-Z0-9_-]{4,16}$',
|
||||
};
|
||||
// 设置完成回调
|
||||
this.addDoneEvent = function (done) {
|
||||
if (typeof done === 'function') this.dones.push(done);
|
||||
};
|
||||
this.isRegex = function (el, value, pattern) {
|
||||
pattern = pattern || el.getAttribute('pattern');
|
||||
if ((value = value || $.trim($(el).val())) === '') return true;
|
||||
@ -43,7 +51,7 @@ define(function () {
|
||||
var attrProp = el.getAttribute(prop);
|
||||
return typeof attrProp !== 'undefined' && attrProp !== null && attrProp !== false;
|
||||
};
|
||||
this.needCheck = function (el, type) {
|
||||
this.hasCheck = function (el, type) {
|
||||
if (this.hasProp(el, 'data-auto-none')) return false;
|
||||
type = (el.getAttribute('type') || '').replace(/\W+/, '').toLowerCase();
|
||||
return $.inArray(type, ['file', 'reset', 'image', 'radio', 'checkbox', 'submit', 'hidden']) < 0;
|
||||
@ -55,7 +63,7 @@ define(function () {
|
||||
}) && status;
|
||||
};
|
||||
this.checkInput = function (el) {
|
||||
if (!this.needCheck(el)) return true;
|
||||
if (!this.hasCheck(el = typeof el === 'string' ? form[el] : el)) return true;
|
||||
if (this.hasProp(el, 'required') && $.trim($(el).val()) === '') return this.remind(el, 'required');
|
||||
return this.isRegex(el) ? !!this.hideError(el) : this.remind(el, 'pattern');
|
||||
};
|
||||
@ -80,33 +88,32 @@ define(function () {
|
||||
};
|
||||
/*! 预埋异常标签*/
|
||||
this.form.find(this.tags).each(function (i, el) {
|
||||
that.needCheck(this) && setTimeout(function () {
|
||||
that.hasCheck(this) && setTimeout(function () {
|
||||
that.hideError(el, '');
|
||||
}, 500);
|
||||
}, 250);
|
||||
});
|
||||
/*! 表单元素验证 */
|
||||
this.form.attr({onsubmit: 'return false', novalidate: 'novalidate', autocomplete: 'off'}).on('keydown', this.tags, function () {
|
||||
that.hideError(this)
|
||||
}).off(this.evts, this.tags).on(this.evts, this.tags, function () {
|
||||
that.checkInput(this);
|
||||
}).data('validate', this).bind('submit', function (event) {
|
||||
event.preventDefault();
|
||||
}).data('validate', this).bind('submit', function (evt) {
|
||||
evt.preventDefault();
|
||||
/* 检查所有表单元素是否通过H5的规则验证 */
|
||||
if (that.checkAllInput() && typeof callable === 'function') {
|
||||
if (that.checkAllInput() && that.dones.length > 0) {
|
||||
if (typeof CKEDITOR === 'object' && typeof CKEDITOR.instances === 'object') {
|
||||
for (var i in CKEDITOR.instances) CKEDITOR.instances[i].updateElement();
|
||||
}
|
||||
/* 触发表单提交后,锁定三秒不能再次提交表单 */
|
||||
if (that.form.attr('submit-locked')) return false;
|
||||
var submit = that.form.find('button[type=submit],button:not([type=button])');
|
||||
onConfirm(submit.attr('data-confirm'), function () {
|
||||
that.form.attr('submit-locked', 1);
|
||||
submit.addClass('submit-button-loading');
|
||||
callable.call(form, that.form.formToJson(), []);
|
||||
evt.submit = that.form.find('button[type=submit],button:not([type=button])');
|
||||
onConfirm(evt.submit.attr('data-confirm'), function () {
|
||||
that.form.attr('submit-locked', 1) && evt.submit.addClass('submit-button-loading');
|
||||
setTimeout(function () {
|
||||
that.form.removeAttr('submit-locked');
|
||||
submit.removeClass('submit-button-loading');
|
||||
}, 3000);
|
||||
that.form.removeAttr('submit-locked') && evt.submit.removeClass('submit-button-loading');
|
||||
}, 3000) && that.dones.forEach(function (done) {
|
||||
done.call(form, that.form.formToJson(), []);
|
||||
});
|
||||
});
|
||||
}
|
||||
}).find('[data-form-loaded]').map(function () {
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user