2022-08-11 18:43:34 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="h-card">
|
|
|
|
|
<div class="title">{{ title }}</div>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<slot></slot>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
|
title: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: ''
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.h-card {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.title {
|
2022-08-24 15:52:18 +08:00
|
|
|
height: 34px;
|
2022-08-24 17:44:17 +08:00
|
|
|
line-height: 28px;
|
2022-08-11 18:43:34 +08:00
|
|
|
text-align: center;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #ffffff;
|
2022-08-24 15:52:18 +08:00
|
|
|
background-image: url('../assets/images/common/bg-card.png');
|
2022-08-24 17:44:17 +08:00
|
|
|
background-size: 100% 100%;
|
2022-08-11 18:43:34 +08:00
|
|
|
}
|
|
|
|
|
.content {
|
2022-09-08 14:42:19 +08:00
|
|
|
height: calc(100% - 42px);
|
2022-08-11 18:43:34 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|