|  | @@ -0,0 +1,56 @@
 | 
	
		
			
				|  |  | +define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    var Controller = {
 | 
	
		
			
				|  |  | +        index: function () {
 | 
	
		
			
				|  |  | +            // 初始化表格参数配置
 | 
	
		
			
				|  |  | +            Table.api.init({
 | 
	
		
			
				|  |  | +                extend: {
 | 
	
		
			
				|  |  | +                    index_url: 'chihewanle/index' + location.search,
 | 
	
		
			
				|  |  | +                    add_url: 'chihewanle/add',
 | 
	
		
			
				|  |  | +                    edit_url: 'chihewanle/edit',
 | 
	
		
			
				|  |  | +                    del_url: 'chihewanle/del',
 | 
	
		
			
				|  |  | +                    multi_url: 'chihewanle/multi',
 | 
	
		
			
				|  |  | +                    import_url: 'chihewanle/import',
 | 
	
		
			
				|  |  | +                    table: 'chihewanle',
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +            });
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            var table = $("#table");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            // 初始化表格
 | 
	
		
			
				|  |  | +            table.bootstrapTable({
 | 
	
		
			
				|  |  | +                url: $.fn.bootstrapTable.defaults.extend.index_url,
 | 
	
		
			
				|  |  | +                pk: 'id',
 | 
	
		
			
				|  |  | +                sortName: 'weigh',
 | 
	
		
			
				|  |  | +                columns: [
 | 
	
		
			
				|  |  | +                    [
 | 
	
		
			
				|  |  | +//                        {checkbox: true},
 | 
	
		
			
				|  |  | +                        {field: 'id', title: __('Id')},
 | 
	
		
			
				|  |  | +                        {field: 'title', title: __('Title'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
 | 
	
		
			
				|  |  | +                        {field: 'info', title: __('Info'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
 | 
	
		
			
				|  |  | +                        {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
 | 
	
		
			
				|  |  | +//                        {field: 'content', title: __('Content')},
 | 
	
		
			
				|  |  | +                        {field: 'status', title: __('Status'), searchList: {"1":__('Status 1'),"0":__('Status 0')}, formatter: Table.api.formatter.status},
 | 
	
		
			
				|  |  | +                        {field: 'weigh', title: __('Weigh'), operate: false},
 | 
	
		
			
				|  |  | +                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, 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;
 | 
	
		
			
				|  |  | +});
 |