Commit 887f350f authored by 李纪文's avatar 李纪文

fix: 功能跳转方法

parent 3de2d1f0
...@@ -1890,6 +1890,7 @@ ConfigurationView.defaultProps = { ...@@ -1890,6 +1890,7 @@ ConfigurationView.defaultProps = {
config: {}, config: {},
isZoom: false, isZoom: false,
flowShow: true, flowShow: true,
customBack: () => {},
speed: 0, speed: 0,
play: false, play: false,
times: 2, times: 2,
...@@ -1904,6 +1905,7 @@ ConfigurationView.propTypes = { ...@@ -1904,6 +1905,7 @@ ConfigurationView.propTypes = {
config: PropTypes.object, config: PropTypes.object,
isZoom: PropTypes.bool, isZoom: PropTypes.bool,
flowShow: PropTypes.bool, flowShow: PropTypes.bool,
customBack: PropTypes.func,
speed: PropTypes.number, speed: PropTypes.number,
play: PropTypes.bool, play: PropTypes.bool,
times: PropTypes.number, times: PropTypes.number,
......
...@@ -2412,6 +2412,7 @@ ConfigurationView.defaultProps = { ...@@ -2412,6 +2412,7 @@ ConfigurationView.defaultProps = {
config: {}, config: {},
isZoom: false, isZoom: false,
flowShow: true, flowShow: true,
customBack: () => {},
}; };
ConfigurationView.propTypes = { ConfigurationView.propTypes = {
...@@ -2421,6 +2422,7 @@ ConfigurationView.propTypes = { ...@@ -2421,6 +2422,7 @@ ConfigurationView.propTypes = {
config: PropTypes.object, config: PropTypes.object,
isZoom: PropTypes.bool, isZoom: PropTypes.bool,
flowShow: PropTypes.bool, flowShow: PropTypes.bool,
customBack: PropTypes.func,
}; };
export default ConfigurationView; export default ConfigurationView;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment