2021-12-23 11:03:06 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="AppPageInteraction">
|
2021-12-24 14:03:22 +08:00
|
|
|
<AiListPage :label="label" :appList="appList" :headerBg="headerBg"/>
|
2021-12-23 11:03:06 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
name: 'AppPageInteraction',
|
|
|
|
|
appName: '工作台(居民互动)',
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
label: '居民互动',
|
|
|
|
|
appList: [
|
|
|
|
|
{
|
|
|
|
|
name: '居民活动',
|
|
|
|
|
icon: require('./img/jmhd.png'),
|
2023-10-27 13:53:35 +08:00
|
|
|
url: '../AppResidentActivitie/AppResidentActivities',
|
|
|
|
|
isBottom: false
|
2021-12-23 11:03:06 +08:00
|
|
|
},
|
2022-01-05 10:48:53 +08:00
|
|
|
{
|
|
|
|
|
name: '居民议事',
|
|
|
|
|
icon: require('./img/jmys.png'),
|
2023-10-27 13:53:35 +08:00
|
|
|
url: '../AppVillageDiscuss/AppVillageDiscuss',
|
|
|
|
|
isBottom: false
|
2022-01-05 10:48:53 +08:00
|
|
|
},
|
2021-12-23 11:03:06 +08:00
|
|
|
{
|
2021-12-28 16:47:43 +08:00
|
|
|
name: '小程序公告',
|
2021-12-23 11:03:06 +08:00
|
|
|
icon: require('./img/xcxgg.png'),
|
2023-10-27 13:53:35 +08:00
|
|
|
url: '../AppUniMsg/AppUniMsg',
|
|
|
|
|
isBottom: false
|
2021-12-23 11:03:06 +08:00
|
|
|
}
|
2021-12-23 15:25:33 +08:00
|
|
|
],
|
|
|
|
|
headerBg: require('./img/header-bg.png'),
|
2021-12-23 11:03:06 +08:00
|
|
|
}
|
|
|
|
|
},
|
2021-12-28 16:47:43 +08:00
|
|
|
onShow() {
|
2021-12-24 14:03:22 +08:00
|
|
|
document.title = "居民互动"
|
|
|
|
|
}
|
2021-12-23 11:03:06 +08:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-12-24 14:03:22 +08:00
|
|
|
uni-page-body {
|
2021-12-23 11:03:06 +08:00
|
|
|
height: 100%;
|
|
|
|
|
}
|
2021-12-24 14:03:22 +08:00
|
|
|
|
|
|
|
|
.AppPageInteraction {
|
2021-12-23 11:03:06 +08:00
|
|
|
height: 100%;
|
|
|
|
|
}
|
2021-12-24 14:03:22 +08:00
|
|
|
</style>
|