uniapp微信小程序顶部导航栏文字在左侧
时间: 2023-09-20 12:14:40 浏览: 178
可以通过以下步骤将 uniapp 微信小程序顶部导航栏文字调整到左侧:
1. 在 `pages.json` 文件中,添加 `"navigationStyle": "custom"` 属性。
2. 在对应页面的 `vue` 文件中,添加以下代码:
```
<template>
<view>
<view class="custom-navbar">
<view class="custom-navbar-left">
<!-- 左侧内容 -->
</view>
<view class="custom-navbar-title">
<!-- 中间内容 -->
</view>
<view class="custom-navbar-right">
<!-- 右侧内容 -->
</view>
</view>
<!-- 页面内容 -->
</view>
</template>
<style>
.custom-navbar {
display: flex;
justify-content: space-between;
align-items: center;
height: 44px;
background-color: #fff;
border-bottom: 1px solid #ddd;
}
.custom-navbar-left {
margin-left: 10px;
}
.custom-navbar-right {
margin-right: 10px;
}
.custom-navbar-title {
flex: 1;
text-align: center;
font-size: 16px;
font-weight: bold;
}
</style>
```
3. 根据需要修改 `custom-navbar-left`、`custom-navbar-title` 和 `custom-navbar-right` 的内容和样式。
这样就可以实现 uniapp 微信小程序顶部导航栏文字在左侧的效果了。
阅读全文