提交 3f483efa authored 作者: 钟是志's avatar 钟是志

接口修改

上级 bcc917a9
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* 更详细的 api 文档: https://github.com/umijs/umi-request * 更详细的 api 文档: https://github.com/umijs/umi-request
*/ */
import { extend } from 'umi-request'; import { extend } from 'umi-request';
import { notification } from 'antd'; import { notification, message } from 'antd';
import { getToken } from './token'; import { getToken } from './token';
import { import {
queryApiActionPath, queryApiActionPath,
...@@ -358,6 +358,16 @@ export const getUiaRequest = (data) => { ...@@ -358,6 +358,16 @@ export const getUiaRequest = (data) => {
body: objectToFormData(data), body: objectToFormData(data),
}).then(response => { }).then(response => {
return response.json(); return response.json();
}).then((g) => {
if(g && g.access_token){
g.token = g.access_token;
return g;
}else{
if(g && g.message){
message.warn(g.message);
}
return false;
}
}) })
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论