From 3cc4abeb92d11d7a8b365928c5aa9452679fe06c Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: 星期一, 19 八月 2024 09:04:50 +0800
Subject: [PATCH] 责任人增加筛选条件

---
 src/api/list.js |   31 ++++++++++++++++++++++++++++++-
 1 files changed, 30 insertions(+), 1 deletions(-)

diff --git a/src/api/list.js b/src/api/list.js
index 5de5cff..b1d77e6 100644
--- a/src/api/list.js
+++ b/src/api/list.js
@@ -53,7 +53,36 @@
     })
 }
 
+// 根据id获取叫应信息
+export function getResponseById(data){
+    return request({
+        url: '/published/warninfo/responses/page',
+        method: 'post',
+        data: data
+    })
+}
 
+// 删除文件
+export function deleteFile(id){
+    return request({
+        url: '/attachment/delete/' + id,
+        method: 'get'
+    })
+}
 
+// 获取30天总体用量
+export function getTotalStatistics(){
+    return request({
+        url: '/statistics/sms/countByTime',
+        method: 'get'
+    })
+}
 
-
+// 获取各地总体用量
+export function getTotalStatisticsByArea(data){
+    return request({
+        url: '/statistics/sms/count',
+        method: 'post',
+        data: data
+    })
+}
\ No newline at end of file

--
Gitblit v1.9.2