feat:更新card-item样式
This commit is contained in:
@@ -194,9 +194,9 @@ $transition-time: 0.28s;
|
||||
|
||||
.card-item {
|
||||
background-color: #FFFFFF;
|
||||
border: 1px solid #FFFFFF;
|
||||
border: 1px solid #CFCFCF;
|
||||
border-radius: 10px;
|
||||
box-shadow: 1px 1px 2px #CFCFCF;
|
||||
// box-shadow: 1px 1px 2px #CFCFCF;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,13 +1,18 @@
|
||||
<template>
|
||||
<div class="admin-module blog-dashboard">
|
||||
<div class="blog-overview">
|
||||
<el-statistic class="card-item" title="博客总数" :value="blogDashboard.overview.blogCount" />
|
||||
<el-statistic class="card-item" title="博客总数" suffix="篇"
|
||||
:value="blogDashboard.overview.blogCount"
|
||||
/>
|
||||
|
||||
<el-statistic class="card-item" title="类别总数" :value="blogDashboard.overview.categoryCount" />
|
||||
<el-statistic class="card-item" title="类别总数" suffix="个"
|
||||
:value="blogDashboard.overview.categoryCount"/>
|
||||
|
||||
<el-statistic class="card-item" title="字数统计" :value="blogDashboard.overview.wordCount" />
|
||||
<el-statistic class="card-item" title="字数总计" suffix="字"
|
||||
:value="blogDashboard.overview.wordCount" />
|
||||
|
||||
<el-statistic class="card-item" title="访问统计" :value="blogDashboard.overview.visitCount" />
|
||||
<el-statistic class="card-item" title="访问总计" suffix="人"
|
||||
:value="blogDashboard.overview.visitCount" />
|
||||
</div>
|
||||
|
||||
<div class="blog-chart">
|
||||
|
||||
Reference in New Issue
Block a user