data_view.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. define(['jquery', 'bootstrap', 'backend', 'addtabs', 'table', 'echarts', 'echarts-theme', 'form'],
  2. function ($, undefined, Backend, Datatable, Table, Echarts, undefined, form) {
  3. var Controller= {
  4. mobile_data: function () {
  5. $('input[name="date_type"]').change(function (){
  6. })
  7. Controller.api.bindevent()
  8. },
  9. order_data: function () {
  10. $('button[type="submit"]').click(function (){
  11. layer.load(1,{
  12. shade:.3
  13. })
  14. })
  15. Controller.api.bindevent()
  16. },
  17. api: {
  18. bindevent: function () {
  19. form.events.daterangepicker('form')
  20. }
  21. },
  22. proxy_data: function () {
  23. // 初始化表格参数配置
  24. Table.api.init({
  25. extend: {
  26. index_url: 'data_view/proxy_data',
  27. }
  28. });
  29. var table = $("#table");
  30. // 初始化表格
  31. table.bootstrapTable({
  32. url: $.fn.bootstrapTable.defaults.extend.index_url,
  33. columns: [
  34. [
  35. {field: 'id', title: 'ID'},
  36. {field: 'id', title: '供应商ID'},
  37. {field: 'nickname', title: __('供应商名称')},
  38. {field: 'mobile_count', title: __('号码数量')},
  39. {field: 'mobile_saled_count', title: __('号码消耗量')},
  40. ]
  41. ],
  42. search:false,
  43. showToggle: false,
  44. showExport: true,
  45. commonSearch: false,
  46. });
  47. // 为表格绑定事件
  48. Table.api.bindevent(table);
  49. },
  50. sub_data: function () {
  51. // 初始化表格参数配置
  52. Table.api.init({
  53. extend: {
  54. index_url: 'data_view/sub_data',
  55. }
  56. });
  57. var table = $("#table");
  58. // 初始化表格
  59. table.bootstrapTable({
  60. url: $.fn.bootstrapTable.defaults.extend.index_url,
  61. columns: [
  62. [
  63. {field: 'id', title: 'ID'},
  64. {field: 'nickname', title: __('代理商名称')},
  65. {field: 'order_count', title: __('订单数量')},
  66. {field: 'sell_amount', title: __('销售金额')},
  67. {field: 'profit_amount', title: __('销售利润')},
  68. ]
  69. ],
  70. search:false,
  71. showToggle: false,
  72. showExport: false,
  73. commonSearch: false,
  74. });
  75. // 为表格绑定事件
  76. Table.api.bindevent(table);
  77. },
  78. };
  79. return Controller
  80. });