118 lines
3.6 KiB
JavaScript
118 lines
3.6 KiB
JavaScript
window.waitDom("input[name='begin\[1\]']", function()
|
|
{
|
|
const $beginPicker = $("input[name='begin\[1\]']").zui('picker');
|
|
$beginPicker.$.setValue(beginTime);
|
|
})
|
|
|
|
const timeIndex = times.findIndex(key => `${key}` === `${time}`);
|
|
|
|
window.changeType = function(e)
|
|
{
|
|
const type = e.target.value;
|
|
const $tr = $(e.target).closest('tr');
|
|
const $nameBox = $tr.find('[data-name="name"]');
|
|
let index = $tr.data('index')
|
|
|
|
let param = 'userID=' + userID + '&id=' + (+index + 1);
|
|
if(type == 'task') param += '&status=wait,doing';
|
|
|
|
index ++;
|
|
if(moduleList.indexOf(type) !== -1)
|
|
{
|
|
link = $.createLink(type, objectsMethod[type], param);
|
|
$.get(link, function(data)
|
|
{
|
|
data = JSON.parse(data);
|
|
data.name = `name[${index}]`;
|
|
$nameBox.html("<div class='picker-box' id='name'></div>");
|
|
$nameBox.find('#name').picker(data);
|
|
})
|
|
}
|
|
else
|
|
{
|
|
$nameBox.html($('#nameInputBox').html());
|
|
$nameBox.find('input[name=name]').attr('name', `name[${index}]`).attr('id', `name_${index}`)
|
|
}
|
|
}
|
|
|
|
window.changeFuture = function()
|
|
{
|
|
const isChecked = $('#futureDate[type="checkbox"]').prop('checked');
|
|
const $todoDate = $('#todoDate').zui('datePicker');
|
|
if(isChecked) $todoDate.$.setValue('');
|
|
|
|
$('.panel-body form [name=futureDate]').val(isChecked ? 1 : 0);
|
|
}
|
|
|
|
window.changeTodoDate = function()
|
|
{
|
|
const todoDate = $('#todoDate [name=date]').val();
|
|
if(todoDate) $('#futureDate[type="checkbox"]').prop('checked', false);
|
|
$('.panel-body form [name=date]').val(todoDate);
|
|
}
|
|
|
|
window.initTime = function(e)
|
|
{
|
|
let $this = $(e.target);
|
|
let $tr = $this.closest('tr');
|
|
let $picker = $this.zui('picker');
|
|
if(typeof $picker == 'undefined')
|
|
{
|
|
$this = $tr.find('.picker-box[data-name=begin]')
|
|
$picker = $this.zui('picker');
|
|
}
|
|
|
|
let value = $picker.$.value;
|
|
let $end = $tr.find('[data-name=end]');
|
|
const options = $picker.options;
|
|
const items = options.items;
|
|
const isBegin = options.name.indexOf('begin') === 0;
|
|
const index = parseInt($tr.data('index'));
|
|
|
|
if(isBegin)
|
|
{
|
|
let endValue = '';
|
|
items.forEach(function(item, timeIndex)
|
|
{
|
|
if(item.value == value)
|
|
{
|
|
endIndex = timeIndex + 3;
|
|
endValue = items.length <= endIndex ? items[items.length - 1].value : items[endIndex].value;
|
|
return;
|
|
}
|
|
});
|
|
$end.zui('picker').$.setValue(endValue);
|
|
if(typeof endIndex != 'undefined') value = endIndex;
|
|
}
|
|
|
|
$('#batchCreateTodoForm tbody tr').each(function()
|
|
{
|
|
const trIndex = parseInt($(this).data('index'));
|
|
if(trIndex > index)
|
|
{
|
|
let endValue = '';
|
|
items.forEach(function(item, timeIndex)
|
|
{
|
|
if(item.value == value)
|
|
{
|
|
endIndex = timeIndex + 3;
|
|
endValue = items.length <= endIndex ? value : items[endIndex].value;
|
|
return;
|
|
}
|
|
});
|
|
if(value == '2350') value='6000';
|
|
$(this).find('[data-name="beginAndEnd"] [data-name="begin"]').zui('picker').$.setValue(value);
|
|
$(this).find('[data-name="beginAndEnd"] [data-name="end"]').zui('picker').$.setValue(endValue);
|
|
if(typeof endIndex != 'undefined') value = endIndex;
|
|
}
|
|
});
|
|
}
|
|
|
|
window.togglePending = function(e)
|
|
{
|
|
$(e.target).closest('.input-group').find('.time-input').each(function()
|
|
{
|
|
$(this).zui('picker').render({disabled: e.target.checked});
|
|
});
|
|
}
|