|
@@ -63,6 +63,8 @@ class DataContainer extends Component { |
|
@@ -63,6 +63,8 @@ class DataContainer extends Component { |
63
|
|
63
|
|
64
|
this._showCheckSettleDialog = this._showCheckSettleDialog.bind(this);
|
64
|
this._showCheckSettleDialog = this._showCheckSettleDialog.bind(this);
|
65
|
this._hiddenCheckSettleDialog = this._hiddenCheckSettleDialog.bind(this);
|
65
|
this._hiddenCheckSettleDialog = this._hiddenCheckSettleDialog.bind(this);
|
|
|
66
|
+
|
|
|
67
|
+ this._jumpWithActivityUrl = this._jumpWithActivityUrl.bind(this);
|
66
|
}
|
68
|
}
|
67
|
|
69
|
|
68
|
componentDidMount() {
|
70
|
componentDidMount() {
|
|
@@ -143,6 +145,11 @@ class DataContainer extends Component { |
|
@@ -143,6 +145,11 @@ class DataContainer extends Component { |
143
|
this.props.actions.getStatisticsInfo(type);
|
145
|
this.props.actions.getStatisticsInfo(type);
|
144
|
}
|
146
|
}
|
145
|
|
147
|
|
|
|
148
|
+ _jumpWithActivityUrl() {
|
|
|
149
|
+ let url = `http://m.yohobuy.com?openby:yohobuy={"action":"go.h5","params":{"title":"提现说明", "url":"https://activity.yoho.cn/feature/3233.html"}}`;
|
|
|
150
|
+ ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
|
|
|
151
|
+ }
|
|
|
152
|
+
|
146
|
_jumpWithUrl(title = '', type = '') {
|
153
|
_jumpWithUrl(title = '', type = '') {
|
147
|
let url = `http://m.yohobuy.com?openby:yohobuy={"action":"go.minealliance","params":{"title":"${title}","type":"${type}"}}`;
|
154
|
let url = `http://m.yohobuy.com?openby:yohobuy={"action":"go.minealliance","params":{"title":"${title}","type":"${type}"}}`;
|
148
|
ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
|
155
|
ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
|
|
@@ -222,6 +229,8 @@ class DataContainer extends Component { |
|
@@ -222,6 +229,8 @@ class DataContainer extends Component { |
222
|
showBindAlertDialog={this._showBindAlertDialog}
|
229
|
showBindAlertDialog={this._showBindAlertDialog}
|
223
|
hiddenBindAlertDialog={this._hiddenBindAlertDialog}
|
230
|
hiddenBindAlertDialog={this._hiddenBindAlertDialog}
|
224
|
refreshIdentityCardInfo={this._refreshIdentityCardInfo}
|
231
|
refreshIdentityCardInfo={this._refreshIdentityCardInfo}
|
|
|
232
|
+
|
|
|
233
|
+ jumpWithActivityUrl={this._jumpWithActivityUrl}
|
225
|
/>
|
234
|
/>
|
226
|
<LoadingIndicator isVisible={isFetching}/>
|
235
|
<LoadingIndicator isVisible={isFetching}/>
|
227
|
</View>
|
236
|
</View>
|