多媒体信息发布平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.1 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <template>
  2. <div class="dashboard-container">
  3. <div class="dashboard-editor-container">
  4. <el-row :gutter="24">
  5. <!-- <el-col :xs="24" :sm="24" :lg="8">
  6. <publish-process />
  7. </el-col>
  8. <el-col :xs="24" :sm="24" :lg="8">
  9. <device-data />
  10. </el-col>
  11. <el-col :xs="24" :sm="24" :lg="8">
  12. <agency-data />
  13. </el-col> -->
  14. <publish-process />
  15. <device-data />
  16. <agency-data />
  17. </el-row>
  18. <home-theme-gallery />
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. import PublishProcess from './dashboard/PublishProcess'
  24. import DeviceData from './dashboard/DeviceData'
  25. import AgencyData from './dashboard/AgencyData'
  26. import HomeThemeGallery from './dashboard/HomeThemeGallery'
  27. export default {
  28. name: 'Dashboard',
  29. components: {
  30. PublishProcess,
  31. DeviceData,
  32. AgencyData,
  33. HomeThemeGallery
  34. },
  35. data() {
  36. return {
  37. }
  38. },
  39. methods: {
  40. }
  41. }
  42. </script>
  43. <style rel="stylesheet/scss" lang="scss" scoped>
  44. .dashboard-editor-container {
  45. padding: 24px;
  46. background-color: #f5f5f5;
  47. position: relative;
  48. height: calc(100vh - 64px);
  49. }
  50. </style>