cf-wx-app/todo list.json

84 lines
2.6 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

todo list
:
bug
--- ,
<View className='details-box'>
{/* */}
<AtTabs className='alltabs' animated={false} current={this.state.current} tabList={mainTabList} onClick={this.handleClick.bind(this)}>
<AtTabsPane style='color:red' current={this.state.current} index={0} >
<View style='background-color: #FAFBFC;' >
<View className='description-title'></View>
<View className='description-img'>
{itemDescriptionPicsElementArray}
</View>
</View>
</AtTabsPane>
<AtTabsPane current={this.state.current} index={1}>
<View style='padding: 1px 0px 100px;background-color: #FAFBFC;text-align: center;'>
{ /**/}
<AtSegmentedControl selectedColor='#FF9500'
values={['', '', '', '', '', '']}
onClick={this.onClick.bind(this)}
current={this.state.subCurrent}
/>
{
this.state.subCurrent === 0
? <View className='tab-content'>
<Text className='title'></Text>
</View>
: null
}
{
this.state.subCurrent === 1
? <View className='tab-content'></View>
: null
}
{
this.state.subCurrent === 2
? <View className='tab-content'></View>
: null
}
{
this.state.subCurrent === 3
? <View className='tab-content'></View>
: null
}
{
this.state.subCurrent === 4
? <View className='tab-content'></View>
: null
}
{
this.state.subCurrent === 5
? <View className='tab-content'></View>
: null
}
</View>
</AtTabsPane>
<AtTabsPane current={this.state.current} index={2}>
<View style='padding: 100px 50px;background-color: #FAFBFC;text-align: center;'></View>
</AtTabsPane>
</AtTabs>
</View>