52 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="AppPageInteraction">
 | 
						|
    <AiListPage :label="label" :appList="appList" :headerBg="headerBg"/>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  name: 'AppPageInteraction',
 | 
						|
  appName: '工作台(居民互动)',
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      label: '居民互动',
 | 
						|
      appList: [
 | 
						|
        {
 | 
						|
          name: '居民活动',
 | 
						|
          icon: require('./img/jmhd.png'),
 | 
						|
          url: '../AppResidentActivitie/AppResidentActivities'
 | 
						|
        },
 | 
						|
        {
 | 
						|
          name: '通知公告',
 | 
						|
          icon: require('./img/xcxgg.png'),
 | 
						|
          url: '../AppUniMsg/AppUniMsg'
 | 
						|
        },
 | 
						|
        {
 | 
						|
          name: '问卷表单',
 | 
						|
          icon: require('./img/wjbd.png'),
 | 
						|
          url: '../AppAskForm/AppAskForm'
 | 
						|
        }
 | 
						|
      ],
 | 
						|
      headerBg: require('./img/header-bg.png'),
 | 
						|
    }
 | 
						|
  },
 | 
						|
  created() {
 | 
						|
    document.title = '居民互动'
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    document.title = "居民互动"
 | 
						|
  }
 | 
						|
}
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss" scoped>
 | 
						|
uni-page-body {
 | 
						|
  height: 100%;
 | 
						|
}
 | 
						|
 | 
						|
.AppPageInteraction {
 | 
						|
  height: 100%;
 | 
						|
}
 | 
						|
</style>
 |