路由页面

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,44 @@
<template>
<div class="AppPageBasic">
<AppListPage :label="label" :appList="appList" />
</div>
</template>
<script>
import AppListPage from '@/components/AppListPage/AppListPage'
export default {
name: 'AppPageBasic',
appName: '工作台(基层办公)',
components: { AppListPage },
data() {
return {
label: '基层办公',
appList: [
{
name: '会议通知',
icon: require('./img/hytz.png'),
url: '../AppMeetingNotice/AppMeetingNotice'
},
{
name: '三务公开',
icon: require('./img/shgk.png'),
url: '../AppServicePublic/AppServicePublic?moduleId=b03d1ea68c8449ecb00685644e3f0192'
}
]
}
},
methods: {
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppPageBasic{
height: 100%;
}
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB