|
@@ -71,7 +71,7 @@ service.interceptors.response.use(
|
|
|
return new Promise((resolve, reject) => {
|
|
|
allowList.forEach(item => {
|
|
|
console.log(res.config.url)
|
|
|
- if (res.config.url === item) {
|
|
|
+ if (res.config.url.includes(item)) {
|
|
|
// resolve(res.data)
|
|
|
const content = res.data
|
|
|
const blob = new Blob([content])
|