详情小程序
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.

53 lines
993 B

  1. <template>
  2. <view class="content">
  3. <view class="list" v-for="item in 12">
  4. <view class="lf-row-between">
  5. <view class="lf-font-32 lf-color-222 lf-line-1" style="width: 420rpx;">小程序里发动态教程</view>
  6. <view class="lf-font-24 lf-color-777">2021-08-06</view>
  7. </view>
  8. <view class="lf-m-t-10 lf-font-28 lf-color-777">小程序里发动态教程</view>
  9. </view>
  10. <u-back-top :scrollTop="pageScrollTop"></u-back-top>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data(){
  16. return {
  17. }
  18. },
  19. onLoad(){
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style>
  26. page{
  27. background-color: #F5F5F5;
  28. }
  29. </style>
  30. <style lang="scss" scoped="scoped">
  31. .content{
  32. width: 750rpx;
  33. height: max-content;
  34. padding: 30rpx 32rpx;
  35. box-sizing: border-box;
  36. .list{
  37. width: 686rpx;
  38. height: max-content;
  39. background-color: #FFFFFF;
  40. border-radius: 10rpx;
  41. box-sizing: border-box;
  42. padding: 30rpx;
  43. &:nth-child(n+2){
  44. margin-top: 30rpx;
  45. }
  46. }
  47. }
  48. </style>