...
|
...
|
@@ -48,25 +48,25 @@ class InstallmentMyCardContainer extends Component { |
|
|
componentDidMount() {
|
|
|
}
|
|
|
|
|
|
_reloadPage() {
|
|
|
let {installmentStausPageInfo} = this.props.installment;
|
|
|
let {originalParams} = installmentStausPageInfo;
|
|
|
this.props.actions.setError(null);
|
|
|
this.props.actions.setInstallmentStausPageParams(originalParams.statusCode, originalParams.failReason, originalParams.uid);
|
|
|
}
|
|
|
|
|
|
_onPressStatusPageBtn() {
|
|
|
renderRow() {
|
|
|
this.props.actions.onPressStatusPageBtn();
|
|
|
}
|
|
|
|
|
|
render() {
|
|
|
let {installmentStausPageInfo} = this.props.installment;
|
|
|
|
|
|
let cardList = ['11','22'];
|
|
|
|
|
|
|
|
|
return (
|
|
|
<InstallmentStatus
|
|
|
installmentStausPageInfo={installmentStausPageInfo}
|
|
|
onPressStatusPageBtn={this._onPressStatusPageBtn}
|
|
|
/>
|
|
|
<View style={styles.container}>
|
|
|
<ListView
|
|
|
style={styles.container}
|
|
|
dataSource={this.dataSource.cloneWithRows(cardList)}
|
|
|
enableEmptySections={true}
|
|
|
renderRow={this.renderRow}
|
|
|
/>
|
|
|
</View>
|
|
|
);
|
|
|
}
|
|
|
}
|
...
|
...
|
|