123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'mobile_price_log/index' + location.search,
- add_url: 'mobile_price_log/add',
- edit_url: 'mobile_price_log/edit',
- del_url: 'mobile_price_log/del',
- multi_url: 'mobile_price_log/multi',
- import_url: 'mobile_price_log/import',
- table: 'mobile_price_log',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('ID')},
- {field: 'mobile_id', title: __('Mobile_id')},
- {field: 'no', title: __('No')},
- {field: 'before_price', title: __('Before_price'), operate:'BETWEEN'},
- {field: 'after_price', title: __('After_price'), operate:'BETWEEN'},
- {field: 'create_time', title: __('Create_time'),formatter: Table.api.formatter.datetime},
- {field: 'admin_id', title: __('Admin_id')},
- {field: 'admin.nickname', title: __('Admin.nickname'), operate: 'LIKE'},
- //{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;
- });
|