|
|
|
@ -25,9 +25,7 @@ if (isDev) {
|
|
|
|
|
if (_search) {
|
|
|
|
|
parsed = queryString.parse(_search);
|
|
|
|
|
}
|
|
|
|
|
debugType = window.location.search.indexOf('debug=t') != -1 ? 'teacher' :
|
|
|
|
|
window.location.search.indexOf('debug=s') != -1 ? 'student' :
|
|
|
|
|
window.location.search.indexOf('debug=a') != -1 ? 'admin' : parsed.debug || ''
|
|
|
|
|
debugType = window.location.search.indexOf('debug=t') != -1 ? "cxt" : ''
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window._debugType = debugType;
|
|
|
|
@ -144,6 +142,7 @@ export function initAxiosInterceptors(props) {
|
|
|
|
|
// }
|
|
|
|
|
if (response.data.status === 403) {
|
|
|
|
|
// props.history.replace('/403')
|
|
|
|
|
debugger
|
|
|
|
|
// 这里会分2个情况,1、刚进入页面发请求返回的403;2、进入页面后,其他用户操作触发请求返回的403;
|
|
|
|
|
// TODO 这里做一个403弹框比较好?
|
|
|
|
|
locationurl('/403');
|
|
|
|
|