路由页面

This commit is contained in:
liuye
2021-12-23 11:03:06 +08:00
parent f4a377955f
commit f520a17c68
23 changed files with 339 additions and 2 deletions

View 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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB