|
@@ -917,6 +917,31 @@ class APIMgr():
|
|
|
}
|
|
|
response = self.s.post(f"{cfg.target_host}/bigmember/analysis/projectName", headers=headers, params=params)
|
|
|
return response
|
|
|
+ #投标决策分析内容
|
|
|
+ def bidding_decision_analysis_content(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ json = {
|
|
|
+ "area": {"北京": []},
|
|
|
+ "buyer": "北京大学",
|
|
|
+ "buyerContent": [
|
|
|
+ {
|
|
|
+ "key": ["设备"],
|
|
|
+ "matchway": 1
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "key": ["多功能投影仪"],
|
|
|
+ "matchway": 1
|
|
|
+ }],
|
|
|
+ "pname": "",
|
|
|
+ "limitTime": "fiveYear",
|
|
|
+ "searchItem": 1,
|
|
|
+ "searchType": 0,
|
|
|
+ "page": 1,
|
|
|
+ "pageSize": 5
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/bigmember/decision/decInfo", headers=headers, json=json)
|
|
|
+ return response
|
|
|
+
|
|
|
|
|
|
apimgr = APIMgr()
|
|
|
|