BContentRow.vue 775 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div class="b-section-body">
  3. <div class="b-l">
  4. <BRowHead :category="category"></BRowHead>
  5. <BRowBody :row="row"></BRowBody>
  6. </div>
  7. <div class="b-r">
  8. <BRowRank></BRowRank>
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. import BRowHead from 'components/contentRow/BRowHead'
  14. import BRowBody from 'components/contentRow/BRowBody'
  15. import BRowRank from 'components/contentRow/BRowRank'
  16. export default {
  17. props: {
  18. category: {
  19. type: String
  20. },
  21. row: {
  22. type: Array
  23. }
  24. },
  25. components: {
  26. BRowHead,
  27. BRowBody,
  28. BRowRank
  29. }
  30. }
  31. </script>
  32. <style lang="stylus" scoped>
  33. .b-section-body
  34. zoom 1
  35. .b-l
  36. float left
  37. width 700px
  38. margin-bottom 50px
  39. .b-r
  40. float right
  41. width 260px
  42. min-height 360px
  43. height 360px
  44. margin-bottom 50px
  45. </style>