123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477 |
- define(['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstrap-table', 'bootstrap-table-lang', 'bootstrap-table-mobile', 'bootstrap-table-export', 'bootstrap-table-commonsearch', 'bootstrap-table-template'], function ($, undefined, Moment) {
- var Table = {
- list: {},
- // Bootstrap-table 基础配置
- defaults: {
- url: '',
- sidePagination: 'server',
- method: 'get',
- toolbar: "#toolbar",
- search: true,
- cache: false,
- commonSearch: true,
- searchFormVisible: false,
- titleForm: '', //为空则不显示标题,不定义默认显示:普通搜索
- idTable: 'commonTable',
- showExport: true,
- exportDataType: "all",
- exportTypes: ['json', 'xml', 'csv', 'txt', 'doc', 'excel'],
- pageSize: 10,
- pageList: [10, 25, 50, 'All'],
- pagination: true,
- clickToSelect: true,
- showRefresh: false,
- locale: 'zh-CN',
- showToggle: true,
- showColumns: true,
- pk: 'id',
- sortName: 'id',
- sortOrder: 'desc',
- paginationFirstText: __("First"),
- paginationPreText: __("Previous"),
- paginationNextText: __("Next"),
- paginationLastText: __("Last"),
- mobileResponsive: true,
- cardView: true,
- checkOnInit: true,
- escape: true,
- extend: {
- index_url: '',
- add_url: '',
- edit_url: '',
- del_url: '',
- multi_url: '',
- dragsort_url: 'ajax/weigh',
- }
- },
- // Bootstrap-table 列配置
- columnDefaults: {
- align: 'center',
- valign: 'middle',
- },
- config: {
- firsttd: 'tbody tr td:first-child:not(:has(div.card-views))',
- toolbar: '.toolbar',
- refreshbtn: '.btn-refresh',
- addbtn: '.btn-add',
- editbtn: '.btn-edit',
- delbtn: '.btn-del',
- multibtn: '.btn-multi',
- disabledbtn: '.btn-disabled',
- editonebtn: '.btn-editone',
- dragsortfield: 'weigh',
- },
- api: {
- init: function (defaults, columnDefaults, locales) {
- defaults = defaults ? defaults : {};
- columnDefaults = columnDefaults ? columnDefaults : {};
- locales = locales ? locales : {};
- // 写入bootstrap-table默认配置
- $.extend(true, $.fn.bootstrapTable.defaults, Table.defaults, defaults);
- // 写入bootstrap-table column配置
- $.extend($.fn.bootstrapTable.columnDefaults, Table.columnDefaults, columnDefaults);
- // 写入bootstrap-table locale配置
- $.extend($.fn.bootstrapTable.locales[Table.defaults.locale], {
- formatCommonSearch: function () {
- return __('Common search');
- },
- formatCommonSubmitButton: function () {
- return __('Submit');
- },
- formatCommonResetButton: function () {
- return __('Reset');
- },
- formatCommonCloseButton: function () {
- return __('Close');
- },
- formatCommonChoose: function () {
- return __('Choose');
- }
- }, locales);
- },
- // 绑定事件
- bindevent: function (table) {
- //Bootstrap-table的父元素,包含table,toolbar,pagnation
- var parenttable = table.closest('.bootstrap-table');
- //Bootstrap-table配置
- var options = table.bootstrapTable('getOptions');
- //Bootstrap操作区
- var toolbar = $(options.toolbar, parenttable);
- //当刷新表格时
- table.on('load-error.bs.table', function (status, res) {
- Toastr.error(__('Unknown data format'));
- });
- //当刷新表格时
- table.on('refresh.bs.table', function (e, settings, data) {
- $(Table.config.refreshbtn, toolbar).find(".fa").addClass("fa-spin");
- });
- //当双击单元格时
- table.on('dbl-click-row.bs.table', function (e, row, element, field) {
- $(Table.config.editonebtn, element).trigger("click");
- });
- //当内容渲染完成后
- table.on('post-body.bs.table', function (e, settings, json, xhr) {
- $(Table.config.refreshbtn, toolbar).find(".fa").removeClass("fa-spin");
- $(Table.config.disabledbtn, toolbar).toggleClass('disabled', true);
- if ($(Table.config.firsttd, table).find("input[type='checkbox'][data-index]").size() > 0) {
- // 挺拽选择,需要重新绑定事件
- require(['drag', 'drop'], function () {
- $(Table.config.firsttd, table).drag("start", function (ev, dd) {
- return $('<div class="selection" />').css('opacity', .65).appendTo(document.body);
- }).drag(function (ev, dd) {
- $(dd.proxy).css({
- top: Math.min(ev.pageY, dd.startY),
- left: Math.min(ev.pageX, dd.startX),
- height: Math.abs(ev.pageY - dd.startY),
- width: Math.abs(ev.pageX - dd.startX)
- });
- }).drag("end", function (ev, dd) {
- $(dd.proxy).remove();
- });
- $(Table.config.firsttd, table).drop("start", function () {
- Table.api.toggleattr(this);
- }).drop(function () {
- Table.api.toggleattr(this);
- }).drop("end", function () {
- Table.api.toggleattr(this);
- });
- $.drop({
- multi: true
- });
- });
- }
- });
- // 处理选中筛选框后按钮的状态统一变更
- table.on('check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table fa.event.check', function () {
- var ids = Table.api.selectedids(table);
- $(Table.config.disabledbtn, toolbar).toggleClass('disabled', !ids.length);
- });
- // 刷新按钮事件
- $(toolbar).on('click', Table.config.refreshbtn, function () {
- table.bootstrapTable('refresh');
- });
- // 添加按钮事件
- $(toolbar).on('click', Table.config.addbtn, function () {
- var ids = Table.api.selectedids(table);
- Fast.api.open(options.extend.add_url + (ids.length > 0 ? (options.extend.add_url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + ids.join(",") : ''), __('Add'), $(this).data() || {});
- });
- // 批量编辑按钮事件
- $(toolbar).on('click', Table.config.editbtn, function () {
- var ids = Table.api.selectedids(table);
- //循环弹出多个编辑框
- $.each(ids, function (i, j) {
- Fast.api.open(options.extend.edit_url + (options.extend.edit_url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + j, __('Edit'), $(this).data() || {});
- });
- });
- // 批量操作按钮事件
- $(toolbar).on('click', Table.config.multibtn, function () {
- var ids = Table.api.selectedids(table);
- Table.api.multi($(this).data("action"), ids, table, this);
- });
- // 批量删除按钮事件
- $(toolbar).on('click', Table.config.delbtn, function () {
- var that = this;
- var ids = Table.api.selectedids(table);
- var index = Layer.confirm(
- __('Are you sure you want to delete the %s selected item?', ids.length),
- {icon: 3, title: __('Warning'), offset: 0, shadeClose: true},
- function () {
- Table.api.multi("del", ids, table, that);
- Layer.close(index);
- }
- );
- });
- // 拖拽排序
- require(['dragsort'], function () {
- //绑定拖动排序
- $("tbody", table).dragsort({
- itemSelector: 'tr',
- dragSelector: "a.btn-dragsort",
- dragEnd: function () {
- var data = table.bootstrapTable('getData');
- var current = data[parseInt($(this).data("index"))];
- var options = table.bootstrapTable('getOptions');
- //改变的值和改变的ID集合
- var ids = $.map($("tbody tr:visible", table), function (tr) {
- return data[parseInt($(tr).data("index"))][options.pk];
- });
- var changeid = current[options.pk];
- var pid = typeof current.pid != 'undefined' ? current.pid : '';
- var params = {
- url: table.bootstrapTable('getOptions').extend.dragsort_url,
- data: {
- ids: ids.join(','),
- changeid: changeid,
- pid: pid,
- field: Table.config.dragsortfield,
- orderway: options.sortOrder,
- table: options.extend.table
- }
- };
- Fast.api.ajax(params, function (data) {
- table.bootstrapTable('refresh');
- });
- },
- placeHolderTemplate: ""
- });
- });
- $(table).on("click", "input[data-id][name='checkbox']", function (e) {
- table.trigger('fa.event.check');
- });
- $(table).on("click", "[data-id].btn-change", function (e) {
- e.preventDefault();
- Table.api.multi($(this).data("action") ? $(this).data("action") : '', [$(this).data("id")], table, this);
- });
- $(table).on("click", "[data-id].btn-edit", function (e) {
- e.preventDefault();
- Fast.api.open(options.extend.edit_url + (options.extend.edit_url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + $(this).data("id"), __('Edit'), $(this).data() || {});
- });
- $(table).on("click", "[data-id].btn-del", function (e) {
- e.preventDefault();
- var id = $(this).data("id");
- var that = this;
- var index = Layer.confirm(
- __('Are you sure you want to delete this item?'),
- {icon: 3, title: __('Warning'), shadeClose: true},
- function () {
- Table.api.multi("del", id, table, that);
- Layer.close(index);
- }
- );
- });
- var id = table.attr("id");
- Table.list[id] = table;
- return table;
- },
- // 批量操作请求
- multi: function (action, ids, table, element) {
- var options = table.bootstrapTable('getOptions');
- var data = element ? $(element).data() : {};
- var url = typeof data.url !== "undefined" ? data.url : (action == "del" ? options.extend.del_url : options.extend.multi_url);
- url = url + (url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + ($.isArray(ids) ? ids.join(",") : ids);
- var params = typeof data.params !== "undefined" ? (typeof data.params == 'object' ? $.param(data.params) : data.params) : '';
- var options = {url: url, data: {action: action, ids: ids, params: params}};
- Fast.api.ajax(options, function (data) {
- table.bootstrapTable('refresh');
- });
- },
- // 单元格元素事件
- events: {
- operate: {
- 'click .btn-editone': function (e, value, row, index) {
- e.stopPropagation();
- var options = $(this).closest('table').bootstrapTable('getOptions');
- Fast.api.open(options.extend.edit_url + (options.extend.edit_url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + row[options.pk], __('Edit'), $(this).data() || {});
- },
- 'click .btn-delone': function (e, value, row, index) {
- e.stopPropagation();
- var that = this;
- var top = $(that).offset().top - $(window).scrollTop();
- var left = $(that).offset().left - $(window).scrollLeft() - 260;
- if (top + 154 > $(window).height()) {
- top = top - 154;
- }
- if ($(window).width() < 480) {
- top = left = undefined;
- }
- var index = Layer.confirm(
- __('Are you sure you want to delete this item?'),
- {icon: 3, title: __('Warning'), offset: [top, left], shadeClose: true},
- function () {
- var table = $(that).closest('table');
- var options = table.bootstrapTable('getOptions');
- Table.api.multi("del", row[options.pk], table, that);
- Layer.close(index);
- }
- );
- }
- }
- },
- // 单元格数据格式化
- formatter: {
- icon: function (value, row, index) {
- if (!value)
- return '';
- value = value.indexOf(" ") > -1 ? value : "fa fa-" + value;
- //渲染fontawesome图标
- return '<i class="' + value + '"></i> ' + value;
- },
- image: function (value, row, index) {
- var classname = typeof this.classname !== 'undefined' ? this.classname : 'img-sm img-center';
- return '<img class="' + classname + '" src="' + Fast.api.cdnurl(value) + '" />';
- },
- images: function (value, row, index) {
- var classname = typeof this.classname !== 'undefined' ? this.classname : 'img-sm img-center';
- var arr = value.split(',');
- var html = [];
- $.each(arr, function (i, value) {
- html.push('<img class="' + classname + '" src="' + Fast.api.cdnurl(value) + '" />');
- });
- return html.join(' ');
- },
- status: function (value, row, index) {
- //颜色状态数组,可使用red/yellow/aqua/blue/navy/teal/olive/lime/fuchsia/purple/maroon
- var colorArr = {normal: 'success', hidden: 'grey', deleted: 'danger', locked: 'info'};
- //如果字段列有定义custom
- if (typeof this.custom !== 'undefined') {
- colorArr = $.extend(colorArr, this.custom);
- }
- value = value.toString();
- var color = value && typeof colorArr[value] !== 'undefined' ? colorArr[value] : 'primary';
- value = value.charAt(0).toUpperCase() + value.slice(1);
- //渲染状态
- var html = '<span class="text-' + color + '"><i class="fa fa-circle"></i> ' + __(value) + '</span>';
- return html;
- },
- url: function (value, row, index) {
- return '<div class="input-group input-group-sm" style="width:250px;"><input type="text" class="form-control input-sm" value="' + value + '"><span class="input-group-btn input-group-sm"><a href="' + value + '" target="_blank" class="btn btn-default btn-sm"><i class="fa fa-link"></i></a></span></div>';
- },
- search: function (value, row, index) {
- return '<a href="javascript:;" class="searchit" data-field="' + this.field + '" data-value="' + value + '">' + value + '</a>';
- },
- addtabs: function (value, row, index) {
- var url = Table.api.replaceurl(this.url, value, row, this.table);
- var title = this.title ? this.title : __("Search %s", value);
- return '<a href="' + Fast.api.fixurl(url) + '" class="addtabsit" data-value="' + value + '" title="' + title + '">' + value + '</a>';
- },
- dialog: function (value, row, index) {
- var url = Table.api.replaceurl(this.url, value, row, this.table);
- var title = this.title ? this.title : value;
- return '<a href="' + Fast.api.fixurl(url) + '" class="dialogit" data-value="' + value + '" title="' + title + '">' + value + '</a>';
- },
- flag: function (value, row, index) {
- var colorArr = {index: 'success', hot: 'warning', recommend: 'danger', 'new': 'info'};
- //如果字段列有定义custom
- if (typeof this.custom !== 'undefined') {
- colorArr = $.extend(colorArr, this.custom);
- }
- //渲染Flag
- var html = [];
- var arr = value.split(',');
- $.each(arr, function (i, value) {
- value = value.toString();
- if (value == '')
- return true;
- var color = value && typeof colorArr[value] !== 'undefined' ? colorArr[value] : 'primary';
- value = value.charAt(0).toUpperCase() + value.slice(1);
- html.push('<span class="label label-' + color + '">' + __(value) + '</span>');
- });
- return html.join(' ');
- },
- label: function (value, row, index) {
- var colorArr = ['success', 'warning', 'danger', 'info'];
- //如果字段列有定义custom
- if (typeof this.custom !== 'undefined') {
- colorArr = $.merge(colorArr, this.custom);
- }
- //渲染Flag
- var html = [];
- var arr = value.split(',');
- $.each(arr, function (i, value) {
- value = value.toString();
- var color = colorArr[i % colorArr.length];
- html.push('<span class="label label-' + color + '">' + __(value) + '</span>');
- });
- return html.join(' ');
- },
- datetime: function (value, row, index) {
- return value ? Moment(parseInt(value) * 1000).format("YYYY-MM-DD HH:mm:ss") : __('None');
- },
- operate: function (value, row, index) {
- var table = this.table;
- // 操作配置
- var options = table ? table.bootstrapTable('getOptions') : {};
- // 默认按钮组
- var buttons = $.extend([], this.buttons || []);
- buttons.push({name: 'dragsort', icon: 'fa fa-arrows', classname: 'btn btn-xs btn-primary btn-dragsort'});
- buttons.push({name: 'edit', icon: 'fa fa-pencil', classname: 'btn btn-xs btn-success btn-editone'});
- buttons.push({name: 'del', icon: 'fa fa-trash', classname: 'btn btn-xs btn-danger btn-delone'});
- var html = [];
- var url, classname, icon, text, title, extend;
- $.each(buttons, function (i, j) {
- if (j.name === 'dragsort' && typeof row[Table.config.dragsortfield] === 'undefined') {
- return true;
- }
- if (['add', 'edit', 'del', 'multi', 'dragsort'].indexOf(j.name) > -1 && !options.extend[j.name + "_url"]) {
- return true;
- }
- var attr = table.data("operate-" + j.name);
- if (typeof attr === 'undefined' || attr) {
- url = j.url ? j.url : '';
- if (url.indexOf("{ids}") === -1) {
- url = url ? url + (url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + row[options.pk] : '';
- }
- url = Table.api.replaceurl(url, value, row, table);
- url = url ? Fast.api.fixurl(url) : 'javascript:;';
- classname = j.classname ? j.classname : 'btn-primary btn-' + name + 'one';
- icon = j.icon ? j.icon : '';
- text = j.text ? j.text : '';
- title = j.title ? j.title : text;
- extend = j.extend ? j.extend : '';
- html.push('<a href="' + url + '" class="' + classname + '" ' + extend + ' title="' + title + '"><i class="' + icon + '"></i>' + (text ? ' ' + text : '') + '</a>');
- }
- });
- return html.join(' ');
- },
- buttons: function (value, row, index) {
- var table = this.table;
- // 操作配置
- var options = table ? table.bootstrapTable('getOptions') : {};
- // 默认按钮组
- var buttons = $.extend([], this.buttons || []);
- var html = [];
- var url, classname, icon, text, title, extend;
- $.each(buttons, function (i, j) {
- var attr = table.data("buttons-" + j.name);
- if (typeof attr === 'undefined' || attr) {
- url = j.url ? j.url : '';
- if (url.indexOf("{ids}") === -1) {
- url = url ? url + (url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + row[options.pk] : '';
- }
- url = Table.api.replaceurl(url, value, row, table);
- url = url ? Fast.api.fixurl(url) : 'javascript:;';
- classname = j.classname ? j.classname : 'btn-primary btn-' + name + 'one';
- icon = j.icon ? j.icon : '';
- text = j.text ? j.text : '';
- title = j.title ? j.title : text;
- extend = j.extend ? j.extend : '';
- html.push('<a href="' + url + '" class="' + classname + '" ' + extend + ' title="' + title + '"><i class="' + icon + '"></i>' + (text ? ' ' + text : '') + '</a>');
- }
- });
- return html.join(' ');
- }
- },
- //替换URL中的{ids}和{value}
- replaceurl: function (url, value, row, table) {
- url = url ? url : '';
- url = url.replace(/\{value\}/ig, value);
- if (table) {
- var options = table.bootstrapTable('getOptions');
- url = url.replace(/\{ids\}/ig, row[options.pk]);
- } else {
- url = url.replace(/\{ids\}/ig, 0);
- }
- return url;
- },
- // 获取选中的条目ID集合
- selectedids: function (table) {
- var options = table.bootstrapTable('getOptions');
- if (options.templateView) {
- return $.map($("input[data-id][name='checkbox']:checked"), function (dom) {
- return $(dom).data("id");
- });
- } else {
- return $.map(table.bootstrapTable('getSelections'), function (row) {
- return row[options.pk];
- });
- }
- },
- // 切换复选框状态
- toggleattr: function (table) {
- $("input[type='checkbox']", table).trigger('click');
- }
- },
- };
- return Table;
- });
|