小说小程序前端代码仓库(小程序)
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

  1. <template>
  2. <!-- 公告详情页面 -->
  3. <view class="announcement-container">
  4. <uv-navbar
  5. title="公告详情"
  6. :autoBack="true"
  7. fixed
  8. placeholder
  9. titleStyle="color: #333; font-weight: 500;"
  10. :border="false"
  11. ></uv-navbar>
  12. <view class="header">
  13. <text class="title">2025年2月平台福利活动拟获奖作品公示</text>
  14. <text class="date">岁序更替华章日新2025平台福利内容建设的实施进展载誉前行我们秉持"精品为本,重磅发布"的理念现面向全体作者重磅发布2025年度长篇网文作家福利上线主新潮当中文网作家专属福利全年奖半年奖季度奖月度奖总计奖金超过百万元现将2025年2月平台各项福利活动拟获奖作品公示如下</text>
  15. </view>
  16. <view class="award-section">
  17. <view class="award-item">
  18. <text class="award-title">长篇网文</text>
  19. <view class="award-content">
  20. <view class="sub-award">
  21. <text class="sub-title"> 优质加更奖</text>
  22. <text class="detail">拟获奖作品156本共发放奖金41.5万元查看拟获奖名单请点击</text>
  23. <text class="link">优质加更奖拟获奖名单</text>
  24. </view>
  25. <view class="sub-award">
  26. <text class="sub-title"> 新书扶更奖</text>
  27. <text class="detail">拟获奖作品5574本共发放奖金20万元查看拟获奖名单请点击</text>
  28. <text class="link">新书扶更奖拟获奖名单</text>
  29. </view>
  30. <view class="sub-award">
  31. <text class="sub-title"> 拉新激励奖</text>
  32. <text class="detail">拟获奖作品50部总计奖金65万查看拟获奖名单请点击</text>
  33. <text class="link">2月拉新激励奖</text>
  34. </view>
  35. <view class="sub-award">
  36. <text class="sub-title"> 星火计划奖励</text>
  37. <text class="detail">拟获奖作品4178部总计奖金55万查看拟获奖名单请点击</text>
  38. <text class="link">2月星火计划奖励名单</text>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="award-item">
  43. <text class="award-title">完结专场</text>
  44. <view class="award-content">
  45. <view class="sub-award">
  46. <text class="sub-title"> 脱洞盛宴征文活动</text>
  47. <text class="detail">月度脱洞专题拟获奖作品1260部总计奖金45万查看拟获奖名单请点击</text>
  48. <text class="link">2月完结专题奖励名单</text>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. export default {
  57. components: {
  58. 'uv-navbar': () => import('@/uni_modules/uv-navbar/components/uv-navbar/uv-navbar.vue')
  59. },
  60. data() {
  61. return {}
  62. },
  63. methods: {
  64. // 可以添加点击链接跳转等方法
  65. }
  66. }
  67. </script>
  68. <style lang="scss">
  69. .announcement-container {
  70. padding: 30rpx;
  71. background: #fff;
  72. .header {
  73. margin-bottom: 40rpx;
  74. .title {
  75. font-size: 36rpx;
  76. font-weight: bold;
  77. color: #333;
  78. margin-bottom: 20rpx;
  79. display: block;
  80. }
  81. .date {
  82. font-size: 28rpx;
  83. color: #666;
  84. line-height: 1.6;
  85. }
  86. }
  87. .award-section {
  88. .award-item {
  89. margin-bottom: 40rpx;
  90. .award-title {
  91. font-size: 32rpx;
  92. font-weight: bold;
  93. color: #333;
  94. margin-bottom: 20rpx;
  95. display: block;
  96. }
  97. .award-content {
  98. .sub-award {
  99. margin-bottom: 20rpx;
  100. .sub-title {
  101. font-size: 28rpx;
  102. color: #333;
  103. font-weight: 500;
  104. }
  105. .detail {
  106. font-size: 28rpx;
  107. color: #666;
  108. }
  109. .link {
  110. color: #007AFF;
  111. text-decoration: underline;
  112. font-size: 28rpx;
  113. }
  114. }
  115. }
  116. }
  117. }
  118. }
  119. </style>