|
@@ -1485,8 +1485,7 @@ class APIMgr():
|
|
|
response =self.s.post(f"{cfg.target_host}/front/wx_dataExport/searchExport",headers = headers ,params =params)
|
|
|
return response
|
|
|
|
|
|
- # pc/微信招标采购搜索-数据导出
|
|
|
-
|
|
|
+ # app招标采购搜索-数据导出
|
|
|
def app_searchExport(self):
|
|
|
headers = GSTORE['headers']
|
|
|
params = {
|
|
@@ -1654,6 +1653,14 @@ class APIMgr():
|
|
|
response = self.s.post(f"{cfg.target_host_app}/jyapi/jybx/core/mobileHotWord", headers=headers)
|
|
|
return response
|
|
|
|
|
|
+ def get_CompanyType(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ json = {
|
|
|
+ "companyName":"卢雯娜测试企业"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/biService/getCompanyType",headers = headers ,json = json)
|
|
|
+ return response
|
|
|
+
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|