mirror of
https://github.com/fmz200/wool_scripts.git
synced 2025-12-19 13:41:18 +08:00
Initial commit: new history
This commit is contained in:
14
Scripts/meituan/meituanV3.js
Normal file
14
Scripts/meituan/meituanV3.js
Normal file
File diff suppressed because one or more lines are too long
18
Scripts/meituan/meituan_ads.js
Normal file
18
Scripts/meituan/meituan_ads.js
Normal file
@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @author fmz200
|
||||
* @function 美团去广告和多余模块 测试
|
||||
* @date 2024-02-22 20:20:13
|
||||
*/
|
||||
|
||||
let requestUrl = $request.url;
|
||||
let responseBody = $response.body;
|
||||
|
||||
let obj = JSON.parse(responseBody);
|
||||
|
||||
// https://ordercenter.meituan.com/ordercenter/user/showOrderDetail url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/meituan/meituan_ads.js
|
||||
if (requestUrl.includes("/ordercenter/user/showOrderDetail")) {
|
||||
obj.data.partnerData.poiStatus = 0;
|
||||
console.log('设置poiStatus为0💕');
|
||||
}
|
||||
|
||||
$done({body: JSON.stringify(obj)});
|
||||
Reference in New Issue
Block a user