xc-app/pages/components/customNavbarPage.vue

37 lines
870 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 自定义导航栏的骨架页面通用型 -->
<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>