Files
dvcp_v2_wxcp_app/src/apps/AppPageInteraction/AppPageInteraction.vue

50 lines
1020 B
Vue
Raw Normal View History

2021-12-23 11:03:06 +08:00
<template>
<div class="AppPageInteraction">
2021-12-23 15:25:33 +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'),
url: '../AppResidentActivitie/AppResidentActivities'
},
{
2021-12-24 11:42:52 +08:00
name: '通知公告',
2021-12-23 11:03:06 +08:00
icon: require('./img/xcxgg.png'),
url: '../AppUniMsg/AppUniMsg'
},
{
name: '问卷表单',
icon: require('./img/wjbd.png'),
2021-12-23 15:11:22 +08:00
url: '../AppAskForm/AppAskForm'
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-24 11:46:56 +08:00
created() {
uni.setNavigationBarTitle({title: '居民互动'})
},
2021-12-23 11:03:06 +08:00
methods: {
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppPageInteraction{
height: 100%;
}
</style>