161 lines
8.3 KiB
JavaScript
161 lines
8.3 KiB
JavaScript
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
|
|
|
|
//设置弹窗宽高
|
|
Fast.config.openArea = ['80%', '80%'];
|
|
|
|
var Controller = {
|
|
index: function () {
|
|
// 初始化表格参数配置
|
|
Table.api.init({
|
|
extend: {
|
|
index_url: 'cms/comment/index',
|
|
add_url: 'cms/comment/add',
|
|
edit_url: 'cms/comment/edit',
|
|
del_url: 'cms/comment/del',
|
|
multi_url: 'cms/comment/multi',
|
|
table: 'cms_comment',
|
|
}
|
|
});
|
|
|
|
var table = $("#table");
|
|
|
|
// 初始化表格
|
|
table.bootstrapTable({
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
pk: 'id',
|
|
sortName: 'id',
|
|
fixedColumns: true,
|
|
fixedRightNumber: 1,
|
|
columns: [
|
|
[
|
|
{checkbox: true},
|
|
{field: 'id', sortable: true, title: __('Id')},
|
|
{field: 'type', title: __('Type'), formatter: Table.api.formatter.flag, custom: {archives: 'success', page: 'info'}, searchList: Config.typeList},
|
|
{field: 'aid', sortable: true, title: __('Aid'), formatter: Table.api.formatter.search},
|
|
{field: 'pid', sortable: true, title: __('Pid'), formatter: Table.api.formatter.search, visible: false},
|
|
{field: 'user_id', sortable: true, title: __('User_id'), formatter: Table.api.formatter.search},
|
|
{field: 'user.nickname', operate: false, title: __('Nickname')},
|
|
{
|
|
field: 'title', title: __('Title'), operate: false, formatter: function (value, row, index) {
|
|
var title = row.spage && row.spage.id ? row.spage.title : (row.archives && row.archives.id ? row.archives.title : __('None'));
|
|
return Table.api.formatter.content.call(this, title, row, index);
|
|
}
|
|
},
|
|
{
|
|
field: 'source.url', title: __('Url'), operate: false, formatter: function (value, row, index) {
|
|
return '<a href="' + value + '" target="_blank" class="btn btn-default btn-xs"><i class="fa fa-link"></i></a>';
|
|
}
|
|
},
|
|
{
|
|
field: 'content', operate: 'like', sortable: false, title: __('Content'), formatter: Table.api.formatter.content
|
|
},
|
|
{field: 'comments', sortable: true, title: __('Comments'), operate: 'BETWEEN', visible: false},
|
|
{field: 'ip', title: __('Ip'), formatter: Table.api.formatter.search},
|
|
{field: 'useragent', title: __('Useragent'), visible: false},
|
|
{field: 'subscribe', sortable: true, title: __('Subscribe'), visible: false, searchList: {"1": __('Yes'), "0": __('No')},},
|
|
{field: 'createtime', sortable: true, title: __('Createtime'), operate: 'RANGE', addclass: 'datetimerange', formatter: Table.api.formatter.datetime},
|
|
{field: 'updatetime', sortable: true, visible: false, title: __('Updatetime'), operate: 'RANGE', addclass: 'datetimerange', formatter: Table.api.formatter.datetime, visible: false},
|
|
{field: 'status', title: __('Status'), searchList: {"normal": __('normal'), "hidden": __('hidden')}, formatter: Table.api.formatter.status},
|
|
{field: 'operate', title: __('Operate'), clickToSelect: false, table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
]
|
|
]
|
|
});
|
|
|
|
// 为表格绑定事件
|
|
Table.api.bindevent(table);
|
|
},
|
|
recyclebin: function () {
|
|
// 初始化表格参数配置
|
|
Table.api.init({
|
|
extend: {
|
|
'dragsort_url': ''
|
|
}
|
|
});
|
|
|
|
var table = $("#table");
|
|
|
|
// 初始化表格
|
|
table.bootstrapTable({
|
|
url: 'cms/comment/recyclebin',
|
|
pk: 'id',
|
|
sortName: 'id',
|
|
columns: [
|
|
[
|
|
{checkbox: true},
|
|
{field: 'id', title: __('Id')},
|
|
{field: 'type', title: __('Type'), formatter: Table.api.formatter.flag, custom: {archives: 'success', page: 'info'}, searchList: Config.typeList},
|
|
{field: 'aid', sortable: true, title: __('Aid'), formatter: Table.api.formatter.search},
|
|
{field: 'pid', sortable: true, title: __('Pid'), formatter: Table.api.formatter.search, visible: false},
|
|
{field: 'user_id', sortable: true, title: __('User_id'), formatter: Table.api.formatter.search},
|
|
{field: 'user.nickname', operate: false, title: __('Nickname')},
|
|
{
|
|
field: 'title', title: __('Title'), operate: false, formatter: function (value, row, index) {
|
|
return row.spage && row.spage.id ? row.spage.title : (row.archives && row.archives.id ? row.archives.title : __('None'));
|
|
}
|
|
},
|
|
{
|
|
field: 'url', title: __('Url'), formatter: function (value, row, index) {
|
|
return '<a href="' + value + '" target="_blank" class="btn btn-default btn-xs"><i class="fa fa-link"></i></a>';
|
|
}
|
|
},
|
|
{
|
|
field: 'content', sortable: false, title: __('Content'), formatter: function (value, row, index) {
|
|
var width = this.width != undefined ? this.width : 250;
|
|
return "<div style='white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-width:" + width + "px;'>" + value + "</div>";
|
|
}
|
|
},
|
|
{
|
|
field: 'deletetime',
|
|
title: __('Deletetime'),
|
|
operate: 'RANGE',
|
|
addclass: 'datetimerange',
|
|
formatter: Table.api.formatter.datetime
|
|
},
|
|
{
|
|
field: 'operate',
|
|
width: '130px',
|
|
title: __('Operate'),
|
|
table: table,
|
|
events: Table.api.events.operate,
|
|
buttons: [
|
|
{
|
|
name: 'Restore',
|
|
text: __('Restore'),
|
|
classname: 'btn btn-xs btn-info btn-ajax btn-restoreit',
|
|
icon: 'fa fa-rotate-left',
|
|
url: 'cms/comment/restore',
|
|
refresh: true
|
|
},
|
|
{
|
|
name: 'Destroy',
|
|
text: __('Destroy'),
|
|
classname: 'btn btn-xs btn-danger btn-ajax btn-destroyit',
|
|
icon: 'fa fa-times',
|
|
url: 'cms/comment/destroy',
|
|
refresh: true
|
|
}
|
|
],
|
|
formatter: Table.api.formatter.operate
|
|
}
|
|
]
|
|
]
|
|
});
|
|
|
|
// 为表格绑定事件
|
|
Table.api.bindevent(table);
|
|
},
|
|
add: function () {
|
|
Controller.api.bindevent();
|
|
},
|
|
edit: function () {
|
|
Controller.api.bindevent();
|
|
},
|
|
api: {
|
|
bindevent: function () {
|
|
Form.api.bindevent($("form[role=form]"));
|
|
}
|
|
}
|
|
};
|
|
return Controller;
|
|
});
|