Files
dvcp_v2_wxcp_app/src/apps/AppPageRevitalize/AppPageRevitalize.vue

66 lines
1.7 KiB
Vue
Raw Normal View History

2022-03-28 11:44:10 +08:00
<template>
<div class="AppPageInteraction">
<AiListPage :label="label" :appList="appList" :headerBg="headerBg"/>
</div>
</template>
<script>
export default {
name: 'AppPageInteraction',
appName: '工作台(振兴)',
data() {
return {
label: '振兴',
appList: [
{
name: '产业振兴',
icon: require('./img/jmhd.png'),
url: '../AppServicePublic/AppServicePublic?moduleId=c7d4e2c46b56477c9a581af7f16e10d9&listName=产业资讯'
},
{
name: '组织振兴',
icon: require('./img/jmys.png'),
url: '../AppServicePublic/AppServicePublic?moduleId=a33a855416d44b77a006b93599c9618d&listName=组织动态'
},
{
name: '人才振兴',
icon: require('./img/xcxgg.png'),
url: '../AppServicePublic/AppServicePublic?moduleId=6aa884de2b814967bdbb18a363904083&listName=人才工作'
},
{
name: '文化振兴',
icon: require('./img/xcxgg.png'),
url: '../AppServicePublic/AppServicePublic?moduleId=feaf0264251f422db9b10c5e9f6c1c56&listName=生态建设'
},
{
name: '生态振兴',
icon: require('./img/xcxgg.png'),
url: '../AppServicePublic/AppServicePublic?moduleId=95f0f1c509e44d528069bc9f9dc19e53&listName=党建要闻'
}
],
headerBg: require('./img/header-bg.png'),
}
},
onShow() {
document.title = "振兴"
}
}
</script>
<style lang="scss" scoped>
uni-page-body {
height: 100%;
}
.AppPageInteraction {
height: 100%;
::v-deep .item{
border-bottom: 1px solid #eee;
}
::v-deep .item:nth-last-of-type(1),
::v-deep .item:nth-last-of-type(2){
border-bottom: 0;
}
}
</style>