37 lines
870 B
Vue
37 lines
870 B
Vue
<!-- 自定义导航栏的骨架页面:通用型 -->
|
||
<template>
|
||
<view>
|
||
<!-- 自定义导航栏 -->
|
||
<uni-nav-bar
|
||
statusBar
|
||
:left-icon="leftIcon"
|
||
:leftText="leftText"
|
||
:leftIconColor="leftIconColor"
|
||
:right-text="rightText"
|
||
:title="title"
|
||
:color="color"
|
||
:rightTextColor="rightTextColor"
|
||
:backgroundColor="backgroundColor"
|
||
:fixed="fixed"
|
||
:rightShow="rightShow"
|
||
:platformsHeight="platformsHeight"
|
||
@clickLeft="clickLeft"
|
||
@clickRight="clickRight">
|
||
<slot name="leftCustom" slot="leftCustom"></slot>
|
||
<slot name="left" slot="left"></slot>
|
||
<slot name="hearder"></slot>
|
||
<slot name="right" slot="right"></slot>
|
||
</uni-nav-bar>
|
||
<slot></slot>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import navBarPageMixin from './mixins/navBarPageMixin.js'
|
||
|
||
export default {
|
||
name: 'CustomNavbarPage',
|
||
mixins: [navBarPageMixin]
|
||
}
|
||
</script>
|