u-navbar.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. <template>
  2. <view class="">
  3. <view class="u-navbar" :style="[navbarStyle]" :class="{ 'u-navbar-fixed': isFixed, 'u-border-bottom': borderBottom }">
  4. <view class="u-status-bar" :style="{ height: statusBarHeight + 'px' }"></view>
  5. <view class="u-navbar-inner" :style="[navbarInnerStyle]">
  6. <view class="u-back-wrap" v-if="isBack" @tap="goBack">
  7. <view class="u-icon-wrap">
  8. <u-icon :name="backIconName" :color="backIconColor" :size="backIconSize"></u-icon>
  9. </view>
  10. <view class="u-icon-wrap u-back-text u-line-1" v-if="backText" :style="[backTextStyle]">{{ backText }}</view>
  11. </view>
  12. <view class="u-navbar-content-title" v-if="title" :style="[titleStyle]">
  13. <view
  14. class="u-title u-line-1"
  15. :style="{
  16. color: titleColor,
  17. fontSize: titleSize + 'rpx'
  18. }">
  19. {{ title }}
  20. </view>
  21. </view>
  22. <view class="u-slot-content">
  23. <slot></slot>
  24. </view>
  25. <view class="u-slot-right">
  26. <slot name="right"></slot>
  27. </view>
  28. </view>
  29. </view>
  30. <!-- 解决fixed定位后导航栏塌陷的问题 -->
  31. <view class="u-navbar-placeholder" v-if="isFixed && !immersive" :style="{ width: '100%', height: Number(navbarHeight) + statusBarHeight + 'px' }"></view>
  32. </view>
  33. </template>
  34. <script>
  35. // 获取系统状态栏的高度
  36. let systemInfo = uni.getSystemInfoSync();
  37. let menuButtonInfo = {};
  38. // 如果是小程序,获取右上角胶囊的尺寸信息,避免导航栏右侧内容与胶囊重叠(支付宝小程序非本API,尚未兼容)
  39. // #ifdef MP-WEIXIN || MP-BAIDU || MP-TOUTIAO || MP-QQ
  40. menuButtonInfo = uni.getMenuButtonBoundingClientRect();
  41. // #endif
  42. /**
  43. * navbar 自定义导航栏
  44. * @description 此组件一般用于在特殊情况下,需要自定义导航栏的时候用到,一般建议使用uniapp自带的导航栏。
  45. * @tutorial https://www.uviewui.com/components/navbar.html
  46. * @property {String Number} height 导航栏高度(不包括状态栏高度在内,内部自动加上),注意这里的单位是px(默认44)
  47. * @property {String} back-icon-color 左边返回图标的颜色(默认#606266)
  48. * @property {String} back-icon-name 左边返回图标的名称,只能为uView自带的图标(默认arrow-left)
  49. * @property {String Number} back-icon-size 左边返回图标的大小,单位rpx(默认30)
  50. * @property {String} back-text 返回图标右边的辅助提示文字
  51. * @property {Object} back-text-style 返回图标右边的辅助提示文字的样式,对象形式(默认{ color: '#606266' })
  52. * @property {String} title 导航栏标题,如设置为空字符,将会隐藏标题占位区域
  53. * @property {String Number} title-width 导航栏标题的最大宽度,内容超出会以省略号隐藏,单位rpx(默认250)
  54. * @property {String} title-color 标题的颜色(默认#606266)
  55. * @property {String Number} title-size 导航栏标题字体大小,单位rpx(默认32)
  56. * @property {Function} custom-back 自定义返回逻辑方法
  57. * @property {String Number} z-index 固定在顶部时的z-index值(默认980)
  58. * @property {Boolean} is-back 是否显示导航栏左边返回图标和辅助文字(默认true)
  59. * @property {Object} background 导航栏背景设置,见官网说明(默认{ background: '#ffffff' })
  60. * @property {Boolean} is-fixed 导航栏是否固定在顶部(默认true)
  61. * @property {Boolean} immersive 沉浸式,允许fixed定位后导航栏塌陷,仅fixed定位下生效(默认false)
  62. * @property {Boolean} border-bottom 导航栏底部是否显示下边框,如定义了较深的背景颜色,可取消此值(默认true)
  63. * @example <u-navbar back-text="返回" title="剑未配妥,出门已是江湖"></u-navbar>
  64. */
  65. export default {
  66. name: "u-navbar",
  67. props: {
  68. // 导航栏高度,单位px,非rpx
  69. height: {
  70. type: [String, Number],
  71. default: ''
  72. },
  73. // 返回箭头的颜色
  74. backIconColor: {
  75. type: String,
  76. default: '#606266'
  77. },
  78. // 左边返回的图标
  79. backIconName: {
  80. type: String,
  81. default: 'nav-back'
  82. },
  83. // 左边返回图标的大小,rpx
  84. backIconSize: {
  85. type: [String, Number],
  86. default: '44'
  87. },
  88. // 返回的文字提示
  89. backText: {
  90. type: String,
  91. default: ''
  92. },
  93. // 返回的文字的 样式
  94. backTextStyle: {
  95. type: Object,
  96. default () {
  97. return {
  98. color: '#606266'
  99. }
  100. }
  101. },
  102. // 导航栏标题
  103. title: {
  104. type: String,
  105. default: ''
  106. },
  107. // 标题的宽度,如果需要自定义右侧内容,且右侧内容很多时,可能需要减少这个宽度,单位rpx
  108. titleWidth: {
  109. type: [String, Number],
  110. default: '250'
  111. },
  112. // 标题的颜色
  113. titleColor: {
  114. type: String,
  115. default: '#606266'
  116. },
  117. // 标题的字体大小
  118. titleSize: {
  119. type: [String, Number],
  120. default: 32
  121. },
  122. isBack: {
  123. type: [Boolean, String],
  124. default: true
  125. },
  126. // 对象形式,因为用户可能定义一个纯色,或者线性渐变的颜色
  127. background: {
  128. type: Object,
  129. default () {
  130. return {
  131. background: '#ffffff'
  132. }
  133. }
  134. },
  135. // 导航栏是否固定在顶部
  136. isFixed: {
  137. type: Boolean,
  138. default: true
  139. },
  140. // 是否沉浸式,允许fixed定位后导航栏塌陷,仅fixed定位下生效
  141. immersive: {
  142. type: Boolean,
  143. default: false
  144. },
  145. // 是否显示导航栏的下边框
  146. borderBottom: {
  147. type: Boolean,
  148. default: true
  149. },
  150. zIndex: {
  151. type: [String, Number],
  152. default: ''
  153. },
  154. // 自定义返回逻辑
  155. customBack: {
  156. type: Function,
  157. default: null
  158. }
  159. },
  160. data() {
  161. return {
  162. menuButtonInfo: menuButtonInfo,
  163. statusBarHeight: systemInfo.statusBarHeight
  164. };
  165. },
  166. computed: {
  167. // 导航栏内部盒子的样式
  168. navbarInnerStyle() {
  169. let style = {};
  170. // 导航栏宽度,如果在小程序下,导航栏宽度为胶囊的左边到屏幕左边的距离
  171. style.height = this.navbarHeight + 'px';
  172. // // 如果是各家小程序,导航栏内部的宽度需要减少右边胶囊的宽度
  173. // #ifdef MP
  174. let rightButtonWidth = systemInfo.windowWidth - menuButtonInfo.left;
  175. style.marginRight = rightButtonWidth + 'px';
  176. // #endif
  177. return style;
  178. },
  179. // 整个导航栏的样式
  180. navbarStyle() {
  181. let style = {};
  182. style.zIndex = this.zIndex ? this.zIndex : this.$u.zIndex.navbar;
  183. // 合并用户传递的背景色对象
  184. Object.assign(style, this.background);
  185. return style;
  186. },
  187. // 导航中间的标题的样式
  188. titleStyle() {
  189. let style = {};
  190. // #ifndef MP
  191. style.left = (systemInfo.windowWidth - uni.upx2px(this.titleWidth)) / 2 + 'px';
  192. style.right = (systemInfo.windowWidth - uni.upx2px(this.titleWidth)) / 2 + 'px';
  193. // #endif
  194. // #ifdef MP
  195. // 此处是为了让标题显示区域即使在小程序有右侧胶囊的情况下也能处于屏幕的中间,是通过绝对定位实现的
  196. let rightButtonWidth = systemInfo.windowWidth - menuButtonInfo.left;
  197. style.left = (systemInfo.windowWidth - uni.upx2px(this.titleWidth)) / 2 + 'px';
  198. style.right = rightButtonWidth - (systemInfo.windowWidth - uni.upx2px(this.titleWidth)) / 2 + rightButtonWidth +
  199. 'px';
  200. // #endif
  201. style.width = uni.upx2px(this.titleWidth) + 'px';
  202. return style;
  203. },
  204. // 转换字符数值为真正的数值
  205. navbarHeight() {
  206. // #ifdef APP-PLUS || H5
  207. return this.height ? this.height : 44;
  208. // #endif
  209. // #ifdef MP
  210. // 小程序特别处理,让导航栏高度 = 胶囊高度 + 两倍胶囊顶部与状态栏底部的距离之差(相当于同时获得了导航栏底部与胶囊底部的距离)
  211. // 此方法有缺陷,暂不用(会导致少了几个px),采用直接固定值的方式
  212. // return menuButtonInfo.height + (menuButtonInfo.top - this.statusBarHeight) * 2;//导航高度
  213. let height = systemInfo.platform == 'ios' ? 44 : 48;
  214. return this.height ? this.height : height;
  215. // #endif
  216. }
  217. },
  218. created() {},
  219. methods: {
  220. goBack() {
  221. // 如果自定义了点击返回按钮的函数,则执行,否则执行返回逻辑
  222. if (typeof this.customBack === 'function') {
  223. // 在微信,支付宝等环境(H5正常),会导致父组件定义的customBack()函数体中的this变成子组件的this
  224. // 通过bind()方法,绑定父组件的this,让this.customBack()的this为父组件的上下文
  225. this.customBack.bind(this.$u.$parent.call(this))();
  226. } else {
  227. uni.navigateBack();
  228. }
  229. }
  230. }
  231. };
  232. </script>
  233. <style scoped lang="scss">
  234. @import "../../libs/css/style.components.scss";
  235. .u-navbar {
  236. width: 100%;
  237. }
  238. .u-navbar-fixed {
  239. position: fixed;
  240. left: 0;
  241. right: 0;
  242. top: 0;
  243. z-index: 991;
  244. }
  245. .u-status-bar {
  246. width: 100%;
  247. }
  248. .u-navbar-inner {
  249. @include vue-flex;
  250. justify-content: space-between;
  251. position: relative;
  252. align-items: center;
  253. }
  254. .u-back-wrap {
  255. @include vue-flex;
  256. align-items: center;
  257. flex: 1;
  258. flex-grow: 0;
  259. padding: 14rpx 14rpx 14rpx 24rpx;
  260. }
  261. .u-back-text {
  262. padding-left: 4rpx;
  263. font-size: 30rpx;
  264. }
  265. .u-navbar-content-title {
  266. @include vue-flex;
  267. align-items: center;
  268. justify-content: center;
  269. flex: 1;
  270. position: absolute;
  271. left: 0;
  272. right: 0;
  273. height: 60rpx;
  274. text-align: center;
  275. flex-shrink: 0;
  276. }
  277. .u-navbar-centent-slot {
  278. flex: 1;
  279. }
  280. .u-title {
  281. line-height: 60rpx;
  282. font-size: 32rpx;
  283. flex: 1;
  284. }
  285. .u-navbar-right {
  286. flex: 1;
  287. @include vue-flex;
  288. align-items: center;
  289. justify-content: flex-end;
  290. }
  291. .u-slot-content {
  292. flex: 1;
  293. @include vue-flex;
  294. align-items: center;
  295. }
  296. </style>