customer.js 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. define(['jquery', 'bootstrap', 'backend', 'addtabs', 'table', 'echarts', 'echarts-theme', 'template'], function ($, undefined, Backend, Datatable, Table, Echarts, undefined, Template) {
  2. var Controller = {
  3. index: function () {
  4. Table.api.init({
  5. extend: {
  6. index_url: 'customer/index' + location.search,
  7. table: 'customer',
  8. }
  9. });
  10. var table = $("#table");
  11. // 初始化表格
  12. table.bootstrapTable({
  13. url: $.fn.bootstrapTable.defaults.extend.index_url,
  14. commonSearch: false,
  15. visible: false,
  16. showToggle: false,
  17. showColumns: false,
  18. search:false,
  19. showExport: false,
  20. columns: [
  21. [
  22. {field: 'username', title: __('用户名'), operate:false},
  23. // {field: 'nickname', title: __('昵称'), operate:false},
  24. {field: 'total', title: __('成交金额'), operate:false},
  25. ]
  26. ]
  27. });
  28. // 为表格绑定事件
  29. Table.api.bindevent(table);
  30. // 基于准备好的dom,初始化echarts实例
  31. var myChart = Echarts.init(document.getElementById('echart'), 'walden');
  32. // 指定图表的配置项和数据
  33. var option = {
  34. title: {
  35. text: '各支付方式订单数',
  36. left: 'center'
  37. },
  38. xAxis: {
  39. type: 'category',
  40. data: Config.type_column
  41. },
  42. yAxis: {
  43. type: 'value'
  44. },
  45. tooltip: {
  46. trigger: 'item'
  47. },
  48. series: [
  49. {
  50. data: Config.type_data,
  51. type: 'bar',
  52. showBackground: true,
  53. itemStyle: {
  54. normal: {
  55. color: function(params) {
  56. // build a color map as your need.
  57. var colorList = [
  58. '#C1232B','#B5C334','#FCCE10','#E87C25','#27727B',
  59. '#FE8463','#9BCA63','#FAD860','#F3A43B','#60C0DD',
  60. '#D7504B','#C6E579','#F4E001','#F0805A','#26C0C0'
  61. ];
  62. return colorList[params.dataIndex]
  63. }
  64. }
  65. },
  66. }
  67. ]
  68. };
  69. // 使用刚指定的配置项和数据显示图表。
  70. myChart.setOption(option);
  71. }
  72. };
  73. return Controller;
  74. });