...
|
...
|
@@ -377,40 +377,48 @@ class MineContainer extends Component { |
|
|
mineResource,
|
|
|
} = this.props.mine;
|
|
|
return (
|
|
|
<MineList
|
|
|
isFetching={isFetching}
|
|
|
isNeedShowXsrz={isNeedShowXsrz}
|
|
|
isLogin={isLogin}
|
|
|
productListForMineCenter={open.productListForMineCenter}
|
|
|
mineCenterInfo={open.mineCenterInfo}
|
|
|
profile={profile}
|
|
|
mineInfoNum={mineInfoNum}
|
|
|
redPackageNum={redPackageNum}
|
|
|
activityListInfo={activityListInfo}
|
|
|
memberBill={memberBill}
|
|
|
showRedPacket={showRedPacket}
|
|
|
certificationInfo={certificationInfo}
|
|
|
announcement={announcement}
|
|
|
globalOrderData={globalOrderData}
|
|
|
iconAll={iconAll}
|
|
|
instalmentStatus={instalmentStatus}
|
|
|
mineResource={mineResource}
|
|
|
|
|
|
onPressItem={this._onPressItem}
|
|
|
onPressProductListProduct={this._onPressProductListProduct}
|
|
|
onMineCenterRefresh={this._onMineCenterRefresh}
|
|
|
getProductListForMineCenter={this.props.actions.getProductListForMineCenter}
|
|
|
onLongPressProduct={this._onLongPressProduct}
|
|
|
onPressFindSimilar={this._onPressFindSimilar}
|
|
|
onPressFloorItem={this._onPressFloorItem}
|
|
|
showSimilarGuider={showSimilarGuider}
|
|
|
/>
|
|
|
<View style={styles.container}>
|
|
|
<MineList
|
|
|
isFetching={isFetching}
|
|
|
isNeedShowXsrz={isNeedShowXsrz}
|
|
|
isLogin={isLogin}
|
|
|
productListForMineCenter={open.productListForMineCenter}
|
|
|
mineCenterInfo={open.mineCenterInfo}
|
|
|
profile={profile}
|
|
|
mineInfoNum={mineInfoNum}
|
|
|
redPackageNum={redPackageNum}
|
|
|
activityListInfo={activityListInfo}
|
|
|
memberBill={memberBill}
|
|
|
showRedPacket={showRedPacket}
|
|
|
certificationInfo={certificationInfo}
|
|
|
announcement={announcement}
|
|
|
globalOrderData={globalOrderData}
|
|
|
iconAll={iconAll}
|
|
|
instalmentStatus={instalmentStatus}
|
|
|
mineResource={mineResource}
|
|
|
|
|
|
onPressItem={this._onPressItem}
|
|
|
onPressProductListProduct={this._onPressProductListProduct}
|
|
|
onMineCenterRefresh={this._onMineCenterRefresh}
|
|
|
getProductListForMineCenter={this.props.actions.getProductListForMineCenter}
|
|
|
onLongPressProduct={this._onLongPressProduct}
|
|
|
onPressFindSimilar={this._onPressFindSimilar}
|
|
|
onPressFloorItem={this._onPressFloorItem}
|
|
|
showSimilarGuider={showSimilarGuider}
|
|
|
/>
|
|
|
</View>
|
|
|
|
|
|
);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
let {width, height} = Dimensions.get('window');
|
|
|
|
|
|
let styles = StyleSheet.create({
|
|
|
container: {
|
|
|
flex: 1,
|
|
|
width,
|
|
|
height: height - 49
|
|
|
},
|
|
|
|
|
|
});
|
...
|
...
|
|