define(['jquery', 'bootstrap', 'backend', 'form', 'table'], function ($, undefined, Backend, Form, Table) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'general/attachment/index', add_url: 'general/attachment/add', edit_url: 'general/attachment/edit', del_url: 'general/attachment/del', multi_url: 'general/attachment/multi', table: 'attachment' } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, sortName: 'id', columns: [ [ {field: 'state', checkbox: true}, {field: 'id', title: __('Id')}, {field: 'category', title: __('Category'), operate: 'in', formatter: Table.api.formatter.label, searchList: Config.categoryList}, {field: 'admin_id', title: __('Admin_id'), visible: false, addClass: "selectpage", extend: "data-source='auth/admin/index' data-field='nickname'"}, {field: 'user_id', title: __('User_id'), visible: false, addClass: "selectpage", extend: "data-source='user/user/index' data-field='nickname'"}, {field: 'preview', title: __('Preview'), formatter: Controller.api.formatter.thumb, operate: false}, {field: 'url', title: __('Url'), formatter: Controller.api.formatter.url, visible: false}, {field: 'filename', title: __('Filename'), sortable: true, formatter: Controller.api.formatter.filename, operate: 'like'}, { field: 'filesize', title: __('Filesize'), operate: 'BETWEEN', sortable: true, formatter: function (value, row, index) { var size = parseFloat(value); var i = Math.floor(Math.log(size) / Math.log(1024)); return (size / Math.pow(1024, i)).toFixed(i < 2 ? 0 : 2) * 1 + ' ' + ['B', 'KB', 'MB', 'GB', 'TB'][i]; } }, {field: 'imagewidth', title: __('Imagewidth'), sortable: true}, {field: 'imageheight', title: __('Imageheight'), sortable: true}, {field: 'imagetype', title: __('Imagetype'), sortable: true, formatter: Table.api.formatter.search, operate: 'like'}, {field: 'storage', title: __('Storage'), formatter: Table.api.formatter.search, operate: 'like'}, {field: 'mimetype', title: __('Mimetype'), formatter: Controller.api.formatter.mimetype}, { field: 'createtime', title: __('Createtime'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true, width: 150 }, { field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate } ] ], }); // 绑定过滤事件 $('.filter-type ul li a', table.closest(".panel-intro")).on('click', function (e) { $(this).closest("ul").find("li").removeClass("active"); $(this).closest("li").addClass("active"); var field = 'mimetype'; var value = $(this).data("value") || ''; var object = $("[name='" + field + "']", table.closest(".bootstrap-table").find(".commonsearch-table")); if (object.prop('tagName') == "SELECT") { $("option[value='" + value + "']", object).prop("selected", true); } else { object.val(value); } table.trigger("uncheckbox"); table.bootstrapTable('refresh', {pageNumber: 1}); }); // 为表格绑定事件 Table.api.bindevent(table); // 附件归类 $(document).on('click', '.btn-classify', function () { var ids = Table.api.selectedids(table); Layer.open({ title: __('Classify'), content: Template("typetpl", {}), btn: [__('OK')], yes: function (index, layero) { var category = $("select[name='category']", layero).val(); Fast.api.ajax({ url: "general/attachment/classify", type: "post", data: {category: category, ids: ids.join(',')}, }, function () { table.bootstrapTable('refresh', {}); Layer.close(index); }); }, success: function (layero, index) { }