| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- 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});
- });
- }
|