12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'jiuyezixun/index' + location.search,
- add_url: 'jiuyezixun/add',
- edit_url: 'jiuyezixun/edit',
- del_url: 'jiuyezixun/del',
- multi_url: 'jiuyezixun/multi',
- import_url: 'jiuyezixun/import',
- table: 'jiuyezixun',
- dragsort_url: false,
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'weigh',
- search: false,
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2')}, formatter: Table.api.formatter.normal},
- {field: 'title', title: __('Title'), 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: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {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,
- buttons:[
- {
- name:'yulan',
- text:'预览',
- title:'预览',
- icon:'fa fa-exclamation-circle',
- classname:'btn btn-xs btn-info btn-yulan btn-dialog',
- url:'jiuyezixun/yulan/id/{ids}?dialog=1',
- target:'_self',
- },
- ],
- events: Table.api.events.operate, formatter: Table.api.formatter.operate}
- ]
- ],
- onLoadSuccess:function(){
- // 这里就是数据渲染结束后的回调函数
- $(".btn-yulan").data("area", ['25%','80%']);
- }
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- yulan: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|