1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: async function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'coupon/index' + location.search,
- add_url: 'coupon/add',
- edit_url: 'coupon/edit',
- //del_url: 'coupon/del',
- multi_url: 'coupon/multi',
- import_url: 'coupon/import',
- table: 'coupon',
- }
- });
- var table = $("#table");
- let types = await $.getJSON('coupon/types')
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- //{checkbox: true},
- {field: 'type', title: __('Type'), searchList:types,formatter: Table.api.formatter.normal},
- {field: 'max', title: __('Max'), operate: 'BETWEEN'},
- {field: 'amount', title: __('Amount')+"/折", operate: 'BETWEEN'},
- {
- field: 'start_time',
- title: __('Start_time'),
- operate: 'RANGE',
- addclass: 'datetimerange',
- autocomplete: false
- },
- {
- field: 'end_time',
- title: __('End_time'),
- operate: 'RANGE',
- addclass: 'datetimerange',
- autocomplete: false
- },
- {field: 'num', title: __('Num')},
- {
- 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;
- });
|