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

120 lines
3.0 KiB

  1. <template>
  2. <!-- 公告详情页面 -->
  3. <view class="announcement-container">
  4. <navbar title="公告详情" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="award-section">
  6. <view class="award-item">
  7. <text class="award-title">长篇网文</text>
  8. <view class="award-content">
  9. <view class="sub-award">
  10. <text class="sub-title"> 优质加更奖</text>
  11. <text class="detail">拟获奖作品156本共发放奖金41.5万元查看拟获奖名单请点击</text>
  12. <text class="link">优质加更奖拟获奖名单</text>
  13. </view>
  14. <view class="sub-award">
  15. <text class="sub-title"> 新书扶更奖</text>
  16. <text class="detail">拟获奖作品5574本共发放奖金20万元查看拟获奖名单请点击</text>
  17. <text class="link">新书扶更奖拟获奖名单</text>
  18. </view>
  19. <view class="sub-award">
  20. <text class="sub-title"> 拉新激励奖</text>
  21. <text class="detail">拟获奖作品50部总计奖金65万查看拟获奖名单请点击</text>
  22. <text class="link">2月拉新激励奖</text>
  23. </view>
  24. <view class="sub-award">
  25. <text class="sub-title"> 星火计划奖励</text>
  26. <text class="detail">拟获奖作品4178部总计奖金55万查看拟获奖名单请点击</text>
  27. <text class="link">2月星火计划奖励名单</text>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="award-item">
  32. <text class="award-title">完结专场</text>
  33. <view class="award-content">
  34. <view class="sub-award">
  35. <text class="sub-title"> 脱洞盛宴征文活动</text>
  36. <text class="detail">月度脱洞专题拟获奖作品1260部总计奖金45万查看拟获奖名单请点击</text>
  37. <text class="link">2月完结专题奖励名单</text>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </template>
  44. <script>
  45. export default {
  46. components: {
  47. 'uv-navbar': () => import('@/uni_modules/uv-navbar/components/uv-navbar/uv-navbar.vue')
  48. },
  49. data() {
  50. return {}
  51. },
  52. methods: {
  53. // 可以添加点击链接跳转等方法
  54. }
  55. }
  56. </script>
  57. <style lang="scss">
  58. .announcement-container {
  59. padding: 30rpx;
  60. background: #fff;
  61. .header {
  62. margin-bottom: 40rpx;
  63. .title {
  64. font-size: 36rpx;
  65. font-weight: bold;
  66. color: #333;
  67. margin-bottom: 20rpx;
  68. display: block;
  69. }
  70. .date {
  71. font-size: 28rpx;
  72. color: #666;
  73. line-height: 1.6;
  74. }
  75. }
  76. .award-section {
  77. .award-item {
  78. margin-bottom: 40rpx;
  79. .award-title {
  80. font-size: 32rpx;
  81. font-weight: bold;
  82. color: #333;
  83. margin-bottom: 20rpx;
  84. display: block;
  85. }
  86. .award-content {
  87. .sub-award {
  88. margin-bottom: 20rpx;
  89. .sub-title {
  90. font-size: 28rpx;
  91. color: #333;
  92. font-weight: 500;
  93. }
  94. .detail {
  95. font-size: 28rpx;
  96. color: #666;
  97. }
  98. .link {
  99. color: #007AFF;
  100. text-decoration: underline;
  101. font-size: 28rpx;
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }
  108. </style>