<template>
|
<div class="leftMnu">
|
<div class="menuBox">
|
<div class="aside-title">{{ title.t1 }}</div>
|
</div>
|
<div class="menuBox">
|
<div class="aside-title">{{ title.t2 }}</div>
|
</div>
|
<div class="menuBox">
|
<div class="aside-title">{{ title.t3 }}</div>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
export default {
|
data() {
|
return {
|
title: {
|
t1: 'xxx',
|
t2: 'XXXX',
|
t3: 'xxxxx'
|
}
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.leftMnu {
|
height: 100%;
|
width: 100%;
|
display: flex;
|
flex-direction: column;
|
justify-content: space-between;
|
|
.menuBox {
|
width: 100%;
|
height: 33%;
|
background: url(~@/assets/images/Screen/chartbg.png);
|
background-size: 100% 100%;
|
background-repeat: no-repeat;
|
|
.aside-title {
|
box-sizing: border-box;
|
padding-left: 30px;
|
|
font-size: 15px;
|
font-family: YouSheBiaoTiHei, YouSheBiaoTiHei-Regular;
|
color: #fff;
|
width: 100%;
|
height: 45px;
|
line-height: 45px;
|
// background: url(~@/assets/images/Screen/asideTitleBg.png);
|
background-size: 100% 100%;
|
background-repeat: no-repeat;
|
}
|
}
|
}
|
</style>
|