| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424 |
- <template>
- <view
- class="uni-navbar"
- :class="{ 'uni-dark': dark, 'uni-nvue-fixed': fixed }"
- >
- <view
- class="uni-navbar__content"
- :class="{
- 'uni-navbar--fixed': fixed,
- 'uni-navbar--shadow': shadow,
- 'uni-navbar--border': border
- }"
- :style="{ 'background-color': themeBgColor }"
- >
- <status-bar v-if="statusBar" />
- <view
- :style="{
- color: themeColor,
- backgroundColor: themeBgColor,
- height: navbarHeight
- }"
- class="uni-navbar__header"
- >
- <view
- @tap="onClickLeft"
- class="uni-navbar__header-btns uni-navbar__header-btns-left"
- :style="{ width: leftIconWidth }"
- >
- <slot name="left">
- <view class="uni-navbar__content_view" v-if="leftIcon.length > 0">
- <uni-icons :color="themeColor" :type="leftIcon" size="20" />
- </view>
- <view
- :class="{ 'uni-navbar-btn-icon-left': !leftIcon.length > 0 }"
- class="uni-navbar-btn-text"
- v-if="leftText.length"
- >
- <text :style="{ color: themeColor, fontSize: '12px' }">{{
- leftText
- }}</text>
- </view>
- </slot>
- </view>
- <view class="uni-navbar__header-container" @tap="onClickTitle">
- <slot>
- <view
- class="uni-navbar__header-container-inner"
- v-if="title.length > 0"
- >
- <text
- class="uni-nav-bar-text uni-ellipsis-1"
- :style="{ color: themeColor }"
- >{{ title }}</text
- >
- </view>
- </slot>
- </view>
- <view
- @click="onClickRight"
- class="uni-navbar__header-btns uni-navbar__header-btns-right"
- :style="{ width: rightIconWidth }"
- >
- <slot name="right">
- <view v-if="rightIcon.length">
- <uni-icons :color="themeColor" :type="rightIcon" size="22" />
- </view>
- <view
- class="uni-navbar-btn-text"
- v-if="rightText.length && !rightIcon.length"
- >
- <text
- class="uni-nav-bar-right-text"
- :style="{ color: themeColor }"
- >
- {{ rightText }}
- <span
- class="uni-nav-bar-right-text-number"
- v-if="rightNum !== ''"
- >{{ rightNum }}</span
- >
- </text>
- <!-- <text class="uni-nav-bar-right-text" :style="{ color: themeColor}">{{ rightNum }}</text> -->
- </view>
- </slot>
- </view>
- </view>
- </view>
- <!-- #ifndef APP-NVUE -->
- <view class="uni-navbar__placeholder" v-if="fixed">
- <status-bar v-if="statusBar" />
- <view
- class="uni-navbar__placeholder-view"
- :style="{ height: navbarHeight }"
- />
- </view>
- <!-- #endif -->
- </view>
- </template>
- <script>
- import statusBar from './uni-status-bar.vue'
- const getVal = val => (typeof val === 'number' ? val + 'px' : val)
- /**
- *
- *
- * NavBar 自定义导航栏
- * @description 导航栏组件,主要用于头部导航
- * @tutorial https://ext.dcloud.net.cn/plugin?id=52
- * @property {Boolean} dark 开启黑暗模式
- * @property {String} title 标题文字
- * @property {String} leftText 左侧按钮文本
- * @property {String} rightText 右侧按钮文本
- * @property {String} leftIcon 左侧按钮图标(图标类型参考 [Icon 图标](http://ext.dcloud.net.cn/plugin?id=28) type 属性)
- * @property {String} rightIcon 右侧按钮图标(图标类型参考 [Icon 图标](http://ext.dcloud.net.cn/plugin?id=28) type 属性)
- * @property {String} color 图标和文字颜色
- * @property {String} backgroundColor 导航栏背景颜色
- * @property {Boolean} fixed = [true|false] 是否固定顶部
- * @property {Boolean} statusBar = [true|false] 是否包含状态栏
- * @property {Boolean} shadow = [true|false] 导航栏下是否有阴影
- * @property {Boolean} stat 是否开启统计标题上报
- * @event {Function} clickLeft 左侧按钮点击时触发
- * @event {Function} clickRight 右侧按钮点击时触发
- * @event {Function} clickTitle 中间标题点击时触发
- */
- export default {
- name: 'UniNavBar',
- components: {
- statusBar
- },
- emits: ['clickLeft', 'clickRight', 'clickTitle'],
- props: {
- dark: {
- type: Boolean,
- default: false
- },
- title: {
- type: String,
- default: ''
- },
- leftText: {
- type: String,
- default: ''
- },
- rightText: {
- type: String,
- default: ''
- },
- rightNum: {
- type: String,
- default: ''
- },
- leftIcon: {
- type: String,
- default: ''
- },
- rightIcon: {
- type: String,
- default: ''
- },
- fixed: {
- type: [Boolean, String],
- default: false
- },
- color: {
- type: String,
- default: ''
- },
- backgroundColor: {
- type: String,
- default: ''
- },
- statusBar: {
- type: [Boolean, String],
- default: false
- },
- shadow: {
- type: [Boolean, String],
- default: false
- },
- border: {
- type: [Boolean, String],
- default: true
- },
- height: {
- type: [Number, String],
- default: 44
- },
- leftWidth: {
- type: [Number, String],
- default: 60
- },
- rightWidth: {
- type: [Number, String],
- default: 60
- },
- stat: {
- type: [Boolean, String],
- default: ''
- }
- },
- computed: {
- themeBgColor () {
- if (this.dark) {
- // 默认值
- if (this.backgroundColor) {
- return this.backgroundColor
- } else {
- return this.dark ? '#333' : '#FFF'
- }
- }
- return this.backgroundColor || '#FFF'
- },
- themeColor () {
- if (this.dark) {
- // 默认值
- if (this.color) {
- return this.color
- } else {
- return this.dark ? '#fff' : '#333'
- }
- }
- return this.color || '#333'
- },
- navbarHeight () {
- return getVal(this.height)
- },
- leftIconWidth () {
- return getVal(this.leftWidth)
- },
- rightIconWidth () {
- return getVal(this.rightWidth)
- }
- },
- mounted () {
- if (uni.report && this.stat && this.title !== '') {
- uni.report('title', this.title)
- }
- },
- methods: {
- onClickLeft () {
- this.$emit('clickLeft')
- },
- onClickRight () {
- this.$emit('clickRight')
- },
- onClickTitle () {
- this.$emit('clickTitle')
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- $nav-height: 88rpx;
- .uni-nvue-fixed {
- /* #ifdef APP-NVUE */
- position: sticky;
- /* #endif */
- }
- .uni-navbar {
- // box-sizing: border-box;
- }
- .uni-nav-bar-text {
- /* #ifdef APP-PLUS */
- font-size: 34rpx;
- /* #endif */
- /* #ifndef APP-PLUS */
- font-size: 32rpx;
- /* #endif */
- }
- .uni-nav-bar-right-text {
- font-size: 28rpx;
- position: relative;
- padding-right: 20rpx;
- .uni-nav-bar-right-text-number {
- padding: 4rpx 8rpx;
- background: red;
- border-radius: 50%;
- color: #fff;
- display: inline-block;
- font-size: 10rpx;
- position: absolute;
- right: 0;
- top: -20rpx;
- font-size: 28rpx;
- }
- }
- .uni-navbar__content {
- position: relative;
- // background-color: #fff;
- // box-sizing: border-box;
- background-color: transparent;
- }
- .uni-navbar__content_view {
- // box-sizing: border-box;
- }
- .uni-navbar-btn-text {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- line-height: 12px;
- }
- .uni-navbar__header {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- padding: 0 10px;
- flex-direction: row;
- height: $nav-height;
- font-size: 28rpx;
- }
- .uni-navbar__header-btns {
- /* #ifndef APP-NVUE */
- overflow: hidden;
- display: flex;
- /* #endif */
- flex-wrap: nowrap;
- flex-direction: row;
- width: 120rpx;
- // padding: 0 6px;
- justify-content: center;
- align-items: center;
- /* #ifdef H5 */
- cursor: pointer;
- /* #endif */
- }
- .uni-navbar__header-btns-left {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- width: 120rpx;
- justify-content: flex-start;
- align-items: center;
- }
- .uni-navbar__header-btns-right {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- // width: 150rpx;
- // padding-right: 30rpx;
- justify-content: flex-end;
- align-items: center;
- }
- .uni-navbar__header-container {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex: 1;
- padding: 0 10px;
- overflow: hidden;
- }
- .uni-navbar__header-container-inner {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex: 1;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- overflow: hidden;
- // box-sizing: border-box;
- }
- .uni-navbar__placeholder-view {
- height: $nav-height;
- }
- .uni-navbar--fixed {
- position: fixed;
- z-index: 998;
- /* #ifdef H5 */
- left: var(--window-left);
- right: var(--window-right);
- /* #endif */
- /* #ifndef H5 */
- left: 0;
- right: 0;
- /* #endif */
- }
- .uni-navbar--shadow {
- box-shadow: 0 1px 6px #ccc;
- }
- .uni-navbar--border {
- border-bottom-width: 1rpx;
- border-bottom-style: solid;
- border-bottom-color: #eee;
- }
- .uni-ellipsis-1 {
- overflow: hidden;
- /* #ifndef APP-NVUE */
- white-space: nowrap;
- text-overflow: ellipsis;
- /* #endif */
- /* #ifdef APP-NVUE */
- lines: 1;
- text-overflow: ellipsis;
- /* #endif */
- }
- // 暗主题配置
- .uni-dark {
- }
- </style>
|