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

131 lines
4.0 KiB

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