|
|
|
@ -13,13 +13,15 @@ |
|
|
|
</el-select> |
|
|
|
|
|
|
|
<el-select v-model="type2" @change="init" :clearable="true" class="left10"> |
|
|
|
<el-option value="全部">全部</el-option> |
|
|
|
|
|
|
|
<template v-if="listType == '个性需求'"> |
|
|
|
<el-option value="全部">全部</el-option> |
|
|
|
<el-option value="商家支撑">商家支撑</el-option> |
|
|
|
<el-option value="服务支撑">服务支撑</el-option> |
|
|
|
<el-option value="政府支撑">政府支撑</el-option> |
|
|
|
</template> |
|
|
|
<template v-if="listType == '共性需求'"> |
|
|
|
<el-option value="全部">全部</el-option> |
|
|
|
<el-option value="社区养老">社区养老</el-option> |
|
|
|
<el-option value="社会保障">社会保障</el-option> |
|
|
|
<el-option value="社区救助">社区救助</el-option> |
|
|
|
@ -201,16 +203,24 @@ export default { |
|
|
|
const end_date = searchDate[1]; |
|
|
|
this.loading = true; |
|
|
|
const url = 'need_list'; |
|
|
|
let parent_support_type_code="" |
|
|
|
if(listType=="个性需求") |
|
|
|
{ |
|
|
|
parent_support_type_code="user_demand" |
|
|
|
}else{ |
|
|
|
parent_support_type_code="common_demand" |
|
|
|
} |
|
|
|
const { data, code, msg } = await requestPostBi( |
|
|
|
url, |
|
|
|
{ |
|
|
|
queryParam: { |
|
|
|
org_id, |
|
|
|
parent_support_type_code:parent_support_type_code, |
|
|
|
type: this.type2, |
|
|
|
page_num, |
|
|
|
page_size, |
|
|
|
start_date, |
|
|
|
end_date |
|
|
|
end_datem |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
@ -260,12 +270,20 @@ export default { |
|
|
|
const start_date = searchDate[0]; |
|
|
|
const end_date = searchDate[1]; |
|
|
|
const url = 'need_list_num'; |
|
|
|
let parent_support_type_code="" |
|
|
|
if(listType=="个性需求") |
|
|
|
{ |
|
|
|
parent_support_type_code="user_demand" |
|
|
|
}else{ |
|
|
|
parent_support_type_code="common_demand" |
|
|
|
} |
|
|
|
|
|
|
|
const { data, code, msg } = await requestPostBi( |
|
|
|
url, |
|
|
|
{ |
|
|
|
queryParam: { |
|
|
|
org_id, |
|
|
|
parent_support_type_code:parent_support_type_code, |
|
|
|
type: this.type2, |
|
|
|
start_date, |
|
|
|
end_date |
|
|
|
|