fix(nav-bar): fix style error with no left-text (#3263)

fix #3250
This commit is contained in:
rex 2020-06-09 17:59:15 +08:00 committed by GitHub
parent 4f4e6af9a6
commit 67dfb120c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 38 additions and 31 deletions

View File

@ -1,7 +1,6 @@
<demo-block title="基础用法"> <demo-block title="基础用法">
<van-nav-bar <van-nav-bar
title="标题" title="标题"
left-text="返回"
right-text="按钮" right-text="按钮"
left-arrow left-arrow
bind:click-left="onClickLeft" bind:click-left="onClickLeft"
@ -11,6 +10,6 @@
<demo-block title="高级用法"> <demo-block title="高级用法">
<van-nav-bar title="标题" left-text="返回" left-arrow> <van-nav-bar title="标题" left-text="返回" left-arrow>
<van-icon name="search" slot="right" custom-class="icon" /> <van-icon name="search" slot="right" custom-class="icon" size="18" />
</van-nav-bar> </van-nav-bar>
</demo-block> </demo-block>

View File

@ -23,7 +23,7 @@
"disablePlugins": [], "disablePlugins": [],
"outputPath": "" "outputPath": ""
}, },
"useCompilerModule": false, "useCompilerModule": true,
"userConfirmedUseCompilerModuleSwitch": false "userConfirmedUseCompilerModuleSwitch": false
}, },
"compileType": "miniprogram", "compileType": "miniprogram",

View File

@ -9,6 +9,10 @@
.theme(line-height, '@nav-bar-height'); .theme(line-height, '@nav-bar-height');
.theme(background-color, '@nav-bar-background-color'); .theme(background-color, '@nav-bar-background-color');
&__content {
position: relative;
}
&__text { &__text {
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
@ -50,6 +54,7 @@
&__left, &__left,
&__right { &__right {
position: absolute; position: absolute;
top: 0;
bottom: 0; bottom: 0;
display: flex; display: flex;
align-items: center; align-items: center;

View File

@ -1,4 +1,5 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { getSystemInfoSync } from '../common/utils';
VantComponent({ VantComponent({
classes: ['title-class'], classes: ['title-class'],
@ -38,14 +39,14 @@ VantComponent({
}, },
created() { created() {
const { statusBarHeight } = wx.getSystemInfoSync(); const { statusBarHeight } = getSystemInfoSync();
const { safeAreaInsetTop, zIndex } = this.data; const { safeAreaInsetTop, zIndex } = this.data;
const paddingTop = safeAreaInsetTop ? statusBarHeight : 0; const paddingTop = safeAreaInsetTop ? statusBarHeight : 0;
const baseStyle = `z-index: ${zIndex};padding-top: ${paddingTop}px;`; const baseStyle = `z-index: ${zIndex};padding-top: ${paddingTop}px;`;
this.setData({ this.setData({
statusBarHeight, statusBarHeight,
height: 44 + statusBarHeight, height: 44 + statusBarHeight,
baseStyle baseStyle,
}); });
}, },

View File

@ -4,36 +4,38 @@
<view <view
class="{{ utils.bem('nav-bar', { fixed }) }} custom-class {{ border ? 'van-hairline--bottom' : '' }}" class="{{ utils.bem('nav-bar', { fixed }) }} custom-class {{ border ? 'van-hairline--bottom' : '' }}"
style="{{ baseStyle }} {{ customStyle }}" style="{{ baseStyle }}"
> >
<view class="van-nav-bar__left" bind:tap="onClickLeft"> <view class="van-nav-bar__content" style="{{ customStyle }}">
<block wx:if="{{ leftArrow || leftText }}"> <view class="van-nav-bar__left" bind:tap="onClickLeft">
<van-icon <block wx:if="{{ leftArrow || leftText }}">
wx:if="{{ leftArrow }}" <van-icon
size="16px" wx:if="{{ leftArrow }}"
name="arrow-left" size="16px"
custom-class="van-nav-bar__arrow" name="arrow-left"
/> custom-class="van-nav-bar__arrow"
/>
<view
wx:if="{{ leftText }}"
class="van-nav-bar__text"
hover-class="van-nav-bar__text--hover"
hover-stay-time="70"
>{{ leftText }}</view>
</block>
<slot wx:else name="left" />
</view>
<view class="van-nav-bar__title title-class van-ellipsis">
<block wx:if="{{ title }}">{{ title }}</block>
<slot wx:else name="title" />
</view>
<view class="van-nav-bar__right" bind:tap="onClickRight">
<view <view
wx:if="{{ leftText }}" wx:if="{{ rightText }}"
class="van-nav-bar__text" class="van-nav-bar__text"
hover-class="van-nav-bar__text--hover" hover-class="van-nav-bar__text--hover"
hover-stay-time="70" hover-stay-time="70"
>{{ leftText }}</view> >{{ rightText }}</view>
</block> <slot wx:else name="right" />
<slot wx:else name="left" /> </view>
</view>
<view class="van-nav-bar__title title-class van-ellipsis">
<block wx:if="{{ title }}">{{ title }}</block>
<slot wx:else name="title" />
</view>
<view class="van-nav-bar__right" bind:tap="onClickRight">
<view
wx:if="{{ rightText }}"
class="van-nav-bar__text"
hover-class="van-nav-bar__text--hover"
hover-stay-time="70"
>{{ rightText }}</view>
<slot wx:else name="right" />
</view> </view>
</view> </view>