RecommendStoreShow.vue 869 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div class="container showAll">
  3. <div class="new">
  4. <new-store/>
  5. <recommend-original/>
  6. <hot-commodity/>
  7. </div>
  8. <div class="search">
  9. <suppliers/>
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. import NewStore from './NewStore.vue'
  15. import RecommendOriginal from './RecommendOriginal.vue'
  16. import HotCommodity from './HotCommodity.vue'
  17. import Suppliers from './Suppliers.vue'
  18. export default {
  19. name: 'recommend-store',
  20. components: {
  21. NewStore,
  22. RecommendOriginal,
  23. HotCommodity,
  24. Suppliers
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. @import '~assets/scss/variables';
  30. .showAll {
  31. margin-top: 15px;
  32. width: 1190px;
  33. padding: 0;
  34. overflow: hidden;
  35. .new {
  36. float: left;
  37. margin-right: 15px;
  38. width: 220px;
  39. }
  40. .search {
  41. width: 955px;
  42. float: left;
  43. }
  44. }
  45. </style>