1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  | export default { 
 |      props: { 
 |          // tab的数据 
 |          list: { 
 |              type: Array, 
 |              default: uni.$u.props.subsection.list 
 |          }, 
 |          // 当前活动的tab的index 
 |          current: { 
 |              type: [String, Number], 
 |              default: uni.$u.props.subsection.current 
 |          }, 
 |          // 激活的颜色 
 |          activeColor: { 
 |              type: String, 
 |              default: uni.$u.props.subsection.activeColor 
 |          }, 
 |          // 未激活的颜色 
 |          inactiveColor: { 
 |              type: String, 
 |              default: uni.$u.props.subsection.inactiveColor 
 |          }, 
 |          // 模式选择,mode=button为按钮形式,mode=subsection时为分段模式 
 |          mode: { 
 |              type: String, 
 |              default: uni.$u.props.subsection.mode 
 |          }, 
 |          // 字体大小 
 |          fontSize: { 
 |              type: [String, Number], 
 |              default: uni.$u.props.subsection.fontSize 
 |          }, 
 |          // 激活tab的字体是否加粗 
 |          bold: { 
 |              type: Boolean, 
 |              default: uni.$u.props.subsection.bold 
 |          }, 
 |          // mode = button时,组件背景颜色 
 |          bgColor: { 
 |              type: String, 
 |              default: uni.$u.props.subsection.bgColor 
 |          }, 
 |          // 从list元素对象中读取的键名 
 |          keyName: { 
 |              type: String, 
 |              default: uni.$u.props.subsection.keyName 
 |          } 
 |      } 
 |  } 
 |  
  |