2021-09-17 00:18:50 +08:00
|
|
|
<template>
|
|
|
|
<el-row class="row-bg">
|
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>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
<el-row class="row-bg" justify="center">
|
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>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
<el-row class="row-bg" justify="end">
|
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>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
<el-row class="row-bg" justify="space-between">
|
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>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
<el-row class="row-bg" justify="space-around">
|
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>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
2022-02-23 10:46:06 +08:00
|
|
|
<el-row class="row-bg" justify="space-evenly">
|
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>
|
2022-02-23 10:46:06 +08:00
|
|
|
</el-row>
|
2021-09-17 00:18:50 +08:00
|
|
|
</template>
|
|
|
|
|
2021-12-21 15:51:33 +08:00
|
|
|
<style>
|
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>
|