Files
dvcp_v2_wxcp_app/src/apps/AppPageParty/AppPageParty.vue

56 lines
1.2 KiB
Vue
Raw Normal View History

2021-12-23 11:03:06 +08:00
<template>
<div class="AppPageParty">
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: 'AppPageParty',
appName: '工作台(基层党建)',
data() {
return {
label: '基层党建',
appList: [
{
name: '三会一课',
icon: require('./img/shyk.png'),
2021-12-24 11:13:57 +08:00
url: '../party/AppThreeSessions/AppThreeSessions',
isBottom: true
2021-12-23 11:03:06 +08:00
},
{
name: '党建要闻',
icon: require('./img/djyw.png'),
2021-12-24 11:13:57 +08:00
url: '../AppServicePublic/AppServicePublic?moduleId=95f0f1c509e44d528069bc9f9dc19e53&listName=党建要闻',
isBottom: true
2021-12-23 11:03:06 +08:00
},
{
name: '党员学习',
icon: require('./img/dyxx.png'),
2021-12-24 11:13:57 +08:00
url: '../party/AppPartyHistoryEducation/classroomList',
isBottom: true
2021-12-23 11:03:06 +08:00
},
{
name: '在线答题',
icon: require('./img/zxdt.png'),
url: '../party/AppOnlineAnswer/AppOnlineAnswer'
}
2021-12-23 15:25:33 +08:00
],
headerBg: require('./img/header-bg.png'),
2021-12-23 11:03:06 +08:00
}
},
methods: {
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppPageParty{
height: 100%;
}
</style>