...
|
...
|
@@ -72,11 +72,11 @@ export default class BrandStore extends Component { |
|
|
animationEnd : () => {
|
|
|
this._toast._toastAnimationToggle = setTimeout(
|
|
|
() => {
|
|
|
this._toast.hide({
|
|
|
this._toast?this._toast.hide({
|
|
|
duration: 0,
|
|
|
animationEnd: () => {
|
|
|
}
|
|
|
})
|
|
|
}):null
|
|
|
},
|
|
|
1000
|
|
|
);
|
...
|
...
|
@@ -193,7 +193,7 @@ export default class BrandStore extends Component { |
|
|
return (
|
|
|
<HotProducts
|
|
|
resource={rowData}
|
|
|
onPressProduct={this.props.onPressFloorProduct}
|
|
|
onPressProduct={this.props.onPressProduct}
|
|
|
onPressMoreProducts={this.props.onPressMoreProducts}
|
|
|
/>
|
|
|
);
|
...
|
...
|
@@ -223,7 +223,7 @@ export default class BrandStore extends Component { |
|
|
key={'row' + rowID}
|
|
|
rowID={rowID}
|
|
|
data={rowData}
|
|
|
onPressProduct={this.props.onPressProductListProduct}
|
|
|
onPressProduct={this.props.onPressProduct}
|
|
|
/>
|
|
|
);
|
|
|
}
|
...
|
...
|
|