12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'attire/attire/index' + location.search,
- add_url: 'attire/attire/add',
- edit_url: 'attire/attire/edit',
- del_url: 'attire/attire/del',
- multi_url: 'attire/attire/multi',
- import_url: 'attire/attire/import',
- table: 'attire',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'title', title: __('Title'), operate: 'LIKE'},
- {field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3'),"4":__('Type 4')}, formatter: Table.api.formatter.normal},
- {field: 'price', title: __('Price')},
- {field: 'limit_day', title: __('Limit_day')},
- {field: 'file_image', title: __('File_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
- // {field: 'gif_image', title: __('Gif_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
- {field: 'is_show', title: __('Is_show'), searchList: {"1":__('Is_show 1'),"0":__('Is_show 0')}, formatter: Table.api.formatter.normal},
- {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'createtime', title: __('Createtime'), 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);
- // 启动和暂停按钮
- $(document).on("click", ".btn-batchshowup", function () {
- var ids = Table.api.selectedids(table);
- Fast.api.ajax_refresh('attire/attire/batchshowup/ids/'+ ids,'批量上架');
- });
- $(document).on("click", ".btn-batchshowdown", function () {
- var ids = Table.api.selectedids(table);
- Fast.api.ajax_refresh('attire/attire/batchshowdown/ids/'+ ids,'批量下架');
- });
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- batchshowup: function () {
- Form.api.bindevent($("form[role=form]"));
- },
- batchshowdown: function () {
- Form.api.bindevent($("form[role=form]"));
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|