|
@@ -1482,6 +1482,20 @@ class APIMgr():
|
|
|
response =self.s.post(f"{cfg.target_host}/front/wx_dataExport/searchExport",headers = headers ,params =params)
|
|
|
return response
|
|
|
|
|
|
+ # pc/微信招标采购搜索-数据导出
|
|
|
+
|
|
|
+ def app_searchExport(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ params = {
|
|
|
+ "searchvalue": "科技",
|
|
|
+ "additionalWords": "软件",
|
|
|
+ "searchGroup": "0",
|
|
|
+ "searchMode": "0",
|
|
|
+ "wordsMode": "0"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapp/front/dataExport/searchExport", headers=headers, params=params)
|
|
|
+ return response
|
|
|
+
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|