Files
dvcp_v2_wxcp_app/library/apps/AppPageMessage/AppPageMessage.vue

45 lines
861 B
Vue
Raw Normal View History

2022-06-22 10:24:54 +08:00
<template>
<div class="AppPageMessage">
<AiListPage :label="label" :appList="appList" :headerBg="headerBg" />
</div>
</template>
<script>
export default {
name: 'AppPageMessage',
2022-06-27 15:13:49 +08:00
appName: '多级治理',
2022-06-22 10:24:54 +08:00
data() {
return {
2022-06-27 15:13:49 +08:00
label: '多级治理',
2022-06-22 10:24:54 +08:00
appList: [
{
name: '数据总览',
icon: require('./img/shgk.png'),
url: '../AppDataScreening/AppDataScreening'
},
{
name: '群发通知',
icon: require('./img/hytz.png'),
url: '../AppMessageNotification/AppMessageNotification'
},
],
headerBg: require('./img/header-bg.png'),
}
},
onShow() {
2022-06-27 15:13:49 +08:00
document.title = '多级治理'
2022-06-22 10:24:54 +08:00
},
methods: {
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppPageMessage{
height: 100%;
}
</style>