45 lines
872 B
Vue
45 lines
872 B
Vue
|
|
<template>
|
||
|
|
<div class="AppPageMessage">
|
||
|
|
<AiListPage :label="label" :appList="appList" :headerBg="headerBg" />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'AppPageMessage',
|
||
|
|
appName: '工作台(数据总览)',
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
label: '数据总览',
|
||
|
|
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() {
|
||
|
|
document.title = '数据总览'
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
|
||
|
|
},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
uni-page-body{
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
.AppPageMessage{
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
</style>
|