提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
前言
主要记录在微信小程序开发过程所用到的功能以及遇到的问题及解决方案;
一、获取不同型号手机去除导航栏之外的高度
let menuButtonObject = wx.getMenuButtonBoundingClientRect();
let res = wx.getSystemInfoSync()
let statusHeight = (res.safeArea.top - res.statusBarHeight)*2 + res.statusBarHeight + menuButtonObject.height;
let height = ((res.screenHeight - statusHeight - 24) / res.screenHeight*1) *100;
二、微信小程序自定义tabbar
(https://developers.weixin.qq.com/miniprogram/dev/framework/ability/custom-tabbar.html))
1.app.json中的tabbar字段指定custom字段,同时其余tabBar相关配置也补充完整
代码如下(示例):
{
"tabBar": {
"custom": true,
"color": "#000000",
"selectedColor": "#000000",
"backgroundColor": "#000000",
"list": [{
"pagePath": "page/component/index",
"text": "组件"
}, {
"pagePath": "page/API/index",
"text": "接口"
}]
},
"usingComponents": {}
}
2.添加tabBar代码文件(要跟app.json在同一目录下)
custom-tab-bar/index.js:
let list = [
{
pagePath: "/pages/homePage/wallet/wallet/index",
text: "钱包",
iconPath: "/public/image/qianbao-weixuan.png",
selectedIconPath: "/public/image/qianbao-xuanzhong.png"
},
{
pagePath: "/pages/roomLeader/index",
text: "管理",
iconPath: "/public/image/guanli-icon-weixuanzhong.png",
selectedIconPath: "/public/image/guanli-icon.png"
},
{
pagePath: "/pages/homePage/user/home/index",
text: "我的",
iconPath: "/public/image/wode-weixuan.png",
selectedIconPath: "/public/image/wode-xuanzhong.png"
}
]
Component({
data: {
borderStyle: "white",
selected: 0,
color: "#999",
selectedColor: "#14dec9",
list: list,
isShow:true
},
attached() {
},
methods: {
switchTab(e) {
const data = e.currentTarget.dataset
const url = data.path
console.log(data)
this.setData({
selected: data.index
})
wx.switchTab({url})
}
}
})
custom-tab-bar/index.wxss:
.tab-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 48px;
background: white;
display: flex;
padding-bottom: env(safe-area-inset-bottom);
}
.tab-bar-border {
background-color: rgba(0, 0, 0, 0.33);
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 1px;
transform: scaleY(0.5);
}
.tab-bar-item {
flex: 1;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.tab-bar-item cover-image {
width: 27px;
height: 27px;
}
.tab-bar-item cover-view {
font-size: 10px;
}
custom-tab-bar/index.wxml:
<cover-view class="tab-bar" >
<cover-view class="tab-bar-border"></cover-view>
<cover-view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
<cover-image src="{{selected === index ? item.selectedIconPath : item.iconPath}}"></cover-image>
<cover-view style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</cover-view>
</cover-view>
</cover-view>
custom-tab-bar/index.json:
{
"component": true
}