|
@@ -1874,6 +1874,14 @@ class APIMgr():
|
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/jybx/base/included",headers = headers ,json = json)
|
|
|
return response
|
|
|
|
|
|
+ #工作桌面聚合搜索
|
|
|
+ def polymerize_search(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ json = {
|
|
|
+ "searchCode": "建筑工程"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/jybx/core/polymerizeSearch",headers = headers ,json = json)
|
|
|
+ return response
|
|
|
|
|
|
apimgr = APIMgr()
|
|
|
|