3 changed files with 82 additions and 5 deletions
@ -0,0 +1,72 @@ |
|||
<template> |
|||
<view class="navbar" :style="{ paddingTop: safeAreaInsets?.top + 'px' }"> |
|||
<!-- logo文字 --> |
|||
<view class="logo"> |
|||
<image class="logo-image" src="@/static/images/logo.png"></image> |
|||
<text class="logo-text">新鲜 · 亲民 · 快捷</text> |
|||
</view> |
|||
<!-- 搜索条 --> |
|||
<view class="search"> |
|||
<text class="icon-search">搜索商品</text> |
|||
<text class="icon-scan"></text> |
|||
</view> |
|||
</view> |
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
// 获取屏幕边界到安全区域距离 |
|||
const { safeAreaInsets } = uni.getSystemInfoSync() |
|||
</script> |
|||
|
|||
<style lang="scss"> |
|||
/* 自定义导航条 */ |
|||
.navbar { |
|||
background-image: url(@/static/images/navigator_bg.png); |
|||
background-size: cover; |
|||
position: relative; |
|||
display: flex; |
|||
flex-direction: column; |
|||
padding-top: 20px; |
|||
.logo { |
|||
display: flex; |
|||
align-items: center; |
|||
height: 64rpx; |
|||
padding-left: 30rpx; |
|||
padding-top: 20rpx; |
|||
.logo-image { |
|||
width: 166rpx; |
|||
height: 39rpx; |
|||
} |
|||
.logo-text { |
|||
flex: 1; |
|||
line-height: 28rpx; |
|||
color: #fff; |
|||
margin: 2rpx 0 0 20rpx; |
|||
padding-left: 20rpx; |
|||
border-left: 1rpx solid #fff; |
|||
font-size: 26rpx; |
|||
} |
|||
} |
|||
.search { |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: space-between; |
|||
padding: 0 10rpx 0 26rpx; |
|||
height: 64rpx; |
|||
margin: 16rpx 20rpx; |
|||
color: #fff; |
|||
font-size: 28rpx; |
|||
border-radius: 32rpx; |
|||
background-color: rgba(255, 255, 255, 0.5); |
|||
} |
|||
.icon-search { |
|||
&::before { |
|||
margin-right: 10rpx; |
|||
} |
|||
} |
|||
.icon-scan { |
|||
font-size: 30rpx; |
|||
padding: 15rpx; |
|||
} |
|||
} |
|||
</style> |
|||
@ -1,11 +1,14 @@ |
|||
<script setup lang="ts"> |
|||
// |
|||
</script> |
|||
|
|||
<template> |
|||
<view class="index">index</view> |
|||
<view> |
|||
<!-- 自定义导航栏 --> |
|||
<CustomNavbar /> |
|||
</view> |
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
import CustomNavbar from './components/CustomNavbar.vue' |
|||
</script> |
|||
|
|||
<style lang="scss"> |
|||
// |
|||
</style> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue