宣传资讯

This commit is contained in:
shijingjing
2022-04-24 11:38:19 +08:00
parent 2c299ab442
commit c28a0e6794
3 changed files with 261 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
<template>
<div class="AppInfotainment">
<div>
<div class="title">点击进入栏目</div>
<div class="project">
<span @click="toProject">通知公告</span>
</div>
</div>
<!-- <AiEmpty description="暂无数据" class="emptyWrap" v-else /> -->
</div>
</template>
<script>
export default {
name: 'AppInfotainment',
appName: '宣传资讯',
data() {
return {
}
},
methods: {
toProject() {
uni.navigateTo({url: './projectList'})
}
},
onShow() {
document.title = '政策动态'
},
}
</script>
<style lang="scss" scoped>
.uni-page-body {
background: pink !important;
}
.AppInfotainment {
.title {
padding: 30px;
box-sizing: border-box;
color: #B9B9B9;
font-size: 26px;
}
.project {
padding: 10px 30px;
box-sizing: border-box;
span {
padding: 5px 20px;
border: 1px solid #CBCBCB;
border-radius: 24px;
margin-right: 20px;
}
}
}
</style>