index.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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/dist/wxs/utils.wxs"></script>
  7. <script>
  8. import { VantComponent } from '../common/component';
  9. export default {
  10. data() {
  11. return {
  12. active: false,
  13. shouldRender: '',
  14. shouldShow: ''
  15. };
  16. },
  17. '../tabs/index': {
  18. name: 'tabs',
  19. type: 'ancestor',
  20. current: 'tab'
  21. },
  22. props: {
  23. dot: {
  24. type: Boolean
  25. },
  26. info: {
  27. type: null
  28. },
  29. title: {
  30. type: String
  31. },
  32. disabled: {
  33. type: Boolean
  34. },
  35. titleStyle: {
  36. type: String
  37. },
  38. name: {
  39. type: [Number, String],
  40. default: ''
  41. }
  42. },
  43. methods: {
  44. getComputedName() {
  45. if (this.name !== '') {
  46. return this.name;
  47. }
  48. return this.index;
  49. },
  50. updateRender(active, parent) {
  51. const { data: parentData } = parent;
  52. this.inited = this.inited || active;
  53. this.setData({
  54. active,
  55. shouldRender: this.inited || !parentData.lazyRender,
  56. shouldShow: active || parentData.animated
  57. });
  58. },
  59. update() {
  60. if (this.parent) {
  61. this.parent.updateTabs();
  62. }
  63. }
  64. },
  65. watch: {
  66. dot: {
  67. handler: function () {
  68. if (this.parent) {
  69. this.parent.updateTabs();
  70. }
  71. },
  72. immediate: true
  73. },
  74. info: {
  75. handler: function () {
  76. if (this.parent) {
  77. this.parent.updateTabs();
  78. }
  79. },
  80. immediate: true
  81. },
  82. title: {
  83. handler: function () {
  84. if (this.parent) {
  85. this.parent.updateTabs();
  86. }
  87. },
  88. immediate: true
  89. },
  90. disabled: {
  91. handler: function () {
  92. if (this.parent) {
  93. this.parent.updateTabs();
  94. }
  95. },
  96. immediate: true
  97. },
  98. titleStyle: {
  99. handler: function () {
  100. if (this.parent) {
  101. this.parent.updateTabs();
  102. }
  103. },
  104. immediate: true
  105. }
  106. }
  107. };
  108. </script>
  109. <style>
  110. @import './index.css';
  111. </style>