mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
add: 处理sonar提示的语法错误
This commit is contained in:
parent
a2ac115c98
commit
68828ebd3b
@ -23,14 +23,14 @@ class Login extends Component {
|
||||
<Form onSubmit={this.handleSubmit} className="login-form">
|
||||
<FormItem>
|
||||
{getFieldDecorator('userName', {
|
||||
rules: [{ required: true, message: '请输入用户名!' }],
|
||||
rules: [{ required: true, message: '请输入用户名!' }]
|
||||
})(
|
||||
<Input prefix={<Icon type="user" style={{ fontSize: 13 }} />} placeholder="Username" />
|
||||
)}
|
||||
</FormItem>
|
||||
<FormItem>
|
||||
{getFieldDecorator('password', {
|
||||
rules: [{ required: true, message: '请输入密码!' }],
|
||||
rules: [{ required: true, message: '请输入密码!' }]
|
||||
})(
|
||||
<Input prefix={<Icon type="lock" style={{ fontSize: 13 }} />} type="password" placeholder="Password" />
|
||||
)}
|
||||
@ -38,7 +38,7 @@ class Login extends Component {
|
||||
<FormItem>
|
||||
{getFieldDecorator('remember', {
|
||||
valuePropName: 'checked',
|
||||
initialValue: true,
|
||||
initialValue: true
|
||||
})(
|
||||
<Checkbox>记住密码</Checkbox>
|
||||
)}
|
||||
|
@ -8,7 +8,7 @@ const increaseAction = { type: 'increase' }
|
||||
|
||||
function mapStateToProps(state) {
|
||||
return {
|
||||
per: '测试数据',
|
||||
per: '测试数据'
|
||||
}
|
||||
}
|
||||
|
||||
@ -24,4 +24,3 @@ const App = connect(
|
||||
)(Login)
|
||||
|
||||
export default App
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user