2021-09-17 00:18:50 +08:00
|
|
|
<template>
|
|
|
|
<el-row>
|
2022-06-08 15:09:35 +08:00
|
|
|
<el-col :span="24"><div class="grid-content ep-bg-purple-dark" /></el-col>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
<el-row>
|
2022-06-08 15:09:35 +08:00
|
|
|
<el-col :span="12"><div class="grid-content ep-bg-purple" /></el-col>
|
|
|
|
<el-col :span="12"><div class="grid-content ep-bg-purple-light" /></el-col>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
<el-row>
|
2022-06-08 15:09:35 +08:00
|
|
|
<el-col :span="8"><div class="grid-content ep-bg-purple" /></el-col>
|
|
|
|
<el-col :span="8"><div class="grid-content ep-bg-purple-light" /></el-col>
|
|
|
|
<el-col :span="8"><div class="grid-content ep-bg-purple" /></el-col>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
<el-row>
|
2022-06-08 15:09:35 +08:00
|
|
|
<el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content ep-bg-purple-light" /></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content ep-bg-purple" /></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content ep-bg-purple-light" /></el-col>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
<el-row>
|
2022-06-08 15:09:35 +08:00
|
|
|
<el-col :span="4"><div class="grid-content ep-bg-purple" /></el-col>
|
|
|
|
<el-col :span="4"><div class="grid-content ep-bg-purple-light" /></el-col>
|
|
|
|
<el-col :span="4"><div class="grid-content ep-bg-purple" /></el-col>
|
|
|
|
<el-col :span="4"><div class="grid-content ep-bg-purple-light" /></el-col>
|
|
|
|
<el-col :span="4"><div class="grid-content ep-bg-purple" /></el-col>
|
|
|
|
<el-col :span="4"><div class="grid-content ep-bg-purple-light" /></el-col>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
</template>
|
|
|
|
|
2022-04-19 12:38:12 +08:00
|
|
|
<style lang="scss">
|
2021-09-17 00:18:50 +08:00
|
|
|
.el-row {
|
|
|
|
margin-bottom: 20px;
|
2021-12-21 15:51:33 +08:00
|
|
|
}
|
|
|
|
.el-row:last-child {
|
|
|
|
margin-bottom: 0;
|
2021-09-17 00:18:50 +08:00
|
|
|
}
|
|
|
|
.el-col {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2022-04-19 12:38:12 +08:00
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
.grid-content {
|
|
|
|
border-radius: 4px;
|
|
|
|
min-height: 36px;
|
|
|
|
}
|
|
|
|
</style>
|