mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Tab: active type should be number (#665)
This commit is contained in:
parent
0e3ee3dc77
commit
7c7d69230d
2
dist/mixins/observer/index.js
vendored
2
dist/mixins/observer/index.js
vendored
@ -10,7 +10,7 @@ export function observe(vantOptions, options) {
|
||||
if (key in props) {
|
||||
var prop = props[key];
|
||||
|
||||
if (prop === null || !prop.type) {
|
||||
if (prop === null || !('type' in prop)) {
|
||||
prop = {
|
||||
type: prop
|
||||
};
|
||||
|
2
dist/mixins/observer/props.js
vendored
2
dist/mixins/observer/props.js
vendored
@ -6,7 +6,7 @@ export function observeProps(props) {
|
||||
Object.keys(props).forEach(function (key) {
|
||||
var prop = props[key];
|
||||
|
||||
if (prop === null || !prop.type) {
|
||||
if (prop === null || !('type' in prop)) {
|
||||
prop = {
|
||||
type: prop
|
||||
};
|
||||
|
4
dist/tabs/index.js
vendored
4
dist/tabs/index.js
vendored
@ -25,7 +25,7 @@ VantComponent({
|
||||
color: String,
|
||||
lineWidth: Number,
|
||||
active: {
|
||||
type: null,
|
||||
type: Number,
|
||||
value: 0
|
||||
},
|
||||
type: {
|
||||
@ -139,7 +139,7 @@ VantComponent({
|
||||
this.scrollIntoView();
|
||||
},
|
||||
// scroll active tab into view
|
||||
scrollIntoView: function scrollIntoView(immediate) {
|
||||
scrollIntoView: function scrollIntoView() {
|
||||
var _this3 = this;
|
||||
|
||||
if (!this.data.scrollable) {
|
||||
|
@ -9,7 +9,7 @@ export function observe(vantOptions, options) {
|
||||
Object.keys(watch).forEach(key => {
|
||||
if (key in props) {
|
||||
let prop = props[key];
|
||||
if (prop === null || !prop.type) {
|
||||
if (prop === null || !('type' in prop)) {
|
||||
prop = { type: prop };
|
||||
}
|
||||
prop.observer = watch[key];
|
||||
|
@ -5,7 +5,7 @@ export function observeProps(props) {
|
||||
|
||||
Object.keys(props).forEach(key => {
|
||||
let prop = props[key];
|
||||
if (prop === null || !prop.type) {
|
||||
if (prop === null || !('type' in prop)) {
|
||||
prop = { type: prop };
|
||||
}
|
||||
|
||||
|
@ -115,7 +115,7 @@ Page({
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 |
|
||||
|-----------|-----------|-----------|-------------|
|
||||
| active | 当前激活标签的索引 | `String` `Number` | `0` |
|
||||
| active | 当前激活标签的索引 | `Number` | `0` |
|
||||
| color | 标签颜色 | `String` | `#f44` |
|
||||
| type | 样式风格,可选值为`card` | `String` | `line` |
|
||||
| border | 是否展示外边框,仅在`line`风格下生效 | `Boolean` | `true` |
|
||||
|
@ -30,7 +30,7 @@ VantComponent({
|
||||
color: String,
|
||||
lineWidth: Number,
|
||||
active: {
|
||||
type: null,
|
||||
type: Number,
|
||||
value: 0
|
||||
},
|
||||
type: {
|
||||
@ -84,7 +84,7 @@ VantComponent({
|
||||
this.setActiveTab();
|
||||
},
|
||||
|
||||
trigger(eventName, index) {
|
||||
trigger(eventName: string, index: number) {
|
||||
this.$emit(eventName, {
|
||||
index,
|
||||
title: this.data.tabs[index].data.title
|
||||
@ -101,7 +101,7 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
|
||||
setActive(active) {
|
||||
setActive(active: number) {
|
||||
if (active !== this.data.active) {
|
||||
this.trigger('change', active);
|
||||
this.setData({ active });
|
||||
@ -153,7 +153,7 @@ VantComponent({
|
||||
},
|
||||
|
||||
// scroll active tab into view
|
||||
scrollIntoView(immediate) {
|
||||
scrollIntoView() {
|
||||
if (!this.data.scrollable) {
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user