358 lines
18 KiB
JavaScript
Executable File
358 lines
18 KiB
JavaScript
Executable File
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
|
|
|
|
var Controller = {
|
|
index: function () {
|
|
Table.api.init({
|
|
extend: {
|
|
index_url: 'split.number/index' + location.search,
|
|
add_url: 'split.number/add',
|
|
edit_url: 'split.number/edit',
|
|
del_url: 'split.number/del',
|
|
multi_url: 'split.number/multi',
|
|
table: 'split_number',
|
|
}
|
|
});
|
|
|
|
var table = $("#table");
|
|
var searchSelect = Controller.api.searchSelectColumn;
|
|
var searchSelectMeta = Controller.api.searchSelectMeta;
|
|
|
|
table.bootstrapTable({
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
pk: 'id',
|
|
sortName: 'id',
|
|
sortOrder: 'desc',
|
|
fixedColumns: true,
|
|
fixedRightNumber: 1,
|
|
searchFormVisible: true,
|
|
columns: [
|
|
[
|
|
{checkbox: true},
|
|
searchSelect('split_link_id', __('Link_url'), Config.splitLinkFilterList || {}, true),
|
|
{field: 'id', title: __('Id'), sortable: true},
|
|
{
|
|
field: 'link_url_text',
|
|
title: __('Link_url'),
|
|
operate: false,
|
|
formatter: Table.api.formatter.content
|
|
},
|
|
{field: 'ticket_name', title: __('Ticket_name'), operate: 'LIKE'},
|
|
{field: 'number', title: __('Number'), operate: 'LIKE'},
|
|
$.extend(
|
|
{field: 'number_type', title: __('Number_type'), searchList: Config.numberTypeList, formatter: Table.api.formatter.normal},
|
|
searchSelectMeta(false)
|
|
),
|
|
{field: 'visit_count', title: __('Visit_count'), operate: false, sortable: true},
|
|
{field: 'inbound_count', title: __('Inbound_count'), operate: false, sortable: true},
|
|
$.extend(
|
|
{field: 'platform_status', title: __('Platform_status'), searchList: Config.platformStatusList, formatter: Controller.api.formatter.platformStatus},
|
|
searchSelectMeta(false)
|
|
),
|
|
$.extend(
|
|
{field: 'status', title: __('Status'), searchList: Config.statusList, formatter: Table.api.formatter.toggle, yes: 'normal', no: 'hidden'},
|
|
searchSelectMeta(false)
|
|
),
|
|
{
|
|
field: 'createtime',
|
|
title: __('Createtime'),
|
|
operate: 'RANGE',
|
|
addclass: 'datetimerange',
|
|
autocomplete: false,
|
|
formatter: Table.api.formatter.datetime,
|
|
sortable: true
|
|
},
|
|
{
|
|
field: 'operate',
|
|
title: __('Operate'),
|
|
table: table,
|
|
events: Table.api.events.operate,
|
|
formatter: Table.api.formatter.operate
|
|
}
|
|
]
|
|
]
|
|
});
|
|
|
|
table.on('check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table', function () {
|
|
var ids = Table.api.selectedids(table);
|
|
$('.btn-batch-update-status').toggleClass('btn-disabled disabled', ids.length === 0);
|
|
});
|
|
|
|
$('.btn-batch-update-status').on('click', function (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
if ($(this).hasClass('disabled')) {
|
|
return false;
|
|
}
|
|
var ids = Table.api.selectedids(table);
|
|
if (!ids.length) {
|
|
Toastr.warning(__('Please select at least one item'));
|
|
return false;
|
|
}
|
|
Controller.api.openBatchUpdateModal(ids, table);
|
|
});
|
|
|
|
$('.btn-batch-operate').on('click', function (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
Controller.api.openBatchOperateModal(table);
|
|
});
|
|
|
|
table.on('post-common-search.bs.table', function (e, tbl) {
|
|
Controller.api.initCommonSearchSelectpicker(tbl);
|
|
});
|
|
|
|
Table.api.bindevent(table);
|
|
},
|
|
add: function () {
|
|
Controller.api.bindevent();
|
|
},
|
|
edit: function () {
|
|
Controller.api.bindevent();
|
|
},
|
|
api: {
|
|
searchSelectColumn: function (field, title, searchList, liveSearch) {
|
|
return {
|
|
field: field,
|
|
title: title,
|
|
visible: false,
|
|
searchList: searchList || {},
|
|
operate: '=',
|
|
addclass: 'selectpicker',
|
|
extend: Controller.api.searchSelectExtend(liveSearch !== false)
|
|
};
|
|
},
|
|
searchSelectMeta: function (liveSearch) {
|
|
return {
|
|
addclass: 'selectpicker',
|
|
extend: Controller.api.searchSelectExtend(liveSearch !== false)
|
|
};
|
|
},
|
|
searchSelectExtend: function (liveSearch) {
|
|
var text = __('Please select');
|
|
if (!text || text === 'Please select' || text === 'Please Select') {
|
|
text = '请选择';
|
|
}
|
|
var ext = 'data-none-selected-text="' + text + '" title="' + text + '"';
|
|
if (liveSearch) {
|
|
ext += ' data-live-search="true"';
|
|
}
|
|
return ext;
|
|
},
|
|
initCommonSearchSelectpicker: function (tbl) {
|
|
var $form = $('form.form-commonsearch', tbl.$container);
|
|
if ($form.length) {
|
|
Form.events.selectpicker($form);
|
|
}
|
|
},
|
|
|
|
formatter: {
|
|
platformStatus: function (value, row) {
|
|
var text = row.platform_status_text != null && row.platform_status_text !== ''
|
|
? String(row.platform_status_text)
|
|
: (Config.platformStatusList && Config.platformStatusList[value] ? Config.platformStatusList[value] : value);
|
|
var cls = value === 'online' ? 'success' : (value === 'offline' ? 'default' : 'warning');
|
|
return '<span class="text-' + cls + '">' + Fast.api.escape(text || '') + '</span>';
|
|
}
|
|
},
|
|
bindevent: function () {
|
|
Form.api.bindevent($('form[role=form]'));
|
|
Controller.api.fixSelectPlaceholder();
|
|
Controller.api.bindNumberTypeToggle();
|
|
},
|
|
fixSelectPlaceholder: function () {
|
|
var text = __('Please select');
|
|
if (!text || text === 'Please select' || text === 'Please Select') {
|
|
text = '请选择';
|
|
}
|
|
$('#c-split_link_id').each(function () {
|
|
var $el = $(this);
|
|
$el.attr({'data-none-selected-text': text, 'title': text});
|
|
$el.find('option[value=""]').first().text(text);
|
|
if ($el.data('selectpicker')) {
|
|
$el.selectpicker('render');
|
|
}
|
|
});
|
|
},
|
|
bindNumberTypeToggle: function () {
|
|
var $type = $('#c-number_type');
|
|
var $wrap = $('.split-number-type-custom');
|
|
var $custom = $('#c-number_type_custom');
|
|
if (!$type.length) {
|
|
return;
|
|
}
|
|
var toggle = function () {
|
|
var val = $type.val();
|
|
if (val === 'custom') {
|
|
$wrap.removeClass('hide');
|
|
$custom.attr('data-rule', 'required');
|
|
} else {
|
|
$wrap.addClass('hide');
|
|
$custom.removeAttr('data-rule');
|
|
if (!$wrap.closest('form').attr('id') || $('#edit-form').length === 0) {
|
|
$custom.val('');
|
|
}
|
|
}
|
|
};
|
|
$type.on('changed.bs.select change', toggle);
|
|
toggle();
|
|
},
|
|
openBatchUpdateModal: function (ids, table) {
|
|
var statusHtml = '';
|
|
$.each(Config.statusList || {}, function (key, label) {
|
|
var checked = key === 'normal' ? ' checked' : '';
|
|
statusHtml += '<label class="radio-inline"><input type="radio" name="batch_status" value="' + key + '"' + checked + '> ' + label + '</label>';
|
|
});
|
|
var manualHtml = '';
|
|
$.each(Config.manualManageList || {}, function (key, label) {
|
|
var checked = key === '0' ? ' checked' : '';
|
|
manualHtml += '<label class="radio-inline"><input type="radio" name="batch_manual_manage" value="' + key + '"' + checked + '> ' + label + '</label>';
|
|
});
|
|
var html = [
|
|
'<div class="split-batch-update-modal" style="padding:18px 22px;">',
|
|
' <div class="form-group">',
|
|
' <label class="control-label">' + __('Batch selected count') + '</label>',
|
|
' <p class="form-control-static" style="font-size:18px;font-weight:600;margin:0;">' + ids.length + ' ' + __('Unit count') + '</p>',
|
|
' </div>',
|
|
' <div class="form-group">',
|
|
' <label class="control-label">' + __('Status') + '</label>',
|
|
' <div>' + statusHtml + '</div>',
|
|
' </div>',
|
|
' <div class="form-group" style="margin-bottom:0;">',
|
|
' <label class="control-label">' + __('Manual_manage') + '</label>',
|
|
' <div>' + manualHtml + '</div>',
|
|
' </div>',
|
|
'</div>'
|
|
].join('');
|
|
|
|
Layer.open({
|
|
type: 1,
|
|
title: __('Batch update title'),
|
|
area: ['420px', 'auto'],
|
|
shadeClose: false,
|
|
content: html,
|
|
btn: [__('OK'), __('Cancel')],
|
|
yes: function (index, layero) {
|
|
var status = layero.find('input[name="batch_status"]:checked').val();
|
|
var manualManage = layero.find('input[name="batch_manual_manage"]:checked').val();
|
|
if (typeof status === 'undefined' || typeof manualManage === 'undefined') {
|
|
Toastr.error(__('Invalid parameters'));
|
|
return false;
|
|
}
|
|
Fast.api.ajax({
|
|
url: 'split.number/batchupdate',
|
|
type: 'post',
|
|
data: {
|
|
ids: ids.join(','),
|
|
status: status,
|
|
manual_manage: manualManage
|
|
}
|
|
}, function () {
|
|
Layer.close(index);
|
|
table.bootstrapTable('refresh');
|
|
$('.btn-batch-update-status').addClass('btn-disabled disabled');
|
|
Toastr.success(__('Batch update success'));
|
|
});
|
|
return false;
|
|
}
|
|
});
|
|
},
|
|
openBatchOperateModal: function (table) {
|
|
var pleaseSelect = __('Please select');
|
|
if (!pleaseSelect || pleaseSelect === 'Please select' || pleaseSelect === 'Please Select') {
|
|
pleaseSelect = '请选择';
|
|
}
|
|
var linkOptions = ['<option value="">' + Fast.api.escape(pleaseSelect) + '</option>'];
|
|
$.each(Config.splitLinkSelectList || {}, function (id, label) {
|
|
linkOptions.push('<option value="' + Fast.api.escape(String(id)) + '">' + Fast.api.escape(String(label)) + '</option>');
|
|
});
|
|
var html = [
|
|
'<div class="split-batch-operate-modal" style="padding:18px 22px;">',
|
|
' <div class="form-group">',
|
|
' <label class="control-label">' + __('Link_url') + '<span class="text-danger">*</span></label>',
|
|
' <select id="batch-operate-split-link" class="form-control selectpicker" data-live-search="true" data-none-selected-text="' + pleaseSelect + '" title="' + pleaseSelect + '">',
|
|
linkOptions.join(''),
|
|
' </select>',
|
|
' </div>',
|
|
' <div class="form-group">',
|
|
' <label class="control-label">' + __('Number') + '<span class="text-danger">*</span></label>',
|
|
' <textarea id="batch-operate-numbers" class="form-control" rows="8" placeholder="' + Fast.api.escape(__('Numbers one per line')) + '"></textarea>',
|
|
' </div>',
|
|
' <div class="form-group">',
|
|
' <label class="control-label">' + __('Batch operate action') + '<span class="text-danger">*</span></label>',
|
|
' <select id="batch-operate-action" class="form-control selectpicker" data-none-selected-text="' + pleaseSelect + '" title="' + pleaseSelect + '">',
|
|
' <option value="enable">' + Fast.api.escape(__('Batch operate enable')) + '</option>',
|
|
' <option value="disable">' + Fast.api.escape(__('Batch operate disable')) + '</option>',
|
|
' <option value="delete">' + Fast.api.escape(__('Batch operate delete')) + '</option>',
|
|
' </select>',
|
|
' </div>',
|
|
' <div class="form-group" style="margin-bottom:0;text-align:right;">',
|
|
' <button type="button" class="btn btn-primary btn-batch-operate-confirm">' + __('OK') + '</button> ',
|
|
' <button type="button" class="btn btn-default btn-batch-operate-cancel">' + __('Cancel') + '</button>',
|
|
' </div>',
|
|
'</div>'
|
|
].join('');
|
|
|
|
var layerIndex = Layer.open({
|
|
type: 1,
|
|
title: __('Batch operate title'),
|
|
area: ['520px', 'auto'],
|
|
shadeClose: false,
|
|
content: html,
|
|
success: function (layero, index) {
|
|
Form.events.selectpicker(layero);
|
|
layero.find('.btn-batch-operate-cancel').on('click', function () {
|
|
Layer.close(index);
|
|
});
|
|
layero.find('.btn-batch-operate-confirm').on('click', function () {
|
|
var splitLinkId = $.trim(layero.find('#batch-operate-split-link').val());
|
|
var numbers = $.trim(layero.find('#batch-operate-numbers').val());
|
|
var action = $.trim(layero.find('#batch-operate-action').val());
|
|
|
|
if (!splitLinkId) {
|
|
Toastr.warning(__('Please select split link'));
|
|
return false;
|
|
}
|
|
if (!numbers) {
|
|
Toastr.warning(__('Please fill at least one number'));
|
|
return false;
|
|
}
|
|
if (!action) {
|
|
Toastr.error(__('Invalid batch operate action'));
|
|
return false;
|
|
}
|
|
|
|
var submit = function () {
|
|
Fast.api.ajax({
|
|
url: 'split.number/batchoperate',
|
|
type: 'post',
|
|
data: {
|
|
split_link_id: splitLinkId,
|
|
numbers: numbers,
|
|
action: action
|
|
}
|
|
}, function (data, ret) {
|
|
Layer.close(index);
|
|
table.bootstrapTable('refresh');
|
|
Toastr.success(ret.msg || __('Batch operate success'));
|
|
});
|
|
};
|
|
|
|
if (action === 'delete') {
|
|
Layer.confirm(__('Batch operate delete confirm'), {icon: 3, title: __('Warning')}, function (confirmIndex) {
|
|
Layer.close(confirmIndex);
|
|
submit();
|
|
});
|
|
return false;
|
|
}
|
|
|
|
submit();
|
|
return false;
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
return Controller;
|
|
});
|