feat: 添加项目逻辑

This commit is contained in:
wenbo.dong 2017-07-18 10:56:03 +08:00
parent 3e2e489e66
commit 1337ca675f
5 changed files with 37 additions and 11 deletions

View File

@ -1,11 +1,13 @@
import LoginRedux from './reducer/Login/Login_redux.js'
import login from './reducer/Login/login.js'
import group from './reducer/group/group.js'
import project from './reducer/group/project.js'
import Interface from './reducer/Interface/InterfaceReducer.js'
export default {
group,
login,
LoginRedux,
Interface
Interface,
project
}

View File

@ -8,14 +8,18 @@ const cookies = new Cookies();
const loginActions = (data) => {
return (dispatch) => {
axios.get('/user/login', data).then((res) => {
cookies.set(data.email, data.password);
dispatch({
type: LOGIN,
payload: {
data: res
}
});
axios.post('/user/login', data).then((res) => {
if (res.data.data.errcode === 0) {
cookies.set(data.email, data.password);
dispatch({
type: LOGIN,
payload: {
data: res
}
});
} else {
console.log('登录失败');
}
}).catch((err) => {
console.log(err);
});
@ -30,7 +34,7 @@ const regActions = (data) => {
username: data.userName
}
return () => {
axios.get('/user/login', param).then((res) => {
axios.post('/user/login', param).then((res) => {
console.log(res);
}).catch((err) => {
console.log(err);

View File

@ -15,7 +15,7 @@ const addProject = (data) => {
return {
type: PROJECT_ADD,
// payload 可以返回 Promise异步请求使用 axios 即可
payload: axios.get('/project/add', param)
payload: axios.post('/project/add', param)
}
}

View File

@ -13,6 +13,7 @@ const initialState = {
export default (state = initialState, action) => {
switch (action.type) {
case LOGIN: {
console.log(action);
return {
...state,
isLogin: true,

View File

@ -0,0 +1,19 @@
import {
PROJECT_ADD
} from '../../constants/action-types';
const initialState = {
groupList: [],
currGroup: 'MFE'
};
export default (state = initialState, action) => {
switch (action.type) {
case PROJECT_ADD: {
console.log(action.payload);
return state;
}
default:
return state;
}
};