From 170800582ce66c770a56e69f6d8b44c38f0728bf Mon Sep 17 00:00:00 2001
From: 叶松 <2217086471@qq.com>
Date: 星期一, 27 十一月 2023 22:29:21 +0800
Subject: [PATCH] 安全积分超市对接

---
 web/src/api/modules/safety.js |   39 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 39 insertions(+), 0 deletions(-)

diff --git a/web/src/api/modules/safety.js b/web/src/api/modules/safety.js
index ad2c24f..2fa8af7 100644
--- a/web/src/api/modules/safety.js
+++ b/web/src/api/modules/safety.js
@@ -323,4 +323,43 @@
         responseType: 'blob',
         data: params
     }),
+
+  /**
+   * 安全积分超市模块
+   */
+  //查询安全积分超市列表
+	searchMarketLists: (params) =>
+    axios.post('/secure/integralAccount/selectPageList', params),
+  //添加或修改安全积分超市
+  addUpdateMarketInfo: (params) =>
+    axios.post('/secure/integralAccount/insertAndUpdate', params),
+  //删除安全积分超市
+  deleteMarketInfo: (params) =>
+    axios.get('/secure/integralAccount/delete',{params}),
+  //安全积分超市导出
+  exportMarketFiles:params=>
+    axios({
+        method: 'post',
+        url: '/secure/integralAccount/exportList',
+        responseType: 'blob',
+        data: params
+    }),
+  
+  /**
+   * 积分明细模块
+   */
+  //查询积分明细列表
+	searchIntegralLists: (params) =>
+    axios.post('/secure/integralAccount/selectSafeIntegralPageList', params),
+  //查询个人明细列表
+  searchPersonLists: (params) =>
+    axios.post('/secure/integralAccount/selectSafeIntegralInfo', params),
+  //积分明细导出
+  exportIntegralFiles:params=>
+    axios({
+        method: 'post',
+        url: '/secure/integralAccount/exportSafeIntegralInfo',
+        responseType: 'blob',
+        data: params
+    }),
 }
\ No newline at end of file

--
Gitblit v1.9.3