You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.2 KiB
61 lines
1.2 KiB
<template>
|
|
<el-card class="box-card">
|
|
<div slot="header" class="header">
|
|
<span>{{title}}</span>
|
|
<span>
|
|
<el-tag size="small" :type="titleTag">{{titleUnit}}</el-tag>
|
|
</span>
|
|
</div>
|
|
<div class="content">
|
|
{{content}}
|
|
<span class="unit">{{contentUnit}}</span>
|
|
</div>
|
|
<div class="bottom">
|
|
<span>{{bottomTitle}}</span>
|
|
<span>
|
|
{{bottomContent}}
|
|
<i :class="bottomIcon"></i>
|
|
</span>
|
|
</div>
|
|
</el-card>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: [
|
|
"title",
|
|
"titleTag",
|
|
"titleUnit",
|
|
"content",
|
|
"contentUnit",
|
|
"bottomTitle",
|
|
"bottomContent",
|
|
"bottomIcon"
|
|
]
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.box-card {
|
|
margin-right: 10px;
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.content {
|
|
font-size: 30px;
|
|
font-weight: bold;
|
|
color: #666;
|
|
text-align: center;
|
|
.unit {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
.bottom {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
</style>
|