produce_gzdx.js 4.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
  2. var Controller = {
  3. index: function () {
  4. // 初始化表格参数配置
  5. Table.api.init({
  6. extend: {
  7. index_url: 'produce_gzdx/index' + location.search,
  8. add_url: 'produce_gzdx/add',
  9. edit_url: 'produce_gzdx/edit',
  10. del_url: 'produce_gzdx/del',
  11. multi_url: 'produce_gzdx/multi',
  12. import_url: 'produce_gzdx/import',
  13. table: 'produce_gzdx',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. sortName: 'id',
  22. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'id', title: __('Id')},
  26. {field: 'upstream_no', title: __('Upstream_no'), operate: 'LIKE'},
  27. {field: 'agent_account', title: __('Agent_account'), operate: 'LIKE'},
  28. {field: 'user_name', title: __('User_name'), operate: 'LIKE'},
  29. {field: 'user_card', title: __('User_card'), operate: 'LIKE'},
  30. {field: 'package_no', title: __('Package_no'), operate: 'LIKE'},
  31. {field: 'seller_account', title: __('Seller_account'), operate: 'LIKE'},
  32. {field: 'order_product_name', title: __('Order_product_name'), operate: 'LIKE'},
  33. {field: 'delivery_gift_product_name', title: __('Delivery_gift_product_name'), operate: 'LIKE'},
  34. {field: 'business_type', title: __('Business_type'), operate: 'LIKE'},
  35. {field: 'delivery_type', title: __('Delivery_type'), operate: 'LIKE'},
  36. {field: 'month_fee_name', title: __('Month_fee_name'), operate: 'LIKE'},
  37. {field: 'once_fee_name', title: __('Once_fee_name'), operate: 'LIKE'},
  38. // {field: 'order_product_column_name_1', title: __('Order_product_column_name_1'), operate: 'LIKE'},
  39. // {field: 'order_product_column_value_1', title: __('Order_product_column_value_1'), operate: 'LIKE'},
  40. // {field: 'order_product_column_name_2', title: __('Order_product_column_name_2'), operate: 'LIKE'},
  41. // {field: 'order_product_column_value_2', title: __('Order_product_column_value_2'), operate: 'LIKE'},
  42. // {field: 'order_product_column_name_3', title: __('Order_product_column_name_3'), operate: 'LIKE'},
  43. // {field: 'order_product_column_value_3', title: __('Order_product_column_value_3'), operate: 'LIKE'},
  44. // {field: 'order_product_column_name_4', title: __('Order_product_column_name_4'), operate: 'LIKE'},
  45. // {field: 'order_product_column_value_4', title: __('Order_product_column_value_4'), operate: 'LIKE'},
  46. // {field: 'order_product_column_name_5', title: __('Order_product_column_name_5'), operate: 'LIKE'},
  47. // {field: 'order_product_column_value_5', title: __('Order_product_column_value_5'), operate: 'LIKE'},
  48. // {field: 'order_product_column_name_6', title: __('Order_product_column_name_6'), operate: 'LIKE'},
  49. // {field: 'order_product_column_value_6', title: __('Order_product_column_value_6'), operate: 'LIKE'},
  50. // {field: 'order_product_column_name_7', title: __('Order_product_column_name_7'), operate: 'LIKE'},
  51. // {field: 'order_product_column_value_7', title: __('Order_product_column_value_7'), operate: 'LIKE'},
  52. // {field: 'order_product_column_name_8', title: __('Order_product_column_name_8'), operate: 'LIKE'},
  53. // {field: 'order_product_column_value_8', title: __('Order_product_column_value_8'), operate: 'LIKE'},
  54. {field: 'delivery_company', title: __('Delivery_company'), operate: 'LIKE'},
  55. // {field: 'num_pool', title: __('Num_pool'), operate: 'LIKE'},
  56. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  57. ]
  58. ]
  59. });
  60. // 为表格绑定事件
  61. Table.api.bindevent(table);
  62. },
  63. add: function () {
  64. Controller.api.bindevent();
  65. },
  66. edit: function () {
  67. Controller.api.bindevent();
  68. },
  69. api: {
  70. bindevent: function () {
  71. Form.api.bindevent($("form[role=form]"));
  72. }
  73. }
  74. };
  75. return Controller;
  76. });