Files
dvcp_v2_wxcp_app/src/apps/AppPageBasic/AppPageBasic.vue

45 lines
916 B
Vue
Raw Normal View History

2021-12-23 11:03:06 +08:00
<template>
<div class="AppPageBasic">
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: 'AppPageBasic',
appName: '工作台(基层办公)',
data() {
return {
label: '基层办公',
appList: [
{
name: '会议通知',
icon: require('./img/hytz.png'),
url: '../AppMeetingNotice/AppMeetingNotice'
},
{
name: '三务公开',
icon: require('./img/shgk.png'),
2021-12-23 15:09:25 +08:00
url: '../AppServicePublic/AppServicePublic?moduleId=b03d1ea68c8449ecb00685644e3f0192&listName=三务公开'
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() {
2021-12-24 14:17:10 +08:00
document.title = '基层办公'
2021-12-24 11:46:56 +08:00
},
2021-12-23 11:03:06 +08:00
methods: {
2021-12-24 11:46:56 +08:00
2021-12-23 11:03:06 +08:00
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppPageBasic{
height: 100%;
}
</style>