|
|
@@ -369,7 +369,8 @@ const utils = {
|
|
|
const data = encodeURIComponent(this.getQueryString("data"));
|
|
|
if (platform == "wcfml") {
|
|
|
// 跳转loading
|
|
|
- this.routeLink("Loading");
|
|
|
+ const query = this.getAllQueryString();
|
|
|
+ this.routeLink("Loading", query);
|
|
|
window.location.href = `${$CONFIG.wcfmlCloseUrl}?uid=${uid}&data=${data}`
|
|
|
return
|
|
|
}
|
|
|
@@ -395,7 +396,8 @@ const utils = {
|
|
|
data: encodeURIComponent(savedata),
|
|
|
});
|
|
|
// 跳转loading
|
|
|
- this.routeLink("Loading");
|
|
|
+ const _query = this.getAllQueryString();
|
|
|
+ this.routeLink("Loading", _query);
|
|
|
|
|
|
window.location.href = `${$CONFIG.wcfmlLoginUrl}?${query}`;
|
|
|
},
|