123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <!-- 商品 -->
- <view class="div commodity-wrapper">
- <!-- 轮播图 -->
- <info-goods-swipe></info-goods-swipe>
- <!-- 商品信息 -->
- <info-item></info-item>
- <!-- 购买 -->
- <info-buy></info-buy>
- <!-- 推荐商品 -->
- <recommend-item></recommend-item>
- <view class="div" style="height:0.25rem; background-color: #F0F2F5"></view>
- </view>
- </template>
- <script>
- import InfoGoodsSwipe from './InfoGoodsSwipe'
- import InfoItem from './InfoItem'
- import InfoBuy from './InfoBuy'
- import RecommendItem from './RecommendItem'
- import { mapState, mapMutations } from 'vuex'
- export default {
- data () {
- return {}
- },
- created () {},
- components: {
- InfoGoodsSwipe,
- InfoItem,
- InfoBuy,
- RecommendItem
- },
- computed: mapState({
- }),
- mounted () {},
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- </style>
|