update:打开新页面改为页面内跳转

This commit is contained in:
2021-01-24 17:33:18 +08:00
parent 08f62e3d8c
commit c7cfd3354e

View File

@@ -128,7 +128,8 @@ export default {
applyId: this.currentApplyId applyId: this.currentApplyId
}); });
if (res.errorCode == 0) { if (res.errorCode == 0) {
window.open(res.data); // window.open(res.data);
location.href = res.data;
} else { } else {
message.error(res.errorMsg); message.error(res.errorMsg);
} }