perf:解密数据后json内容

This commit is contained in:
曾文豪
2023-03-07 10:13:14 +08:00
parent fdb323a1ed
commit fdeaa312c4

View File

@@ -98,6 +98,7 @@ async function req(url, options) {
let data = res.data;
if (res.encrypt) {
data = crypto.decrypt(data);
data = Common.parseJSON(data, data);
}
resolve(data)
} else {