|
@@ -70,10 +70,11 @@
|
|
|
</view>
|
|
|
<!-- 商品详情,品牌信息,相关推荐-->
|
|
|
<view class="content tui-banner tui-skeleton-rect" v-if="tabCurrentIndex === 0">
|
|
|
- <parser :html="html" :img-mode="widthFix"></parser>
|
|
|
+ <secondDeatail :product="product"></secondDeatail>
|
|
|
</view>
|
|
|
<view class="content band" v-if="tabCurrentIndex === 1">
|
|
|
- <recommend :query-productid="product.productID" v-if="isRecommend"></recommend>
|
|
|
+ <secondBrand :product="product"></secondBrand>
|
|
|
+ <!-- <recommend :query-productid="product.productID" v-if="isRecommend"></recommend> -->
|
|
|
</view>
|
|
|
<view class="content hot" v-if="tabCurrentIndex === 2">
|
|
|
<recommend :query-productid="product.productID" v-if="isRecommend"></recommend>
|
|
@@ -92,6 +93,8 @@
|
|
|
import parser from "@/components/jyf-Parser/index" //富文本处理
|
|
|
import tuiSkeleton from "@/components/tui-skeleton/tui-skeleton"
|
|
|
import recommend from "@/components/cm-module/productDetails/recommend" //相关推荐
|
|
|
+ import secondDeatail from "@/components/cm-module/productDetails/secondDeatail" // 商品信息
|
|
|
+ import secondBrand from "@/components/cm-module/productDetails/secondBrand" // 品牌信息
|
|
|
import wxLogin from "@/common/config/wxLogin.js"
|
|
|
import { queryProductDetils } from "@/api/product.js"
|
|
|
import { shoppingAddCart } from "@/api/cart.js"
|
|
@@ -104,6 +107,8 @@
|
|
|
recommend,
|
|
|
secondPrice,
|
|
|
secondAttributes,
|
|
|
+ secondDeatail,
|
|
|
+ secondBrand
|
|
|
},
|
|
|
data(){
|
|
|
return{
|