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

北电科安全测评修改

上级 56aa4964
...@@ -21,7 +21,7 @@ function getUser() { ...@@ -21,7 +21,7 @@ function getUser() {
} }
function getUrl(smarturl, flag) { function getUrl(smarturl, flag) {
if (flag) { if (flag) {
return config.rapHost + '/' + smarturl; return config.rapHost + '/' + smarturl;
} else { } else {
...@@ -56,7 +56,7 @@ async function POST(url, params, isJson) { ...@@ -56,7 +56,7 @@ async function POST(url, params, isJson) {
} }
async function GET(url, params) { async function GET(url, params) {
let user = getUser() let user = getUser()
if (user != null) { if (user != null) {
params.token = user.token params.token = user.token
...@@ -65,7 +65,9 @@ async function GET(url, params) { ...@@ -65,7 +65,9 @@ async function GET(url, params) {
params.domain = document.domain params.domain = document.domain
return request(getUrl(url, config.rapFlag) + `?${qs.stringify(params)}`, merge({ return request(getUrl(url, config.rapFlag) + `?${qs.stringify(params)}`, merge({
method: 'GET', mode: 'cors', credentials: 'omit', method: 'GET',
mode: 'cors',
credentials: 'include',
}, cookieTrue)); }, cookieTrue));
} }
......
...@@ -46,7 +46,7 @@ function checkStatus(response) { ...@@ -46,7 +46,7 @@ function checkStatus(response) {
export default function request(url, options, config = {enableLoading: true}) { export default function request(url, options, config = {enableLoading: true}) {
const { errorHandle } = config; // 错误弹窗 回调 const { errorHandle } = config; // 错误弹窗 回调
const defaultOptions = { const defaultOptions = {
credentials: 'omit', credentials: 'include',
mode: 'cors', mode: 'cors',
}; };
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论