| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div class="container marketing">
- <div class="toggle-store">
- <toggle-store />
- </div>
- <div class="carousel">
- <carousel />
- </div>
- </div>
- </template>
- <script>
- import ToggleStore from './ToggleStore.vue'
- import Carousel from './Carousel.vue'
- export default {
- name: 'recommend-store',
- components: {
- ToggleStore,
- Carousel
- },
- computed: {
- providerType () {
- return this.$route.path === '/provider/home' ? 'agency' : 'original'
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '~assets/scss/variables';
- .marketing {
- width: 1190px;
- min-height: 360px;
- padding-top: 20px!important ;
- overflow: hidden;
- .toggle-store {
- float: left;
- margin-right: 15px;
- width: 220px;
- height: 402px
- }
- .carousel {
- width: 955px;
- min-height: 400px;
- display: inline-block;
- float: left;
- border: 1px solid #D6D3CE;
- }
- /*.carousel_670 {*/
- /*width: 670px;*/
- /*min-height: 360px;*/
- /*display: inline-block;*/
- /*float: left;*/
- /*border: 1px solid #D6D3CE;*/
- /*}*/
- .new-store {
- width: 280px;
- min-height: 360px;
- float: left;
- display: inline-block;
- }
- }
- </style>
|