mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
4f4e6af9a6
commit
67dfb120c3
@ -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>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
"disablePlugins": [],
|
"disablePlugins": [],
|
||||||
"outputPath": ""
|
"outputPath": ""
|
||||||
},
|
},
|
||||||
"useCompilerModule": false,
|
"useCompilerModule": true,
|
||||||
"userConfirmedUseCompilerModuleSwitch": false
|
"userConfirmedUseCompilerModuleSwitch": false
|
||||||
},
|
},
|
||||||
"compileType": "miniprogram",
|
"compileType": "miniprogram",
|
||||||
|
@ -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;
|
||||||
|
@ -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,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user