青蛙卖大米小程序2024-11-24
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.

66 lines
1.1 KiB

5 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="新闻中心" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="card">
  5. <view class="card-img">
  6. <image src="../static/home/1.png" mode="aspectFill"></image>
  7. </view>
  8. <view>
  9. 三只青蛙周年庆
  10. </view>
  11. <view class="text">
  12. 文本内容文本内容文本内容文本内容文本内容文本内容文本内容
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. }
  22. },
  23. computed: {},
  24. methods: {}
  25. }
  26. </script>
  27. <style scoped lang="scss">
  28. .page {
  29. height: 100Vh;
  30. background-color: #F3F3F3;
  31. .card {
  32. margin: 20rpx;
  33. background-color: #fff;
  34. border-bottom-left-radius: 16rpx;
  35. border-bottom-right-radius: 16rpx;
  36. .card-img {
  37. height: 250rpx;
  38. width: 100%;
  39. image {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. }
  44. view:nth-child(2) {
  45. font-size: 32rpx;
  46. color: #474747;
  47. padding: 20rpx;
  48. font-weight: 500;
  49. }
  50. .text {
  51. font-size: 24rpx;
  52. color: #A2A2A2;
  53. padding: 0rpx 20rpx 40rpx;
  54. }
  55. }
  56. }
  57. </style>