index.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view>
  3. <view v-if="fixed && placeholder" :style="'height: ' + height + 'px;'" />
  4. <view :class="utils.bem('nav-bar', { fixed }) + ' custom-class ' + (border ? 'van-hairline--bottom' : '')" :style="baseStyle">
  5. <view class="van-nav-bar__content" :style="customStyle">
  6. <view class="van-nav-bar__left" @tap="onClickLeft">
  7. <block v-if="leftArrow || leftText">
  8. <van-icon v-if="leftArrow" size="16px" name="arrow-left" custom-class="van-nav-bar__arrow" />
  9. <view v-if="leftText" class="van-nav-bar__text" hover-class="van-nav-bar__text--hover" hover-stay-time="70">{{ leftText }}</view>
  10. </block>
  11. <slot v-else name="left" />
  12. </view>
  13. <view class="van-nav-bar__title title-class van-ellipsis">
  14. <block v-if="title">{{ title }}</block>
  15. <slot v-else name="title" />
  16. </view>
  17. <view class="van-nav-bar__right" @tap="onClickRight">
  18. <view v-if="rightText" class="van-nav-bar__text" hover-class="van-nav-bar__text--hover" hover-stay-time="70">{{ rightText }}</view>
  19. <slot v-else name="right" />
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  26. <script>
  27. 'use strict';
  28. Object.defineProperty(exports, '__esModule', {
  29. value: true
  30. });
  31. var component_1 = require('../common/component');
  32. var utils_1 = require('../common/utils');
  33. component_1.VantComponent({
  34. classes: ['title-class'],
  35. props: {
  36. title: String,
  37. fixed: {
  38. type: Boolean,
  39. observer: 'setHeight'
  40. },
  41. placeholder: {
  42. type: Boolean,
  43. observer: 'setHeight'
  44. },
  45. leftText: String,
  46. rightText: String,
  47. customStyle: String,
  48. leftArrow: Boolean,
  49. border: {
  50. type: Boolean,
  51. value: true
  52. },
  53. zIndex: {
  54. type: Number,
  55. value: 1
  56. },
  57. safeAreaInsetTop: {
  58. type: Boolean,
  59. value: true
  60. }
  61. },
  62. data: {
  63. statusBarHeight: 0,
  64. height: 44,
  65. baseStyle: ''
  66. },
  67. created: function () {
  68. var statusBarHeight = utils_1.getSystemInfoSync().statusBarHeight;
  69. var _a = this;
  70. var safeAreaInsetTop = _a.safeAreaInsetTop;
  71. var zIndex = _a.zIndex;
  72. var paddingTop = safeAreaInsetTop ? statusBarHeight : 0;
  73. var baseStyle = 'z-index: ' + zIndex + ';padding-top: ' + paddingTop + 'px;';
  74. this.setData({
  75. statusBarHeight: statusBarHeight,
  76. height: 44 + statusBarHeight,
  77. baseStyle: baseStyle
  78. });
  79. },
  80. mounted: function () {
  81. this.setHeight();
  82. },
  83. methods: {
  84. onClickLeft: function () {
  85. this.$emit('click-left');
  86. },
  87. onClickRight: function () {
  88. this.$emit('click-right');
  89. },
  90. setHeight: function () {
  91. var that = this;
  92. if (!this.fixed || !this.placeholder) {
  93. return;
  94. }
  95. this.$nextTick(function () {
  96. that.getRect('.van-nav-bar').then(function (res) {
  97. that.setData({
  98. height: res.height
  99. });
  100. });
  101. });
  102. }
  103. }
  104. });
  105. </script>
  106. <style>
  107. @import './index.css';
  108. </style>