|
|
|
@ -67,7 +67,7 @@ function baseRequest(url, method, data, { |
|
|
|
|
header: header, |
|
|
|
|
data: data || {}, |
|
|
|
|
success: (res) => { |
|
|
|
|
|
|
|
|
|
console.log(res); |
|
|
|
|
if (res.data.data && res.data.gzde === 1) { |
|
|
|
|
try{ |
|
|
|
|
res.data.data = JSON.parse(decompress(res.data.data)); |
|
|
|
@ -107,6 +107,7 @@ function baseRequest(url, method, data, { |
|
|
|
|
} else if(res.data.status == 403){ |
|
|
|
|
reject(res.data); |
|
|
|
|
} else |
|
|
|
|
console.log(res.data.msg) |
|
|
|
|
reject(res.data.msg || '系统错误'); |
|
|
|
|
}, |
|
|
|
|
fail: (msg) => { |
|
|
|
|