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

25 lines
438 B

1 year ago
  1. <template>
  2. <view class="pageBgImg">
  3. <topNavbar title="信息资讯"></topNavbar>
  4. <view class="ul">
  5. <view class="card" v-for="(item,index) in 6" :key="index">
  6. <newItem></newItem>
  7. </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. import newItem from '../comp/newItem'
  13. export default {
  14. components: { newItem }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .ul {
  19. padding: 28rpx;
  20. }
  21. .card {
  22. margin-bottom: 20rpx;
  23. }
  24. </style>