diff --git a/src/api/system/followupstatistics.js b/src/api/system/followupstatistics.js
new file mode 100644
index 0000000..5bc08a3
--- /dev/null
+++ b/src/api/system/followupstatistics.js
@@ -0,0 +1,19 @@
+import request from '@/utils/request'
+
+// 随访明细表查询
+export function getFollowUpDetail(query) {
+ return request({
+ url: '/system/statistics/getFollowUpDetail',
+ method: 'get',
+ params: query
+ })
+}
+
+// 随访成功率统计
+export function getFollowUpRate(query) {
+ return request({
+ url: `/system/statistics/getFollowUpRate`,
+ method: 'get',
+ params: query
+ })
+}
diff --git a/src/views/system/followupstatistics/index.vue b/src/views/system/followupstatistics/index.vue
index a33accd..d1921c1 100644
--- a/src/views/system/followupstatistics/index.vue
+++ b/src/views/system/followupstatistics/index.vue
@@ -40,7 +40,7 @@