lg_frontend/components/peak-coal-monitoring/PeakSecondaryTitle.vue

63 lines
1.1 KiB
Vue
Raw Permalink Normal View History

2024-03-05 12:02:32 +00:00
<!--二级标题-->
<template>
<div class="secondary-title">
<div class="_title">{{ title }}</div>
<div class="_right">
<slot></slot>
</div>
</div>
</template>
<script>
export default {
name: "PeakSecondaryTitle",
props: {
longBg: {
type: Boolean,
default: false
},
title: {
type: String,
default: ''
}
}
}
</script>
<style scoped lang="less">
@import "assets/styles/mixin";
.secondary-title {
width: 100%;
height: 41px;
.bg("~/assets/peakCoalMonitoring/common/title-bg.png");
.clear-fix;
._title {
height: 100%;
line-height: 26px;
padding-left: 30px;
float: left;
font-family: AlimamaShuHeiTi-Bold;
font-size: 18px;
color: #D8F0FF;
letter-spacing: 3.04px;
text-shadow: 0 0 25px rgba(0, 145, 255, 0.50);
font-weight: 700;
}
._right {
float: right;
height: 100%;
}
}
/*
.longBg {
width: 100%;
height: 84px;
background: url("assets/peakCoalImages/common/long-seconfary-title-bg.png") no-repeat;
background-size: 100% 100%;
}*/
</style>