|
@@ -205,6 +205,7 @@ class APIMgr():
|
|
}
|
|
}
|
|
response = s.post(f"{cfg.target_host_wxapi}/debrisproduct/getBiddingDetail", headers=hearders, json=json)
|
|
response = s.post(f"{cfg.target_host_wxapi}/debrisproduct/getBiddingDetail", headers=hearders, json=json)
|
|
return response
|
|
return response
|
|
|
|
+
|
|
#获取订单详情
|
|
#获取订单详情
|
|
def debrisproduct_orderDetail(self, orderCode):
|
|
def debrisproduct_orderDetail(self, orderCode):
|
|
headers = GSTORE['headers']
|
|
headers = GSTORE['headers']
|
|
@@ -227,4 +228,23 @@ class APIMgr():
|
|
data={"orderCode": orderCode}
|
|
data={"orderCode": orderCode}
|
|
)
|
|
)
|
|
|
|
|
|
|
|
+ """情报详情"""
|
|
|
|
+
|
|
|
|
+ def information_details(self):
|
|
|
|
+ hearders = GSTORE['headers']
|
|
|
|
+ s = GSTORE['s']
|
|
|
|
+ json = {
|
|
|
|
+ "id":"61cbb70345a326c6c34a5e0e"
|
|
|
|
+ }
|
|
|
|
+ response = s.post(f"{cfg.target_host_wxapi}/debrisproduct/info/getInfoDetail", headers=hearders, json=json)
|
|
|
|
+ return response
|
|
|
|
+
|
|
|
|
+ """订阅查询"""
|
|
|
|
+
|
|
|
|
+ def subscription_query(self):
|
|
|
|
+ hearders = GSTORE['headers']
|
|
|
|
+ s = GSTORE['s']
|
|
|
|
+ response = s.post(f"{cfg.target_host_wxapi}/debrisproduct/userInfo", headers=hearders)
|
|
|
|
+ return response
|
|
|
|
+
|
|
apimgr = APIMgr()
|
|
apimgr = APIMgr()
|