学员端小程序
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.

27 lines
571 B

1 year ago
  1. <template>
  2. <view class="newItem" @click="$goPage('/pages/indexEntry/examines/newsDetail/newsDetail')">
  3. <view class="h2">最新免费开放日来啦</view>
  4. <view class="text">2023/08/082023/08/09 全天免费开放咯~</view>
  5. <view class="date">发布时间2023/08/06</view>
  6. </view>
  7. </template>
  8. <script>
  9. </script>
  10. <style lang="scss" scoped>
  11. .newItem {
  12. padding: 24rpx;
  13. font-size: 28rpx;
  14. .h2 {
  15. font-weight: 500;
  16. }
  17. .text {
  18. color: #686B73;
  19. padding: 8rpx 0 32rpx 0;
  20. }
  21. .date {
  22. font-size: 20rpx;
  23. color: #686B73;
  24. }
  25. }
  26. </style>