Files
dvcp_v2_wxcp_app/library/apps/AppPageInteraction/AppPageInteraction.vue

49 lines
999 B
Vue
Raw Permalink Normal View History

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: [
2023-10-27 15:02:54 +08:00
{
name: '居民活动',
icon: require('./img/jmhd.png'),
url: '../AppResidentActivitie/AppResidentActivitie'
},
2022-01-05 10:48:53 +08:00
{
name: '居民议事',
icon: require('./img/jmys.png'),
2023-10-27 14:36:45 +08:00
url: '../AppVillageDiscuss/AppVillageDiscuss'
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 14:36:45 +08:00
url: '../AppUniMsg/AppUniMsg'
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>