From c08e593f4b8a58eae72a597e91955a2f8f9802f7 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 16 Jan 2023 09:27:28 +0800
Subject: [PATCH] 户籍人口柱状图弹窗添加姓名和电话两个搜索条件
---
src/api/dept/index.js | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/api/dept/index.js b/src/api/dept/index.js
index 13a7d7f..c690a32 100644
--- a/src/api/dept/index.js
+++ b/src/api/dept/index.js
@@ -230,14 +230,16 @@
}
// 获取该责任区下的人员列表信息
-export const getAreaPage = (current, size, areaId) => {
+export const getAreaPage = (current, size, areaId,policeName,phone) => {
return request({
url: `/api/policeStationInfo/policeStationInfo/getAreaPage`,
method: 'get',
params: {
current,
size,
- areaId
+ areaId,
+ policeName,
+ phone
}
})
}
--
Gitblit v1.9.3