index.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view :class="'custom-class ' + utils.bem('tab__pane', { active, inactive: !active })" :style="shouldShow ? '' : 'display: none;'">
  3. <slot v-if="shouldRender" />
  4. </view>
  5. </template>
  6. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  7. <script>
  8. 'use strict';
  9. Object.defineProperty(exports, '__esModule', {
  10. value: true
  11. });
  12. var component_1 = require('../common/component');
  13. component_1.VantComponent({
  14. relation: {
  15. name: 'tabs',
  16. type: 'ancestor',
  17. current: 'tab'
  18. },
  19. props: {
  20. dot: {
  21. type: Boolean,
  22. observer: 'update'
  23. },
  24. info: {
  25. type: null,
  26. observer: 'update'
  27. },
  28. title: {
  29. type: String,
  30. observer: 'update'
  31. },
  32. disabled: {
  33. type: Boolean,
  34. observer: 'update'
  35. },
  36. titleStyle: {
  37. type: String,
  38. observer: 'update'
  39. },
  40. name: {
  41. type: [Number, String],
  42. value: ''
  43. }
  44. },
  45. data: {
  46. active: false
  47. },
  48. methods: {
  49. getComputedName: function () {
  50. if (this.name !== '') {
  51. return this.name;
  52. }
  53. return this.index;
  54. },
  55. updateRender: function (active, parent) {
  56. var parentData = parent.data;
  57. this.inited = this.inited || active;
  58. this.setData({
  59. active: active,
  60. shouldRender: this.inited || !parentData.lazyRender,
  61. shouldShow: active || parentData.animated
  62. });
  63. },
  64. update: function () {
  65. if (this.parent) {
  66. this.parent.updateTabs();
  67. }
  68. }
  69. }
  70. });
  71. </script>
  72. <style>
  73. @import './index.css';
  74. </style>