|
@@ -1702,6 +1702,14 @@ class APIMgr():
|
|
|
}
|
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/jybx/core/mType/searchList", headers=headers, json=json)
|
|
|
return response
|
|
|
+ #项目信息-获取投标状态信息
|
|
|
+ def participate_content(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ json = {
|
|
|
+ "sid": "ABCY2FeYzwOMDk6Enxoc08ODCQ4FRFjYXtkPx4ZJi4eYGpzfAlUCWc%3D"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/jybx/core/participate/content",headers = headers ,json = json)
|
|
|
+ return response
|
|
|
|
|
|
|
|
|
|