Files
dvcp_v2_wechat_app/src/mods/work/AppHelpDeclaration/AppHelpDeclaration.vue
shijingjing 973b3b71a8 帮扶
2022-05-13 18:07:01 +08:00

123 lines
5.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="AppHelpDeclaration">
<u-navbar title="帮扶申报" title-color="#FFF" title-width="300" title-size="26" :background="backgroundNavbar" back-icon-color="#fff" > </u-navbar>
<div class="title">
<span @click="$linkTo('./progress')">我的申请</span>
</div>
<div class="content">
<div class="type">
<img src="./components/tab.png" alt="">
<div>
以家庭为单位涉及所有农村人口包括脱贫不稳定户边缘易致贫户突发严重困难户重点监测其收入支出状况两不愁三保障及饮水安全状况等重点关注有大病重病和负担较重的慢性病患者重度残疾人失能老年人口等特殊群体的家庭
</div>
</div>
<div class="standard">
<img src="./components/tab.png" alt="">
<div>
1.家庭人均纯收入低于标准 以脱贫攻坚期国家扶贫标准的1.5倍左右6000为底线作为最低收入监测标准2022年起综合物价指数变化农村居民人均可支配收入增幅和农村低保标准等因素每年动态调整实事求是确定监测对象 2.存在返贫致贫风险 1家庭人均纯收入低于6000元依据国家标准变化调整收入来源不稳定且符合财产状况规定的农户 2家庭人均纯收入超过6000元但因学因病因灾因意外事故全年刚性支出超过上年总收入导致基本生活出现严重困难的农户 3主要居住用房为唯一自住用房且安全等级下降为CD级的农户 4因自然灾害水源变化等导致饮水安全得不到有效保障的农户 5其他需要纳入监测范围的情形,主要包括因病因学因残因自然灾害因意外事故因产业项目失败因务工就业不稳缺劳动力等 3.家庭人口判断标准 以家庭为单位居住在同一住宅内常住或者与户主共享开支或收入的成员总数包括由家庭供养的在外学生未分户农村外出从业人员或随迁家属轮流居住的老人因探亲访友等原因临时外出人员不包括不再供养的在外学生已分户子女出嫁人员挂靠人员或寄宿者帮工服刑人员已应征入伍者
</div>
</div>
<div class="case">
<img src="./components/tab.png" alt="">
<div>
有以下情形之一的农户一般不纳入监测对象特殊情况由村民代表大会民主评议根据家庭实际情况及收支状况综合研判经县区研究可纳入监测范围 1银行存款不包括6个月内因病因学等筹集的存款证券基金商业保险债券互联网金融资产等金融资产总额超过当年家庭收入认定标准/×家庭人口×2的计算数额 2居住用房超过1套或家庭成员名下有商品房移民搬迁安置房除外商铺车库出租类不动产等家庭已拥有1套居住用房同时父辈留下祖屋且申请家庭成员不作居住的不认定为超过住房标准 3家庭成员购置5万元以上购车价消费性机动车或大型农机具不包括已损坏废弃车辆和农机具及补偿残疾人身体功能的代步机动车辆4家庭成员或分户子女是农业经营大户或创办经济实体或注册公司且正常经营收入持续稳定的以及长期从事各类工程承包发包等盈利性活动的 4其他不宜纳入情形
</div>
</div>
<div class="btn" @click="$linkTo('./add')">我要发布</div>
</div>
</div>
</template>
<script>
export default {
name: "AppHelpDeclaration",
appName: "帮扶申报",
customNavigation: true,
data() {
return {
backgroundNavbar: {
background: 'url(https://cdn.cunwuyun.cn/tengxun/miniapp/nav.png) no-repeat',
backgroundSize: '100% 100%',
},
}
},
onShow() {
},
methods: {
},
}
</script>
<style lang="scss" scoped>
.AppHelpDeclaration {
background: #006FDE;
padding: 0 0 32px 0;
box-sizing: border-box;
.title {
position: relative;
width: 100%;
height: 304px;
background: url('https://cdn.cunwuyun.cn/tengxun/miniapp/bg.png') no-repeat;
background-size: cover;
span {
position: absolute;
right: 32px;
top: 60px;
padding: 10px 20px;
box-sizing: border-box;
color: #FFF;
background: rgba(0, 72, 213, 0.5);
border-radius: 30px;
border: 1px solid #FFFFFF;
}
}
.type {
margin-top: 62px;
}
.content {
padding: 0 32px;
box-sizing: border-box;
background: #006FDE;
.type,
.standard,
.case {
position: relative;
padding: 62px 32px 32px 32px;
box-sizing: border-box;
background: #FFF;
border-radius: 16px;
margin-bottom: 62px;
img {
width: 320px;
height: 64px;
position: absolute;
top: -30px;
left: 200px;
}
}
.btn {
width: 100%;
height: 88px;
text-align: center;
line-height: 88px;
background: linear-gradient(180deg, #FDFAF4 0%, #E2C8A9 100%);
border-radius: 16px;
color: #BB5634;
font-size: 34px;
}
}
}
</style>