Update admin.js

This commit is contained in:
Anyon 2020-10-22 10:23:52 +08:00
parent e7c469fddf
commit bdd9c242cc

View File

@ -674,7 +674,7 @@ $(function () {
var data = {}, that = this, $this = $(this), action = this.dataset.actionBlur; var data = {}, that = this, $this = $(this), action = this.dataset.actionBlur;
var time = this.dataset.time, loading = this.dataset.loading || false, load = loading !== 'false'; var time = this.dataset.time, loading = this.dataset.loading || false, load = loading !== 'false';
var tips = typeof loading === 'string' ? loading : undefined, method = this.dataset.method || 'post'; var tips = typeof loading === 'string' ? loading : undefined, method = this.dataset.method || 'post';
var attrs = this.dataset.value.replace('{value}', $this.val()).split(';'); var attrs = (this.dataset.value || '').replace('{value}', $this.val()).split(';');
for (var i in attrs) { for (var i in attrs) {
if (attrs[i].length < 2) return $.msg.tips('异常的数据操作规则,请修改规则!'); if (attrs[i].length < 2) return $.msg.tips('异常的数据操作规则,请修改规则!');
data[attrs[i].split('#')[0]] = attrs[i].split('#')[1]; data[attrs[i].split('#')[0]] = attrs[i].split('#')[1];
@ -689,26 +689,26 @@ $(function () {
}); });
/*! 表单元素失去焦点时数字 */ /*! 表单元素失去焦点时数字 */
$body.on('blur', '[data-blur-number]', function (fiexd) { $body.on('blur', '[data-blur-number]', function () {
fiexd = this.dataset.blurNumber || 0; var fiexd = parseInt(this.dataset.blurNumber || 0);
this.value = (parseFloat(this.value) || 0).toFixed(fiexd); this.value = (parseFloat(this.value) || 0).toFixed(fiexd);
}); });
/*! 注册 data-href 事件行为 */ /*! 注册 data-href 事件行为 */
$body.on('click', '[data-href]', function (href) { $body.on('click', '[data-href]', function () {
href = this.dataset.href; var href = this.dataset.href;
if (href && href.indexOf('#') !== 0) location.href = href; if (href && href.indexOf('#') !== 0) location.href = href;
}); });
/*! 注册 data-iframe 事件行为 */ /*! 注册 data-iframe 事件行为 */
$body.on('click', '[data-iframe]', function () { $body.on('click', '[data-iframe]', function () {
$(this).attr('data-index', $.form.iframe(this.dataset.iframe, this.dataset.title || '窗口', this.dataset.area || undefined)); var width = this.dataset.width || '800px', height = this.dataset.height || '580px';
$(this).attr('data-index', $.form.iframe(this.dataset.iframe, this.dataset.title || '窗口', this.dataset.area || [width, height]));
}); });
/*! 注册 data-icon 事件行为 */ /*! 注册 data-icon 事件行为 */
$body.on('click', '[data-icon]', function (field, location) { $body.on('click', '[data-icon]', function () {
location = tapiRoot + '/api.plugs/icon'; var location = tapiRoot + '/api.plugs/icon', field = this.dataset.icon || this.dataset.field || 'icon';
field = this.dataset.icon || this.dataset.field || 'icon';
$.form.iframe(location + (location.indexOf('?') > -1 ? '&' : '?') + 'field=' + field, '图标选择'); $.form.iframe(location + (location.indexOf('?') > -1 ? '&' : '?') + 'field=' + field, '图标选择');
}); });