Files
dvcp_v2_wxcp_app/library/project/police/AppPageResident/AppPageResident.vue
2024-10-31 14:34:57 +08:00

55 lines
1.2 KiB
Vue

<template>
<div class="AppPageResident">
<AiListPage :label="label" :appList="appList" :headerBg="headerBg" />
</div>
</template>
<script>
export default {
name: 'AppPageResident',
appName: '智慧隆回-指尖警务',
data() {
return {
label: '智慧隆回-指尖警务',
appList: [
{
name: '居民信息管理',
icon: require('./img/police-logo.jpg'),
url: '../AppResidentFile/AppResidentFile'
},
// {
// name: '居民群管理',
// icon: require('./img/jmqgl.png'),
// url: '../AppResidentFile/AppResidentFile?tabIndex=2'
// },
{
name: '居民档案',
icon: require('./img/police-logo.jpg'),
url: '../AppPeopleList/AppPeopleList'
},
{
name: '消息群发',
icon: require('./img/police-logo.jpg'),
url: '../AppMessageNotification/AppMessageNotification'
}
],
headerBg: require('./img/header-bg.png'),
}
},
onShow() {
document.title = '智慧隆回-指尖警务'
},
methods: {
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppPageResident{
height: 100%;
}
</style>