Rap 原分销系统代码Web
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

111 Zeilen
2.8KB

  1. <template>
  2. <div class="dashboard-container">
  3. <div class="dashboard-editor-container">
  4. <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
  5. <heat-map />
  6. </el-row>
  7. <el-row :gutter="32">
  8. <el-col :xs="24" :sm="24" :lg="8">
  9. <div class="chart-wrapper">
  10. <radar-chart />
  11. </div>
  12. </el-col>
  13. <el-col :xs="24" :sm="24" :lg="8">
  14. <div class="chart-wrapper">
  15. <sunburst />
  16. </div>
  17. </el-col>
  18. <el-col :xs="24" :sm="24" :lg="8">
  19. <div class="chart-wrapper">
  20. <gauge />
  21. </div>
  22. </el-col>
  23. </el-row>
  24. <el-row :gutter="12">
  25. <el-col :span="12">
  26. <div class="chart-wrapper">
  27. <rich />
  28. </div>
  29. </el-col>
  30. <el-col :span="12">
  31. <div class="chart-wrapper">
  32. <theme-river />
  33. </div>
  34. </el-col>
  35. </el-row>
  36. <el-row :gutter="32">
  37. <el-col :xs="24" :sm="24" :lg="12">
  38. <div class="chart-wrapper">
  39. <graph />
  40. </div>
  41. </el-col>
  42. <el-col :xs="24" :sm="24" :lg="12">
  43. <div class="chart-wrapper">
  44. <sankey />
  45. </div>
  46. </el-col>
  47. </el-row>
  48. <el-row :gutter="12">
  49. <el-col :span="12">
  50. <div class="chart-wrapper">
  51. <scatter />
  52. </div>
  53. </el-col>
  54. <el-col :span="12">
  55. <div class="chart-wrapper">
  56. <point />
  57. </div>
  58. </el-col>
  59. </el-row>
  60. <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
  61. <div class="chart-wrapper">
  62. <category />
  63. </div>
  64. </el-row>
  65. </div>
  66. </div>
  67. </template>
  68. <script>
  69. import RadarChart from '@/components/Echarts/RadarChart'
  70. import HeatMap from '@/components/Echarts/HeatMap'
  71. import Gauge from '@/components/Echarts/Gauge'
  72. import Rich from '@/components/Echarts/Rich'
  73. import ThemeRiver from '@/components/Echarts/ThemeRiver'
  74. import Sunburst from '@/components/Echarts/Sunburst'
  75. import Graph from '@/components/Echarts/Graph'
  76. import Sankey from '@/components/Echarts/Sankey'
  77. import Scatter from '@/components/Echarts/Scatter'
  78. import Category from '@/components/Echarts/Category'
  79. import Point from '@/components/Echarts/Point'
  80. export default {
  81. name: 'Echarts',
  82. components: {
  83. Point,
  84. Category,
  85. Graph,
  86. HeatMap,
  87. RadarChart,
  88. Sunburst,
  89. Gauge,
  90. Rich,
  91. ThemeRiver,
  92. Sankey,
  93. Scatter
  94. }
  95. }
  96. </script>
  97. <style rel="stylesheet/scss" lang="scss" scoped>
  98. .dashboard-editor-container {
  99. padding: 18px 22px 22px 22px;
  100. background-color: rgb(240, 242, 245);
  101. .chart-wrapper {
  102. background: #fff;
  103. padding: 16px 16px 0;
  104. margin-bottom: 32px;
  105. }
  106. }
  107. </style>