12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'platform_article/index' + location.search,
- add_url: 'platform_article/add',
- edit_url: 'platform_article/edit',
- del_url: 'platform_article/del',
- multi_url: 'platform_article/multi',
- import_url: 'platform_article/import',
- table: 'platform_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: 'type_id', title: __('Type_id')},
- {field: 'platform_article_type.title', title: __('Type_title')},
- {field: 'title', title: __('Title'), operate: 'LIKE'},
- {field: 'desc', title: __('Desc'), operate: 'LIKE'},
- {field: 'images', title: __('Images'), operate: false, events: Table.api.events.images, formatter: Table.api.formatter.images},
- {field: 'video', title: __('Video'), operate: false, formatter: function(val, row) {
- if(val) {
- return '<video width="120" height="90" controls>'+'<source src="'+val+'" type="video/ogg">'+'</video>';
- } else {
- return '暂无';
- }
- }},
- {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
- {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: '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;
- });
|