提交 c1a58a54 编写于 作者: Q qiang

fix: 修正 nvue 页面 tabBar 默认高度

上级 d741531a
...@@ -7,7 +7,7 @@ import { ...@@ -7,7 +7,7 @@ import {
requireNativePlugin requireNativePlugin
} from '../bridge' } from '../bridge'
const TABBAR_HEIGHT = 56 const TABBAR_HEIGHT = 50
let config let config
...@@ -91,6 +91,7 @@ function showTabBar (animation) { ...@@ -91,6 +91,7 @@ function showTabBar (animation) {
} }
export default { export default {
id: '0',
init (options, clickCallback) { init (options, clickCallback) {
if (options && options.list.length) { if (options && options.list.length) {
config = options config = options
...@@ -101,7 +102,7 @@ export default { ...@@ -101,7 +102,7 @@ export default {
console.log(`uni.requireNativePlugin("uni-tabview") error ${error}`) console.log(`uni.requireNativePlugin("uni-tabview") error ${error}`)
} }
tabBar && tabBar.onClick(({ index }) => { tabBar && tabBar.onClick(({ index }) => {
clickCallback(config.list[index], index, true) clickCallback(config.list[index], index)
}) })
tabBar && tabBar.onMidButtonClick(() => { tabBar && tabBar.onMidButtonClick(() => {
publish('onTabBarMidButtonTap', {}) publish('onTabBarMidButtonTap', {})
...@@ -146,5 +147,13 @@ export default { ...@@ -146,5 +147,13 @@ export default {
}, },
get height () { get height () {
return config && config.height ? parseFloat(config.height) : TABBAR_HEIGHT return config && config.height ? parseFloat(config.height) : TABBAR_HEIGHT
},
setStyle ({ mask }) {
tabBar.setMask({
color: mask
})
},
addEventListener (name, callback) {
tabBar.onMaskClick(callback)
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册