Files
dvcp_v2_wxcp_app/src/apps/AppPageResident/AppPageResident.vue

47 lines
932 B
Vue
Raw Normal View History

2021-12-23 11:03:06 +08:00
<template>
<div class="AppPageResident">
2021-12-23 11:43:36 +08:00
<AiListPage :label="label" :appList="appList" />
2021-12-23 11:03:06 +08:00
</div>
</template>
<script>
export default {
name: 'AppPageResident',
appName: '工作台(居民)',
data() {
return {
label: '居民管理',
appList: [
{
name: '居民信息管理',
icon: require('./img/jmxxgl.png'),
2021-12-23 11:57:11 +08:00
url: '../AppResidentFile/AppResidentFile?tabIndex=0'
2021-12-23 11:03:06 +08:00
},
2021-12-23 11:57:11 +08:00
// {
// name: '居民群管理',
// icon: require('./img/jmqgl.png'),
// url: '../AppResidentFile/AppResidentFile?tabIndex=2'
// },
2021-12-23 11:03:06 +08:00
{
name: '居民档案',
icon: require('./img/jmda.png'),
2021-12-23 11:57:11 +08:00
url: '../AppResidentFile/AppResidentFile?tabIndex=1'
2021-12-23 11:03:06 +08:00
}
]
}
},
methods: {
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppPageResident{
height: 100%;
}
</style>