1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-05 19:41:51 +08:00

fix post bug

This commit is contained in:
Pan 2017-05-10 15:47:53 +08:00
parent d5b660681a
commit 92f55b093f
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ export function loginByEmail(email, password) {
return fetch({
url: '/login/loginbyemail',
method: 'post',
params: data
data
});
}

View File

@ -25,7 +25,7 @@ const userMap = {
export default {
loginByEmail: config => {
const { email } = config.params;
const { email } = JSON.parse(config.data);
return new Promise((resolve, reject) => {
if (userMap[email.split('@')[0]]) {
setTimeout(() => {