路由页面
This commit is contained in:
49
src/apps/AppPageCivilization/AppPageCivilization.vue
Normal file
49
src/apps/AppPageCivilization/AppPageCivilization.vue
Normal file
@@ -0,0 +1,49 @@
|
||||
<template>
|
||||
<div class="AppPageCivilization">
|
||||
<AppListPage :label="label" :appList="appList" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppListPage from '@/components/AppListPage/AppListPage'
|
||||
export default {
|
||||
name: 'AppPageCivilization',
|
||||
appName: '工作台(文明乡风)',
|
||||
components: { AppListPage },
|
||||
data() {
|
||||
return {
|
||||
label: '文明乡风',
|
||||
appList: [
|
||||
{
|
||||
name: '婚丧嫁娶',
|
||||
icon: require('./img/hjsq.png'),
|
||||
url: '../AppMarryAndDie/AppMarryAndDie'
|
||||
},
|
||||
{
|
||||
name: '好人好事',
|
||||
icon: require('./img/hrhs.png'),
|
||||
url: '../AppServicePublic/AppServicePublic?moduleId=5da220f3182047aba92d64ac08b93b55'
|
||||
},
|
||||
{
|
||||
name: '五好家庭',
|
||||
icon: require('./img/whjt.png'),
|
||||
url: '../AppServicePublic/AppServicePublic?moduleId=6afadf4cd44f4b73be29390b30ca88bb'
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
uni-page-body{
|
||||
height: 100%;
|
||||
}
|
||||
.AppPageCivilization{
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user