index.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <uni-shadow-root class="vant-index-anchor-index"><view class="van-index-anchor-wrapper" :style="wrapperStyle">
  3. <view :class="'van-index-anchor '+(active ? 'van-index-anchor--active van-hairline--bottom' : '')" :style="anchorStyle">
  4. <slot v-if="useSlot"></slot>
  5. <block v-else>
  6. <text>{{ index }}</text>
  7. </block>
  8. </view>
  9. </view></uni-shadow-root>
  10. </template>
  11. <script>
  12. global['__wxRoute'] = 'vant/index-anchor/index'
  13. import { VantComponent } from '../common/component';
  14. VantComponent({
  15. relation: {
  16. name: 'index-bar',
  17. type: 'ancestor',
  18. linked(target) {
  19. this.parent = target;
  20. },
  21. unlinked() {
  22. this.parent = null;
  23. }
  24. },
  25. props: {
  26. useSlot: Boolean,
  27. index: null
  28. },
  29. data: {
  30. active: false,
  31. wrapperStyle: '',
  32. anchorStyle: ''
  33. }
  34. });
  35. export default global['__wxComponents']['vant/index-anchor/index']
  36. </script>
  37. <style platform="mp-weixin">
  38. @import '../common/index.css';.van-index-anchor{padding:0 16px;padding:var(--index-anchor-padding,0 16px);color:#323233;color:var(--index-anchor-text-color,#323233);font-weight:500;font-weight:var(--index-anchor-font-weight,500);font-size:14px;font-size:var(--index-anchor-font-size,14px);line-height:32px;line-height:var(--index-anchor-line-height,32px);background-color:initial;background-color:var(--index-anchor-background-color,transparent)}.van-index-anchor--active{right:0;left:0;color:#07c160;color:var(--index-anchor-active-text-color,#07c160);background-color:#fff;background-color:var(--index-anchor-active-background-color,#fff)}
  39. </style>