index.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <view :class="utils.bem('tabbar-item', { active }) + ' custom-class'" :style="'color: ' + (active ? activeColor : inactiveColor)" @tap="onClick">
  3. <view class="van-tabbar-item__icon">
  4. <van-icon v-if="icon" :name="icon" custom-class="van-tabbar-item__icon__inner" />
  5. <block v-else>
  6. <slot v-if="active" name="icon-active" />
  7. <slot v-else name="icon" />
  8. </block>
  9. <van-info :dot="dot" :info="info" custom-class="van-tabbar-item__info" />
  10. </view>
  11. <view class="van-tabbar-item__text">
  12. <slot />
  13. </view>
  14. </view>
  15. </template>
  16. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  17. <script>
  18. 'use strict';
  19. Object.defineProperty(exports, '__esModule', {
  20. value: true
  21. });
  22. var component_1 = require('../common/component');
  23. component_1.VantComponent({
  24. props: {
  25. info: null,
  26. name: null,
  27. icon: String,
  28. dot: Boolean
  29. },
  30. relation: {
  31. name: 'tabbar',
  32. type: 'ancestor',
  33. current: 'tabbar-item'
  34. },
  35. data: {
  36. active: false
  37. },
  38. methods: {
  39. onClick: function () {
  40. if (this.parent) {
  41. this.parent.onChange(this);
  42. }
  43. this.$emit('click');
  44. },
  45. updateFromParent: function () {
  46. var parent = this.parent;
  47. if (!parent) {
  48. return;
  49. }
  50. var index = parent.children.indexOf(this);
  51. var parentData = parent.data;
  52. var data = this;
  53. var active = (data.name || index) === parentData.active;
  54. var patch = {};
  55. if (active !== data.active) {
  56. patch.active = active;
  57. }
  58. if (parentData.activeColor !== data.activeColor) {
  59. patch.activeColor = parentData.activeColor;
  60. }
  61. if (parentData.inactiveColor !== data.inactiveColor) {
  62. patch.inactiveColor = parentData.inactiveColor;
  63. }
  64. return Object.keys(patch).length > 0 ? this.set(patch) : Promise.resolve();
  65. }
  66. }
  67. });
  68. </script>
  69. <style>
  70. @import './index.css';
  71. </style>