cloud-web-corejs 1.0.54-dev.514 → 1.0.54-dev.515
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -411,12 +411,13 @@ export default {
|
|
|
411
411
|
isLoading: true,
|
|
412
412
|
success: (res) => {
|
|
413
413
|
path = res.objx;
|
|
414
|
+
window.open(path);
|
|
414
415
|
},
|
|
415
416
|
});
|
|
416
417
|
} else if (path.indexOf("token={token}") >= 0) {
|
|
417
418
|
path = path.replace("token={token}", "token=" + getToken());
|
|
419
|
+
window.open(path);
|
|
418
420
|
}
|
|
419
|
-
window.open(path);
|
|
420
421
|
}
|
|
421
422
|
},
|
|
422
423
|
getCustomReqUrlAndCleanUrl(url) {
|