hybrid-layout.vue 981 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <el-row :gutter="20">
  3. <el-col :span="16"><div class="grid-content ep-bg-purple" /></el-col>
  4. <el-col :span="8"><div class="grid-content ep-bg-purple" /></el-col>
  5. </el-row>
  6. <el-row :gutter="20">
  7. <el-col :span="8"><div class="grid-content ep-bg-purple" /></el-col>
  8. <el-col :span="8"><div class="grid-content ep-bg-purple" /></el-col>
  9. <el-col :span="4"><div class="grid-content ep-bg-purple" /></el-col>
  10. <el-col :span="4"><div class="grid-content ep-bg-purple" /></el-col>
  11. </el-row>
  12. <el-row :gutter="20">
  13. <el-col :span="4"><div class="grid-content ep-bg-purple" /></el-col>
  14. <el-col :span="16"><div class="grid-content ep-bg-purple" /></el-col>
  15. <el-col :span="4"><div class="grid-content ep-bg-purple" /></el-col>
  16. </el-row>
  17. </template>
  18. <style>
  19. .el-row {
  20. margin-bottom: 20px;
  21. }
  22. .el-row:last-child {
  23. margin-bottom: 0;
  24. }
  25. .el-col {
  26. border-radius: 4px;
  27. }
  28. .grid-content {
  29. border-radius: 4px;
  30. min-height: 36px;
  31. }
  32. </style>