|
@@ -418,6 +418,23 @@ class APIMgr():
|
|
|
response = s.post(f"{cfg.target_host}/subscribepay/dataExportPack/recordList", headers=hearders, params=params)
|
|
|
return response
|
|
|
|
|
|
+ """数据导出-超出2w条,点击不在提示"""
|
|
|
+ def Export_prompt(self):
|
|
|
+ hearders = GSTORE['headers']
|
|
|
+ s = GSTORE['s']
|
|
|
+ params={
|
|
|
+ "status": 1
|
|
|
+ }
|
|
|
+ response = s.post(f"{cfg.target_host}/front/dataExport/setDontPromptAgain", headers=hearders, params=params)
|
|
|
+ return response
|
|
|
+
|
|
|
+ """数据导出-判断是否展示弹框"""
|
|
|
+ def Export_frame(self):
|
|
|
+ hearders = GSTORE['headers']
|
|
|
+ s = GSTORE['s']
|
|
|
+ response = s.post(f"{cfg.target_host}/front/dataExport/getDontPromptAgain", headers=hearders)
|
|
|
+ return response
|
|
|
+
|
|
|
"""剑鱼文库搜索"""
|
|
|
def Library_search(self,keyWord='数据'):
|
|
|
hearders = GSTORE['headers']
|