123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <uni-shadow-root class="weapp-lib-tab-index"><view :class="'custom-class '+(utils.bem('tab__pane', { active, inactive: !active }))" :style="shouldShow ? '' : 'display: none;'">
- <slot v-if="shouldRender"></slot>
- </view></uni-shadow-root>
- </template>
- <wxs src="../wxs/utils.wxs" module="utils"></wxs>
- <script>
- global['__wxRoute'] = 'weapp/lib/tab/index'
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var relation_1 = require("../common/relation");
- var component_1 = require("../common/component");
- (0, component_1.VantComponent)({
- relation: (0, relation_1.useParent)('tabs'),
- props: {
- dot: {
- type: Boolean,
- observer: 'update',
- },
- info: {
- type: null,
- observer: 'update',
- },
- title: {
- type: String,
- observer: 'update',
- },
- disabled: {
- type: Boolean,
- observer: 'update',
- },
- titleStyle: {
- type: String,
- observer: 'update',
- },
- name: {
- type: null,
- value: '',
- },
- },
- data: {
- active: false,
- },
- methods: {
- getComputedName: function () {
- if (this.data.name !== '') {
- return this.data.name;
- }
- return this.index;
- },
- updateRender: function (active, parent) {
- var parentData = parent.data;
- this.inited = this.inited || active;
- this.setData({
- active: active,
- shouldRender: this.inited || !parentData.lazyRender,
- shouldShow: active || parentData.animated,
- });
- },
- update: function () {
- if (this.parent) {
- this.parent.updateTabs();
- }
- },
- },
- });
- export default global['__wxComponents']['weapp/lib/tab/index']
- </script>
- <style platform="mp-weixin">
- @import '../common/index.css';.weapp-lib-tab-index{box-sizing:border-box;flex-shrink:0;width:100%}.van-tab__pane{-webkit-overflow-scrolling:touch;box-sizing:border-box;overflow-y:auto}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible}
- </style>
|