59 lines
1.6 KiB
Vue
59 lines
1.6 KiB
Vue
<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/cyzx.png'),
|
|
url: '../AppServicePublic/AppServicePublic?moduleId=c7d4e2c46b56477c9a581af7f16e10d9&listName=产业振兴'
|
|
},
|
|
{
|
|
name: '组织振兴',
|
|
icon: require('./img/zzzx.png'),
|
|
url: '../AppServicePublic/AppServicePublic?moduleId=a33a855416d44b77a006b93599c9618d&listName=组织振兴'
|
|
},
|
|
{
|
|
name: '人才振兴',
|
|
icon: require('./img/rczx.png'),
|
|
url: '../AppServicePublic/AppServicePublic?moduleId=6aa884de2b814967bdbb18a363904083&listName=人才振兴'
|
|
},
|
|
{
|
|
name: '文化振兴',
|
|
icon: require('./img/whzx.png'),
|
|
url: '../AppServicePublic/AppServicePublic?moduleId=feaf0264251f422db9b10c5e9f6c1c56&listName=文化振兴'
|
|
},
|
|
{
|
|
name: '生态振兴',
|
|
icon: require('./img/stzx.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%;
|
|
}
|
|
</style>
|