Authored by shixiang

收藏布局修改

review 于良
... ... @@ -41,12 +41,14 @@ export default class ShopTopBanner extends React.Component {
style={{width: backgroundWidth, height: backgroundHeight }}
resizeMode={'cover'}
>
<TouchableOpacity activeOpacity={0.5} onPress={() => {
<TouchableOpacity activeOpacity={0.5}
style={{ width: buttonWidth, height: buttonHeight,position: 'absolute',borderRadius: 5,backgroundColor:'red',bottom:15,right:15}}
onPress={() => {
this.props.onPressCollection && this.props.onPressCollection(!this.props.info.is_addFav);
}}>
<Image
source={buttonIcon}
style={{ width: buttonWidth, height: buttonHeight,position: 'absolute',borderRadius: 5,bottom: -backgroundHeight + 15,right:15}}
style={{ width: buttonWidth, height: buttonHeight,position: 'absolute',borderRadius: 5}}
resizeMode={'cover'}/>
</TouchableOpacity>
... ...
... ... @@ -137,7 +137,7 @@ class BrandStoreContainer extends Component {
_onPressProductFilter(value) {
if (value === 'filter') {
this.props.actions.setFilterView(true);
this.props.actions.setFilterView(!this.props.brandStore.productList.isFilter);
} else {
this.props.actions.setFilterView(false);
this.props.actions.resetListPageInfo();
... ...