小说小程序前端代码仓库(小程序)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

132 lines
4.0 KiB

<template>
<!-- 公告详情页面 -->
<view class="announcement-container">
<uv-navbar
title="公告详情"
:autoBack="true"
fixed
placeholder
titleStyle="color: #333; font-weight: 500;"
:border="false"
></uv-navbar>
<view class="header">
<text class="title">2025年2月平台福利活动拟获奖作品公示</text>
<text class="date">岁序更替华章日新2025平台福利内容建设的实施进展载誉前行我们秉持"精品为本,重磅发布"的理念现面向全体作者重磅发布2025年度长篇网文作家福利上线主新潮当中文网作家专属福利全年奖半年奖季度奖月度奖总计奖金超过百万元现将2025年2月平台各项福利活动拟获奖作品公示如下</text>
</view>
<view class="award-section">
<view class="award-item">
<text class="award-title">长篇网文</text>
<view class="award-content">
<view class="sub-award">
<text class="sub-title"> 优质加更奖</text>
<text class="detail">拟获奖作品156本共发放奖金41.5万元查看拟获奖名单请点击</text>
<text class="link">优质加更奖拟获奖名单</text>
</view>
<view class="sub-award">
<text class="sub-title"> 新书扶更奖</text>
<text class="detail">拟获奖作品5574本共发放奖金20万元查看拟获奖名单请点击</text>
<text class="link">新书扶更奖拟获奖名单</text>
</view>
<view class="sub-award">
<text class="sub-title"> 拉新激励奖</text>
<text class="detail">拟获奖作品50部总计奖金65万查看拟获奖名单请点击</text>
<text class="link">2月拉新激励奖</text>
</view>
<view class="sub-award">
<text class="sub-title"> 星火计划奖励</text>
<text class="detail">拟获奖作品4178部总计奖金55万查看拟获奖名单请点击</text>
<text class="link">2月星火计划奖励名单</text>
</view>
</view>
</view>
<view class="award-item">
<text class="award-title">完结专场</text>
<view class="award-content">
<view class="sub-award">
<text class="sub-title"> 脱洞盛宴征文活动</text>
<text class="detail">月度脱洞专题拟获奖作品1260部总计奖金45万查看拟获奖名单请点击</text>
<text class="link">2月完结专题奖励名单</text>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
components: {
'uv-navbar': () => import('@/uni_modules/uv-navbar/components/uv-navbar/uv-navbar.vue')
},
data() {
return {}
},
methods: {
// 可以添加点击链接跳转等方法
}
}
</script>
<style lang="scss">
.announcement-container {
padding: 30rpx;
background: #fff;
.header {
margin-bottom: 40rpx;
.title {
font-size: 36rpx;
font-weight: bold;
color: #333;
margin-bottom: 20rpx;
display: block;
}
.date {
font-size: 28rpx;
color: #666;
line-height: 1.6;
}
}
.award-section {
.award-item {
margin-bottom: 40rpx;
.award-title {
font-size: 32rpx;
font-weight: bold;
color: #333;
margin-bottom: 20rpx;
display: block;
}
.award-content {
.sub-award {
margin-bottom: 20rpx;
.sub-title {
font-size: 28rpx;
color: #333;
font-weight: 500;
}
.detail {
font-size: 28rpx;
color: #666;
}
.link {
color: #007AFF;
text-decoration: underline;
font-size: 28rpx;
}
}
}
}
}
}
</style>