<template>
|
|
<div class="content-title">
|
|
<div class="line"></div>
|
|
<div class="subtitle"> {{$t($attrs.label)}}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content-title {
|
|
width: 100%;
|
|
background: #f9f9ff;
|
|
font-size: 0.96rem;
|
|
font-weight: bold;
|
|
padding-left: 10px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
text-align: left;
|
|
margin-top: 20px;
|
|
page-break-inside: avoid;
|
|
.line {
|
|
width: 2px;
|
|
float: left;
|
|
height: 16px;
|
|
margin-top: 12px;
|
|
margin-right: 8px;
|
|
border-left: #3178ff 3px solid;
|
|
}
|
|
|
|
.subtitle {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
color: #464647 !important;
|
|
}
|
|
|
|
}
|
|
</style>
|