办事指南

This commit is contained in:
花有清香月有阴
2022-02-16 10:23:36 +08:00
parent 6620540f62
commit 66844a46d8
3 changed files with 224 additions and 0 deletions

View File

@@ -0,0 +1,112 @@
<template>
<div class="progressNew">
<div class="items" @click="goList(0)">
<div class="tops">
<span class="titles">民政类</span>
<u-icon name="arrow-right"></u-icon>
</div>
<div class="bottoms">低保医疗救助大病救助临时救助低保医疗救助大病救助临时救助</div>
</div>
<div class="items" @click="goList(1)">
<div class="tops">
<span class="titles">劳动保障类</span>
<u-icon name="arrow-right"></u-icon>
</div>
<div class="bottoms">养老保险社保补贴就业创业登记证</div>
</div>
<div class="items" @click="goList(2)">
<div class="tops">
<span class="titles">计划生育类</span>
<u-icon name="arrow-right"></u-icon>
</div>
<div class="bottoms">生育登记独生子女扶助生育抚恤金</div>
</div>
<div class="items" @click="goList(3)">
<div class="tops">
<span class="titles">残疾类</span>
<u-icon name="arrow-right"></u-icon>
</div>
<div class="bottoms">残疾证办理困难生活补贴燃油补贴</div>
</div>
</div>
</template>
<script>
export default {
name: 'AppProgressNew',
appName: '办事指南-新',
components: {},
props: {},
data() {
return {
list: [],
}
},
computed: {},
watch: {},
onLoad() {
this.getList()
},
onShow() {},
methods: {
getList() {
this.$instance
.post('/app/appconvenientaddressbook/list', null, {
params: {
size: 999,
},
})
.then((res) => {
if (res.code == 0) {
this.list = res.data.records
}
})
},
goList(index) {
this.$linkTo(`./list?index=${index}`)
},
},
}
</script>
<style scoped lang="scss">
.progressNew {
height: 100%;
padding: 0 32px;
.items {
padding: 0 32px;
background: #fff;
margin-top: 24px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.02);
border-radius: 8px;
.tops {
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: inset 0px -1px 0px 0px #eeeeee;
.titles {
padding: 32px 0 30px 0;
font-size: 36px;
font-weight: 500;
}
}
.bottoms {
font-size: 28px;
color: #666666;
padding: 16px 0 32px 0;
}
}
}
</style>

View File

@@ -0,0 +1,59 @@
<template>
<div class="details">
<div class="titles">城乡居民最低生活保障待遇</div>
<div class="types">民政类</div>
<div class="conts">
为了推进我村民主法治建设维护社会稳定促进经济发展规范村民清洁乡村卫生行为改善村容村貌推进生态乡村建设树立良好的民风村风创造安居乐业的社会环境经全体村民代表讨论通过制定本村规民约 社会治安 1.村民要学法知法守法自觉维护法律尊严积极同一切违法犯罪行为作斗争 2.村民之间应团结友爱和睦相处不打架斗殴不酗酒滋事严禁侮辱诽谤他人严禁造谣惑众拨弄是非 3自觉维护社会秩序和公共安全不扰乱公共秩序不阻碍公务人员执行公务消防安全违反上述规定的给予批评教育公开检讨书情节严重的交上级有关部门或提交司法处理为了推进我村民主法治建设维护社会稳定促进经济发展规范村民清洁乡村卫生行为改善村容村貌推进生态乡村建设树立良好的民风村风创造安居乐业的社会环境经全体村民代表讨论通过制定本村规民约 社会治安
1.村民要学法知法守法自觉维护法律尊严积极同一切违法犯罪行为作斗争 2.村民之间应团结友爱和睦相处不打架斗殴不酗酒滋事严禁侮辱诽谤他人严禁造谣惑众拨弄是非 3自觉维护社会秩序和公共安全不扰乱公共秩序不阻碍公务人员执行公务消防安全违反上述规定的给予批评教育公开检讨书情节严重的交上级有关部门或提交司法处理
</div>
</div>
</template>
<script>
export default {
name: 'detail',
components: {},
props: {},
data() {
return {}
},
computed: {},
watch: {},
onLoad() {
this.getDetail()
},
onShow() {},
methods: {
getDetail() {
var ids = 'f16e54058cab4099bf3ee6e03e750b93'
this.$instance.post(`/app/appvillageactivityinfo/queryDetailById?id=${ids}`).then((res) => {
if (res.code == 0) {
this.detail = res.data
}
})
},
},
}
</script>
<style scoped lang="scss">
.details {
padding: 32px 32px 48px 32px;
.titles {
font-size: 48px;
font-weight: 600;
}
.types {
margin-top: 16px;
font-size: 30px;
color: #999999;
}
.conts {
margin-top: 64px;
font-size: 36px;
line-height: 1.7;
}
}
</style>

View File

@@ -0,0 +1,53 @@
<template>
<div class="lists">
<div class="conts" @click="goDetail(0)">城乡居民最低生活保障待遇</div>
<div class="conts">城乡居民医疗救助</div>
<div class="conts">城市居民大病救助</div>
<div class="conts">临时救助</div>
<div class="conts">困境儿童申报</div>
<div class="conts">孤儿申报</div>
</div>
</template>
<script>
export default {
name: 'list',
components: {},
props: {},
data() {
return {
id: '',
detail: [],
}
},
computed: {},
watch: {},
onLoad() {},
onShow() {},
methods: {
goDetail(indexs) {
this.$linkTo(`./detail?index=${indexs}`)
},
},
}
</script>
<style scoped lang="scss">
.lists {
height: 100%;
padding: 0 32px;
.conts {
background: #ffffff;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.02);
border-radius: 8px;
padding: 34px 32px;
font-size: 32px;
margin-top: 24px;
}
}
</style>