lilishop-uniapp/pages/tabbar/home/template/tpl_title.vue

48 lines
871 B
Vue
Raw Normal View History

2021-05-13 11:03:32 +08:00
<template>
2021-05-24 15:49:22 +08:00
<div class="layout">
<div class="background">
<div class="title" :style="{ color: res.list[0].color }">
{{ res.list[0].title }}
</div>
</div>
</div>
2021-05-13 11:03:32 +08:00
</template>
<script>
2021-05-24 15:49:22 +08:00
export default {
title: "标题栏",
props: ["res"],
mounted() {},
};
2021-05-13 11:03:32 +08:00
</script>
<style lang="scss" scoped>
2021-05-24 15:49:22 +08:00
@import "./tpl.scss";
.background {
background: url("/static/title.png") no-repeat;
position: absolute;
z-index: 2;
width: 100%;
height: 84rpx;
background-position-x: center;
background-position-y: center;
background-size: cover;
}
2021-05-13 11:03:32 +08:00
2021-05-24 15:49:22 +08:00
.layout {
text-align: center;
position: relative;
height: 84rpx;
display: flex;
align-items: center;
justify-content: center;
2021-05-13 11:03:32 +08:00
2021-05-24 15:49:22 +08:00
background: #ffffff;
}
2021-05-13 11:03:32 +08:00
2021-05-24 15:49:22 +08:00
.title {
line-height: 84rpx;
font-size: 30rpx;
font-weight: bold;
}
2021-05-13 11:03:32 +08:00
</style>