12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
-
- Table.api.init({
- extend: {
- index_url: 'coach/index' + location.search,
- add_url: 'coach/add',
- edit_url: 'coach/edit',
- del_url: 'coach/del',
- multi_url: 'coach/multi',
- import_url: 'coach/import',
- table: 'coach',
- }
- });
- 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: 'nickname', title: __('Nickname'), operate: 'LIKE'},
- {field: 'firstname', title: __('Firstname'), operate: 'LIKE'},
- {field: 'lastname', title: __('Lastname'), operate: 'LIKE'},
- {field: 'email', title: __('Email'), operate: 'LIKE'},
- {field: 'avatar', title: __('Avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
- {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
- {field: 'whatsapp', title: __('Whatsapp'), operate: 'LIKE'},
- {field: 'bgcolor', title: __('Bgcolor'), formatter: Table.api.formatter.colortext},
- {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();
- },
- vue_add: function () {
- Form.api.bindevent($("form[role=form]"), function(data, ret){
- window.location.href = ret.url;
- })
- },
- vue_edit: function () {
- Form.api.bindevent($("form[role=form]"), function(data, ret){
- window.location.href = ret.url;
- })
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|