I think you do not need to use the interactive router on this page.
You must monitor the status (active / inactive, 1,2,3, the following) using a gearbox, as shown below:
case NEXT_PAGE: return {...state, list:[{active:0, ...others},{active:1, ...others},...], page: 1};
And you can get the data that you want to display on this page from the props.
mapStateToProps(state) { return { list: state.xxx.list, currentPage: state.xxx.page totalPage: state.xxx.total } }
source share