|
@@ -1435,12 +1435,18 @@ class APIMgr():
|
|
|
response = self.s.post(f"{cfg.target_host}/front/wx_dataExport/searchExport", headers=hearders,data=data)
|
|
|
return response
|
|
|
|
|
|
-#我认领的经销商
|
|
|
+#医械通我认领的经销商
|
|
|
def distributor(self):
|
|
|
header = GSTORE['headers']
|
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/domain/claim/distributor",headers=header)
|
|
|
return response
|
|
|
|
|
|
+#医械通获取用户认证信息
|
|
|
+ def userauthInfo(self):
|
|
|
+ header = GSTORE['headers']
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/domain/userAuthInfo",headers=header)
|
|
|
+ return response
|
|
|
+
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|