|
@@ -1710,6 +1710,14 @@ class APIMgr():
|
|
|
}
|
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/jybx/core/participate/content",headers = headers ,json = json)
|
|
|
return response
|
|
|
+ #项目信息-详情页参标信息接口
|
|
|
+ def participate_info(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ json = {
|
|
|
+ "sid": "ABCY2FeYzwOMDk6Enxoc08ODCQ4FRFjYXtkPx4ZJi4eYGpzfAlUCWc%3D"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/jybx/core/participate/info",headers = headers , json = json)
|
|
|
+ return response
|
|
|
|
|
|
|
|
|
|