1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'produce_gzdx/index' + location.search,
- add_url: 'produce_gzdx/add',
- edit_url: 'produce_gzdx/edit',
- del_url: 'produce_gzdx/del',
- multi_url: 'produce_gzdx/multi',
- import_url: 'produce_gzdx/import',
- table: 'produce_gzdx',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'upstream_no', title: __('Upstream_no'), operate: 'LIKE'},
- {field: 'agent_account', title: __('Agent_account'), operate: 'LIKE'},
- {field: 'user_name', title: __('User_name'), operate: 'LIKE'},
- {field: 'user_card', title: __('User_card'), operate: 'LIKE'},
- {field: 'package_no', title: __('Package_no'), operate: 'LIKE'},
- {field: 'seller_account', title: __('Seller_account'), operate: 'LIKE'},
- {field: 'order_product_name', title: __('Order_product_name'), operate: 'LIKE'},
- {field: 'delivery_gift_product_name', title: __('Delivery_gift_product_name'), operate: 'LIKE'},
- {field: 'business_type', title: __('Business_type'), operate: 'LIKE'},
- {field: 'delivery_type', title: __('Delivery_type'), operate: 'LIKE'},
- {field: 'month_fee_name', title: __('Month_fee_name'), operate: 'LIKE'},
- {field: 'once_fee_name', title: __('Once_fee_name'), operate: 'LIKE'},
- // {field: 'order_product_column_name_1', title: __('Order_product_column_name_1'), operate: 'LIKE'},
- // {field: 'order_product_column_value_1', title: __('Order_product_column_value_1'), operate: 'LIKE'},
- // {field: 'order_product_column_name_2', title: __('Order_product_column_name_2'), operate: 'LIKE'},
- // {field: 'order_product_column_value_2', title: __('Order_product_column_value_2'), operate: 'LIKE'},
- // {field: 'order_product_column_name_3', title: __('Order_product_column_name_3'), operate: 'LIKE'},
- // {field: 'order_product_column_value_3', title: __('Order_product_column_value_3'), operate: 'LIKE'},
- // {field: 'order_product_column_name_4', title: __('Order_product_column_name_4'), operate: 'LIKE'},
- // {field: 'order_product_column_value_4', title: __('Order_product_column_value_4'), operate: 'LIKE'},
- // {field: 'order_product_column_name_5', title: __('Order_product_column_name_5'), operate: 'LIKE'},
- // {field: 'order_product_column_value_5', title: __('Order_product_column_value_5'), operate: 'LIKE'},
- // {field: 'order_product_column_name_6', title: __('Order_product_column_name_6'), operate: 'LIKE'},
- // {field: 'order_product_column_value_6', title: __('Order_product_column_value_6'), operate: 'LIKE'},
- // {field: 'order_product_column_name_7', title: __('Order_product_column_name_7'), operate: 'LIKE'},
- // {field: 'order_product_column_value_7', title: __('Order_product_column_value_7'), operate: 'LIKE'},
- // {field: 'order_product_column_name_8', title: __('Order_product_column_name_8'), operate: 'LIKE'},
- // {field: 'order_product_column_value_8', title: __('Order_product_column_value_8'), operate: 'LIKE'},
- {field: 'delivery_company', title: __('Delivery_company'), operate: 'LIKE'},
- // {field: 'num_pool', title: __('Num_pool'), 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;
- });
|