You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// components/tab/index.js
Component ( {
relations : {
'../tabs/index' : {
type : 'parent' ,
linked : function ( target ) {
! this . data . parent && this . setData ( {
parent : target
} ) ;
// 每次被插入到custom-ul时执行, target是custom-ul节点实例对象, 触发在attached生命周期之后
}
} ,
'../combined-tabs/index' : {
type : 'parent' ,
linked : function ( target ) {
! this . data . parent && this . setData ( {
parent : target
} ) ;
// 每次被插入到custom-ul时执行, target是custom-ul节点实例对象, 触发在attached生命周期之后
}
}
} ,
/**
* 组件的属性列表
*/
properties : {
tab : String ,
subTab : String ,
subKey : String ,
key : String ,
icon : String ,
iconSize : {
type : String ,
value : '20'
} ,
image : Object ,
picPlacement : {
type : String ,
value : 'top'
} ,
dotBadge : {
type : Boolean ,
value : false
} ,
badgeCount : {
type : Number ,
} ,
badgeMaxCount : {
type : Number ,
value : 99
} ,
badgeCountType : {
type : String ,
value : 'overflow'
} ,
} ,
observers : {
'**' : function ( filed ) {
this . updateData ( filed ) ;
}
} ,
/**
* 组件的初始数据
*/
data : {
isCurrent : false ,
index : 0 ,
parent : null
} ,
methods : {
updateData ( ) {
let parent = this . data . parent ;
if ( ! parent ) return ;
parent . initTabs ( ) ;
}
}
} ) ;