|
@@ -13,7 +13,7 @@ export default (props) => {
|
13
|
13
|
// 整体顶部导航
|
14
|
14
|
const navStyle = useMemo(() => {
|
15
|
15
|
return {
|
16
|
|
- height: `${menuBound.bottom}px`,
|
|
16
|
+ height: `${menuBound.bottom + 8}px`,
|
17
|
17
|
backgroundImage: bgImg ? `url(${bgImg})` : 'none',
|
18
|
18
|
}
|
19
|
19
|
}, [menuBound.bottom, bgImg])
|
|
@@ -70,9 +70,9 @@ export default (props) => {
|
70
|
70
|
}
|
71
|
71
|
{
|
72
|
72
|
!home && (
|
73
|
|
- <view>
|
|
73
|
+ <view className='custom-nav-bar-action-btns'>
|
74
|
74
|
<view className='custom-nav-bar-action-part' onClick={handleAction}>
|
75
|
|
- {/* <image src={bgImg ? gobackWhite : gobackBlack} className='custom-nav-bar-action-goback' mode='aspectFit' /> */}
|
|
75
|
+ <image src={bgImg ? gobackWhite : gobackBlack} className='custom-nav-bar-action-goback' mode='aspectFit' />
|
76
|
76
|
</view>
|
77
|
77
|
<view className='custom-nav-bar-action-part'>
|
78
|
78
|
</view>
|