12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'bag/gift/index' + location.search,
- add_url: 'bag/gift/add',
- edit_url: 'bag/gift/edit',
- del_url: 'bag/gift/del',
- multi_url: 'bag/gift/multi',
- import_url: 'bag/gift/import',
- table: 'new_gift',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'bag_id', title: __('Bag_id')},
- {field: 'newbag.title', title: __('礼包'), operate: 'LIKE'},
- {field: 'gift_name', title: __('Gift_name'), operate: 'LIKE'},
- {field: 'gift_image', title: __('Gift_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
- // {field: 'gift_id', title: __('Gift_id')},
- {field: 'gift_type', title: __('Gift_type'), searchList: {"1":__('Gift_type 1'),"2":__('Gift_type 2'),"3":__('Gift_type 3'),"4":__('Gift_type 4'),"5":__('Gift_type 5')}, formatter: Table.api.formatter.normal},
- {field: 'number', title: __('Number')},
- {field: 'weight', title: __('Weight')},
- {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;
- });
|