mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-09 05:00:30 +08:00
feat: 取消cookie记录用户密码的操作
This commit is contained in:
parent
e00e6d7975
commit
f28773fe57
@ -5,8 +5,6 @@ import {
|
||||
GET_LOGIN_STATE
|
||||
} from '../constants/action-types.js';
|
||||
import axios from 'axios';
|
||||
import Cookies from 'universal-cookie';
|
||||
const cookies = new Cookies();
|
||||
|
||||
const checkLoginState = () => {
|
||||
return {
|
||||
@ -20,7 +18,6 @@ const loginActions = (data) => {
|
||||
return (dispatch) => {
|
||||
axios.post('/user/login', data).then((res) => {
|
||||
if (res.data.errcode === 0) {
|
||||
cookies.set(data.email, data.password);
|
||||
dispatch({
|
||||
type: LOGIN,
|
||||
payload: {
|
||||
|
@ -3,8 +3,6 @@ import PropTypes from 'prop-types';
|
||||
import { connect } from 'react-redux';
|
||||
import { Form, Button, Input, Icon, Checkbox } from 'antd';
|
||||
import { loginActions } from '../../actions/login';
|
||||
import Cookies from 'universal-cookie';
|
||||
const cookies = new Cookies();
|
||||
const FormItem = Form.Item;
|
||||
@connect(
|
||||
state => {
|
||||
@ -37,14 +35,6 @@ class Login extends Component {
|
||||
});
|
||||
}
|
||||
|
||||
handleChange = (value) => {
|
||||
if (cookies.get(value)) {
|
||||
this.props.form.setFieldsValue({
|
||||
password: cookies.get(value)
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
const { getFieldDecorator } = this.props.form;
|
||||
const that = this;
|
||||
@ -54,10 +44,7 @@ class Login extends Component {
|
||||
{/* 用户名 (Email) */}
|
||||
<FormItem>
|
||||
{getFieldDecorator('email', {
|
||||
rules: [{ required: true, message: '请输入email!' }],
|
||||
onChange(e) {
|
||||
that.handleChange(e.target.value);
|
||||
}
|
||||
rules: [{ required: true, message: '请输入email!' }]
|
||||
})(
|
||||
<Input prefix={<Icon type="user" style={{ fontSize: 13 }} />} placeholder="Email" />
|
||||
)}
|
||||
@ -78,14 +65,6 @@ class Login extends Component {
|
||||
<Button type="primary" htmlType="submit" className="login-form-button">登录</Button>
|
||||
</FormItem>
|
||||
|
||||
{/* 记住密码 */}
|
||||
{getFieldDecorator('remember', {
|
||||
valuePropName: 'checked',
|
||||
initialValue: true
|
||||
})(
|
||||
<Checkbox>记住密码</Checkbox>
|
||||
)}
|
||||
|
||||
</Form>
|
||||
)
|
||||
}
|
||||
|
@ -3,8 +3,6 @@ import PropTypes from 'prop-types';
|
||||
import { connect } from 'react-redux';
|
||||
import { Form, Button, Input, Icon, Checkbox } from 'antd';
|
||||
import { loginActions } from '../../actions/login';
|
||||
import Cookies from 'universal-cookie';
|
||||
const cookies = new Cookies();
|
||||
const FormItem = Form.Item;
|
||||
@connect(
|
||||
state => {
|
||||
@ -37,14 +35,6 @@ class Login extends Component {
|
||||
});
|
||||
}
|
||||
|
||||
handleChange = (value) => {
|
||||
if (cookies.get(value)) {
|
||||
this.props.form.setFieldsValue({
|
||||
password: cookies.get(value)
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
const { getFieldDecorator } = this.props.form;
|
||||
const that = this;
|
||||
@ -54,10 +44,7 @@ class Login extends Component {
|
||||
{/* 用户名 (Email) */}
|
||||
<FormItem>
|
||||
{getFieldDecorator('email', {
|
||||
rules: [{ required: true, message: '请输入email!' }],
|
||||
onChange(e) {
|
||||
that.handleChange(e.target.value);
|
||||
}
|
||||
rules: [{ required: true, message: '请输入email!' }]
|
||||
})(
|
||||
<Input prefix={<Icon type="user" style={{ fontSize: 13 }} />} placeholder="Email" />
|
||||
)}
|
||||
@ -78,14 +65,6 @@ class Login extends Component {
|
||||
<Button type="primary" htmlType="submit" className="login-form-button">登录</Button>
|
||||
</FormItem>
|
||||
|
||||
{/* 记住密码 */}
|
||||
{getFieldDecorator('remember', {
|
||||
valuePropName: 'checked',
|
||||
initialValue: true
|
||||
})(
|
||||
<Checkbox>记住密码</Checkbox>
|
||||
)}
|
||||
|
||||
</Form>
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user