You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
831 B
48 lines
831 B
<template>
|
|
<div class="sub_navigation_container">
|
|
<div class="back_icon"></div>
|
|
<p class="title">{{ title }}</p>
|
|
<p class="menu"></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
title: {
|
|
type: String,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.sub_navigation_container {
|
|
height: $sub-header-height;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 18px;
|
|
box-sizing: border-box;
|
|
background: #efefef;
|
|
z-index: 222;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
.back_icon {
|
|
width: 8px;
|
|
height: 15px;
|
|
background: #000;
|
|
}
|
|
.title {
|
|
font-size: 10px;
|
|
font-family: Alibaba PuHuiTi;
|
|
font-weight: 500;
|
|
color: #262626;
|
|
}
|
|
.menu {
|
|
width: 18px;
|
|
height: 12px;
|
|
background: #262626;
|
|
}
|
|
}
|
|
</style>
|