diff --git a/src/api/manage/crowdInfo.js b/src/api/manage/crowdInfo.js
new file mode 100644
index 0000000..bf72e27
--- /dev/null
+++ b/src/api/manage/crowdInfo.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询人群信息列表
+export function listCrowdInfo(query) {
+ return request({
+ url: '/manage/crowdInfo/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询人群信息详细
+export function getCrowdInfo(id) {
+ return request({
+ url: '/manage/crowdInfo/' + id,
+ method: 'get'
+ })
+}
+
+// 新增人群信息
+export function addCrowdInfo(data) {
+ return request({
+ url: '/manage/crowdInfo',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改人群信息
+export function updateCrowdInfo(data) {
+ return request({
+ url: '/manage/crowdInfo',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除人群信息
+export function delCrowdInfo(id) {
+ return request({
+ url: '/manage/crowdInfo/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/manage/crowdInfo/index.vue b/src/views/manage/crowdInfo/index.vue
new file mode 100644
index 0000000..9a16f16
--- /dev/null
+++ b/src/views/manage/crowdInfo/index.vue
@@ -0,0 +1,542 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.suitableGender == "ALL" ? "全部" : "" }}
+ {{ scope.row.suitableGender == "MALE" ? "男" : "" }}
+ {{ scope.row.suitableGender == "FEMALE" ? "女" : "" }}
+ {{ scope.row.suitableGender == "UNKNOWN" ? "未知" : "" }}
+
+
+
+
+
+ {{ scope.row.crowdType == "DEFAULT" ? "默认" : "" }}
+ {{ scope.row.crowdType == "CHRONIC_DISEASE" ? "慢病" : "" }}
+ {{ scope.row.crowdType == "SPECIAL_POPULATIONS" ? "特殊人群" : "" }}
+ {{ scope.row.crowdType == "KEY_GROUPS" ? "重点人群" : "" }}
+
+
+
+
+ {{ scope.row.specialType == "1" ? "65岁及以上老年人" : "" }}
+ {{ scope.row.specialType == "2" ? "60-64岁老年人" : "" }}
+ {{ scope.row.specialType == "3" ? "60-0-6岁儿童" : "" }}
+ {{ scope.row.specialType == "4" ? "孕产妇" : "" }}
+ {{ scope.row.specialType == "5" ? "残疾人" : "" }}
+ {{ scope.row.specialType == "6" ? "优抚对象" : "" }}
+ {{ scope.row.specialType == "20" ? "高血压" : "" }}
+ {{ scope.row.specialType == "21" ? "二型糖尿病" : "" }}
+ {{ scope.row.specialType == "22" ? "高血压合并糖尿病" : "" }}
+ {{ scope.row.specialType == "23" ? "脑卒中康复期" : "" }}
+ {{ scope.row.specialType == "24" ? "冠心病" : "" }}
+ {{ scope.row.specialType == "40" ? "严重精神障碍" : "" }}
+ {{ scope.row.specialType == "41" ? "结核病" : "" }}
+ {{ scope.row.specialType == "42" ? "肿瘤病" : "" }}
+ {{ scope.row.specialType == "43" ? "贫困人口" : "" }}
+ {{ scope.row.specialType == "44" ? "计划生育特殊家庭" : "" }}
+
+
+
+
+
+ {{ scope.row.whetherDisable == "0" ? "否" : "" }}
+ {{ scope.row.whetherDisable == "1" ? "是" : "" }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/system/agency/index.vue b/src/views/system/agency/index.vue
index e223e01..9fdd99d 100644
--- a/src/views/system/agency/index.vue
+++ b/src/views/system/agency/index.vue
@@ -971,6 +971,7 @@ export default {
{ dangerouslyUseHTMLString: true }
);
this.getList();
+ this.gettreelist()
},
// 文件上传中处理
handleFileUploadProgress(event, file, fileList) {
diff --git a/src/views/system/department/index.vue b/src/views/system/department/index.vue
index 28692a8..5554560 100644
--- a/src/views/system/department/index.vue
+++ b/src/views/system/department/index.vue
@@ -648,6 +648,7 @@ export default {
{ dangerouslyUseHTMLString: true }
);
this.getList();
+ this.gettreelist();
},
// 文件上传中处理
handleFileUploadProgress(event, file, fileList) {