路由页面
This commit is contained in:
49
src/apps/AppPageInteraction/AppPageInteraction.vue
Normal file
49
src/apps/AppPageInteraction/AppPageInteraction.vue
Normal file
@@ -0,0 +1,49 @@
|
||||
<template>
|
||||
<div class="AppPageInteraction">
|
||||
<AppListPage :label="label" :appList="appList" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppListPage from '@/components/AppListPage/AppListPage'
|
||||
export default {
|
||||
name: 'AppPageInteraction',
|
||||
appName: '工作台(居民互动)',
|
||||
components: { AppListPage },
|
||||
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/AppForm'
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
uni-page-body{
|
||||
height: 100%;
|
||||
}
|
||||
.AppPageInteraction{
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
BIN
src/apps/AppPageInteraction/img/jmhd.png
Normal file
BIN
src/apps/AppPageInteraction/img/jmhd.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 40 KiB |
BIN
src/apps/AppPageInteraction/img/wjbd.png
Normal file
BIN
src/apps/AppPageInteraction/img/wjbd.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
BIN
src/apps/AppPageInteraction/img/xcxgg.png
Normal file
BIN
src/apps/AppPageInteraction/img/xcxgg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
Reference in New Issue
Block a user