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

70 lines
1.3 KiB

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="新闻中心" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="card" @click="$utils.navigateTo('/pages_order/home/newsDetail?id=' + item.id)"
  5. v-for="(item, index) in list" :key="item.id">
  6. <view class="card-img">
  7. <image :src="item.image" mode="aspectFill"></image>
  8. </view>
  9. <view>
  10. {{ item.title }}
  11. </view>
  12. <view class="text">
  13. 文本内容文本内容文本内容文本内容文本内容文本内容文本内容
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. import mixinsList from '@/mixins/list.js'
  20. export default {
  21. mixins: [mixinsList],
  22. data() {
  23. return {
  24. mixinsListApi: 'getRiceNewsList',
  25. }
  26. },
  27. computed: {},
  28. methods: {}
  29. }
  30. </script>
  31. <style scoped lang="scss">
  32. .page {
  33. height: 100Vh;
  34. background-color: #F3F3F3;
  35. .card {
  36. margin: 20rpx;
  37. background-color: #fff;
  38. border-bottom-left-radius: 16rpx;
  39. border-bottom-right-radius: 16rpx;
  40. .card-img {
  41. height: 250rpx;
  42. width: 100%;
  43. image {
  44. width: 100%;
  45. height: 100%;
  46. }
  47. }
  48. view:nth-child(2) {
  49. font-size: 32rpx;
  50. color: #474747;
  51. padding: 20rpx;
  52. font-weight: 500;
  53. }
  54. .text {
  55. font-size: 24rpx;
  56. color: #A2A2A2;
  57. padding: 0rpx 20rpx 40rpx;
  58. }
  59. }
  60. }
  61. </style>