Files
dvcp_v2_wxcp_app/library/apps/AppPageResident/AppPageResident.vue

50 lines
1.0 KiB
Vue
Raw Normal View History

2021-12-23 11:03:06 +08:00
<template>
<div class="AppPageResident">
2021-12-23 15:25:33 +08:00
<AiListPage :label="label" :appList="appList" :headerBg="headerBg" />
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 14:34:01 +08:00
url: '../AppResidentFile/AppResidentFile'
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'),
2022-03-14 16:02:20 +08:00
url: '../AppPeopleList/AppPeopleList'
2021-12-23 11:03:06 +08:00
}
2021-12-23 15:25:33 +08:00
],
headerBg: require('./img/header-bg.png'),
2021-12-23 11:03:06 +08:00
}
},
2021-12-24 15:27:36 +08:00
onShow() {
document.title = '居民管理'
2021-12-24 11:46:56 +08:00
},
2021-12-23 11:03:06 +08:00
methods: {
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppPageResident{
height: 100%;
}
</style>