|
@@ -51,12 +51,12 @@ export default class VideoCreatePage extends PureComponent {
|
|
|
e.preventDefault();
|
|
|
this.props.form.validateFieldsAndScroll((err, values) => {
|
|
|
if (!err) {
|
|
|
- const { UIParams, Queryers } = this.props.location.state || {};
|
|
|
+ const { UIParams, Queryers, rid } = this.props.location.state || {};
|
|
|
const matchId = this.isEdit();
|
|
|
if (matchId) {
|
|
|
this.props.dispatch({
|
|
|
type: 'resource/updateVideo',
|
|
|
- payload: { id: matchId, status: Hotax.STATUS_NORMAL, ...values },
|
|
|
+ payload: { id: matchId, status: Hotax.STATUS_NORMAL, rid, ...values },
|
|
|
states: { UIParams, Queryers },
|
|
|
});
|
|
|
return;
|