初始化 antd-pro
This commit is contained in:
50
admin-web/src/pages/Exception/TriggerException.js
Normal file
50
admin-web/src/pages/Exception/TriggerException.js
Normal file
@@ -0,0 +1,50 @@
|
||||
import React, { PureComponent } from 'react';
|
||||
import { Button, Spin, Card } from 'antd';
|
||||
import { connect } from 'dva';
|
||||
import styles from './style.less';
|
||||
|
||||
@connect(state => ({
|
||||
isloading: state.error.isloading,
|
||||
}))
|
||||
class TriggerException extends PureComponent {
|
||||
state = {
|
||||
isloading: false,
|
||||
};
|
||||
|
||||
triggerError = code => {
|
||||
this.setState({
|
||||
isloading: true,
|
||||
});
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'error/query',
|
||||
payload: {
|
||||
code,
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
render() {
|
||||
const { isloading } = this.state;
|
||||
return (
|
||||
<Card>
|
||||
<Spin spinning={isloading} wrapperClassName={styles.trigger}>
|
||||
<Button type="danger" onClick={() => this.triggerError(401)}>
|
||||
触发401
|
||||
</Button>
|
||||
<Button type="danger" onClick={() => this.triggerError(403)}>
|
||||
触发403
|
||||
</Button>
|
||||
<Button type="danger" onClick={() => this.triggerError(500)}>
|
||||
触发500
|
||||
</Button>
|
||||
<Button type="danger" onClick={() => this.triggerError(404)}>
|
||||
触发404
|
||||
</Button>
|
||||
</Spin>
|
||||
</Card>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default TriggerException;
|
||||
Reference in New Issue
Block a user