123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'ask/article/index',
- add_url: 'ask/article/add',
- edit_url: 'ask/article/edit',
- del_url: 'ask/article/del',
- multi_url: 'ask/article/multi',
- table: 'ask_article',
- }
- });
- 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', title: __('Id')},
- {field: 'user_id', title: __('User_id'), formatter: Table.api.formatter.search},
- {field: 'user.nickname', title: __('Nickname'), operate: false},
- {field: 'category_id', title: __('Category_id'), formatter: Table.api.formatter.search},
- {field: 'category.name', title: __('Category_name'), operate: false},
- {field: 'title', title: __('Title')},
- {field: 'keywords', title: __('Keywords'), visible: false},
- {field: 'flag', title: __('Flag'), searchList: {"index": __('Index'), "hot": __('Hot'), "recommend": __('Recommend')}, operate: 'FIND_IN_SET', formatter: Table.api.formatter.label},
- {field: 'image', title: __('Image'), formatter: Table.api.formatter.image},
- {field: 'price', title: __('Price'), operate: 'BETWEEN'},
- {field: 'comments', title: __('Comments')},
- {field: 'sales', title: __('Sales')},
- {field: 'shares', title: __('Shares'), visible: false},
- {field: 'views', title: __('Views'), visible: false},
- {field: 'thanks', title: __('Thanks'), visible: false},
- {field: 'reports', title: __('Reports'), visible: false},
- {field: 'collections', title: __('Collections'), visible: false},
- {field: 'isanonymous', title: __('Isanonymous'), visible: false},
- {
- field: 'url', title: __('Url'), formatter: function (value, row, index) {
- return '<a href="' + row['url'] + '" target="_blank" class="btn btn-xs btn-warning">查看</a>'
- }, operate: false
- },
- {field: 'createtime', title: __('Createtime'), operate: 'RANGE', addclass: 'datetimerange', formatter: Table.api.formatter.datetime},
- {field: 'updatetime', 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'), 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: 'ask/article/recyclebin',
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'title', title: __('Title'), align: 'left'},
- {
- 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: 'ask/article/restore',
- refresh: true
- },
- {
- name: 'Destroy',
- text: __('Destroy'),
- classname: 'btn btn-xs btn-danger btn-ajax btn-destroyit',
- icon: 'fa fa-times',
- url: 'ask/article/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;
- });
|