indexContent.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view class="list-content-wrap">
  3. <view class="top-box">
  4. <text style="margin-right:20rpx">4品种</text>
  5. <text>2023-2-06 13:30:30</text>
  6. </view>
  7. <view class="list-wrap">
  8. <view class="flex item" v-for="item in 4" :key="item">
  9. <view class="label">动力煤</view>
  10. <view style="flex:1">
  11. <view class="opt">zc</view>
  12. <view class="opt">zcccccc</view>
  13. <view class="opt">zc</view>
  14. <view class="opt">zcccccc</view>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. const dayjs=require('@/utils/dayjs.min')
  22. export default {
  23. name:'IndexContent',
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .list-content-wrap{
  28. .top-box{
  29. background: rgba(207, 192, 159, 0.1);
  30. padding: 15rpx 45rpx;
  31. }
  32. .list-wrap{
  33. padding: 34rpx 0 34rpx 34rpx;
  34. .item{
  35. margin-bottom: 40rpx;
  36. .label{
  37. color: #666;
  38. width: 150rpx;
  39. padding-top: 15rpx;
  40. }
  41. .opt{
  42. padding: 15rpx 10rpx;
  43. width: 28%;
  44. text-align: center;
  45. display: inline-block;
  46. margin-right: 20rpx;
  47. margin-bottom: 20rpx;
  48. background: #F5EFE2;
  49. font-size: 24rpx;
  50. }
  51. }
  52. }
  53. }
  54. </style>