mirror of
				https://github.com/shufflewzc/faker3.git
				synced 2025-11-01 01:42:00 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			930 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			930 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const {Env} = require('./magic');
 | |
| const $ = new Env('MTest');
 | |
| 
 | |
| $.logic = async function () {
 | |
|     let activityContent = {
 | |
|         "result": true,
 | |
|         "data": {
 | |
|             "id": "173f89d8cc6d413e81a357b07137d56d",
 | |
|             "userId": 197936,
 | |
|             "venderType": 0,
 | |
|             "endTime": 1649381820000,
 | |
|             "list": [{
 | |
|                 "type": "dq",
 | |
|                 "takeNum": null,
 | |
|                 "discount": "20",
 | |
|                 "quota": "499"
 | |
|             }],
 | |
|             "hasFollow": false,
 | |
|             "openCard": false,
 | |
|             "shopMember": false,
 | |
|             "shopgiftActivity": null
 | |
|         },
 | |
|         "count": 0,
 | |
|         "errorMessage": ""
 | |
|     }
 | |
|     $.content = activityContent.data.list
 | |
|     let ts = $.content.filter(o => ['jd', 'jf'].includes(o.type));
 | |
|     if (ts.length === 0) {
 | |
|         $.putMsg(`不是豆子或积分不跑`);
 | |
|     }
 | |
| 
 | |
| };
 | |
| $.run({whitelist: [1]})
 | |
| .catch(reason => $.log(reason));
 |