Initial commit: new history

This commit is contained in:
king
2025-06-30 21:59:46 +08:00
commit cd32a8c7e5
1945 changed files with 111356 additions and 0 deletions

View File

@ -0,0 +1,17 @@
/**
* 汇付天下
* 2024-08-12 19:00:37
*/
const url = $request.url;
if (!$response.body) $done({});
let obj = JSON.parse($response.body);
if (url.includes("api/miniapp/popular/T_MINIAPP")) {
delete obj.data;
}
if (url.includes("/api/tactics/ad")) {
obj.data.splice(0, 3);
}
$done({body: JSON.stringify(obj)});