2021-09-17 00:18:50 +08:00
|
|
|
<template>
|
|
|
|
<el-row class="row-bg">
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple-light"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
</el-row>
|
|
|
|
<el-row class="row-bg" justify="center">
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple-light"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
</el-row>
|
|
|
|
<el-row class="row-bg" justify="end">
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple-light"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
</el-row>
|
|
|
|
<el-row class="row-bg" justify="space-between">
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple-light"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
</el-row>
|
|
|
|
<el-row class="row-bg" justify="space-around">
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple-light"></div></el-col>
|
|
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
|
|
</el-row>
|
|
|
|
</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;
|
|
|
|
}
|
|
|
|
.bg-purple-dark {
|
|
|
|
background: #99a9bf;
|
|
|
|
}
|
|
|
|
.bg-purple {
|
|
|
|
background: #d3dce6;
|
|
|
|
}
|
|
|
|
.bg-purple-light {
|
|
|
|
background: #e5e9f2;
|
|
|
|
}
|
|
|
|
.grid-content {
|
|
|
|
border-radius: 4px;
|
|
|
|
min-height: 36px;
|
|
|
|
}
|
|
|
|
.row-bg {
|
|
|
|
padding: 10px 0;
|
|
|
|
background-color: #f9fafc;
|
|
|
|
}
|
|
|
|
</style>
|