1
0
mirror of https://github.com/ZeroCatDev/Classworks.git synced 2026-02-03 23:23:09 +00:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Sunwuyuan
2f02dd951f 更改examaware协议URL参数,从'file'改为'data' 2026-02-01 09:28:23 +00:00
Sunwuyuan
67a46797e0
Change URL parameter from 'data' to 'file' 2026-02-01 14:59:41 +08:00

View File

@ -1867,7 +1867,7 @@ export default {
const base64Data = btoa(unescape(encodeURIComponent(jsonString)));
// examaware://URL
const ea2Url = `examaware://player?data=${base64Data}`;
const ea2Url = `examaware://player?data=${encodeURIComponent(base64Data)}`;
//
window.location.href = ea2Url;