便民服务

This commit is contained in:
shijingjing
2023-03-16 12:00:51 +08:00
parent 14466882a8
commit 8331e08401
2 changed files with 86 additions and 5 deletions

View File

@@ -1,7 +1,16 @@
<template> <template>
<div class="AppConvenientService"> <div class="AppConvenientService">
<u-navbar :is-back="false" title="便民服务" title-color="#000" title-width="300" title-size="32" :background="backgroundNavbar" :title-bold="true"></u-navbar>
<div class="card-list"> <div class="card-list">
便民服务 <div class="card" >
<h2>居民服务</h2>
<div class="items-list">
<div class="items" v-for="(item, index) in list" :key="index">
<img :src="item.pic" alt="">
<div class="items-name">{{ item.name }}</div>
</div>
</div>
</div>
</div> </div>
</div> </div>
</template> </template>
@@ -10,9 +19,44 @@
export default { export default {
name: "AppConvenientService", name: "AppConvenientService",
appName: "便民服务", appName: "便民服务",
customNavigation: true,
data() { data() {
return { return {
list: [{
pic: 'https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png',
name: '便民通讯录'
},
{
pic: 'https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png',
name: '便民通讯录'
},
{
pic: 'https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png',
name: '便民通讯录'
},
{
pic: 'https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png',
name: '便民通讯录'
},
{
pic: 'https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png',
name: '便民通讯录'
},
{
pic: 'https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png',
name: '便民通讯录'
},
{
pic: 'https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png',
name: '便民通讯录'
}, {
pic: 'https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png',
name: '便民通讯录'
},
],
backgroundNavbar: {
background: '#FFF'
}
} }
}, },
methods: { methods: {
@@ -20,12 +64,49 @@ export default {
}, },
onShow() { onShow() {
} },
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.AppConvenientService { .AppConvenientService {
padding: 32px;
box-sizing: border-box;
.card {
background: #FFF;
padding: 32px;
box-sizing: border-box;
border-radius: 16px;
h2 {
color: #333333;
font-size: 34px;
font-weight: 600;
}
.items-list {
width: 100%;
display: flex;
flex-wrap: wrap;
.items {
width: 25%;
align-self: center;
text-align: center;
margin-top: 24px;
img {
width: 108px;
height: 108px;
}
.items-name {
margin-top: 8px;
color: #1d2229ff;
font-size: 26px;
font-weight: 400;
}
}
}
} }
}
</style> </style>

View File

@@ -45,7 +45,7 @@ export default {
notices: [], notices: [],
search: {areaId: ''}, search: {areaId: ''},
backgroundNavbar: { backgroundNavbar: {
// background: linear - gradient(138.6deg, #e3e8fbff 0%, #ecf4fdff 48%, #ffffffff 95%) background: '#FFF'
} }
} }
}, },