|
|
|
@ -65,73 +65,20 @@ |
|
|
|
<!-- 商品SKU弹窗 --> |
|
|
|
<SkuPopup v-if="!isLoading" v-model="showSkuPopup" :skuMode="skuMode" :goods="goods" @addCart="onAddCart" /> |
|
|
|
|
|
|
|
<!-- 商品评价 --> |
|
|
|
<!-- 标的评价 --> |
|
|
|
<Comment v-if="!isLoading" :goods-id="goodsId" :limit="2" /> |
|
|
|
|
|
|
|
<!-- 商品描述 --> |
|
|
|
<!-- 标的描述 --> |
|
|
|
<view v-if="!isLoading" class="goods-content m-top20"> |
|
|
|
<view class="item-title b-f"> |
|
|
|
<text>商品描述</text> |
|
|
|
<text>标的描述</text> |
|
|
|
</view> |
|
|
|
<block v-if="goods.content != ''"> |
|
|
|
<view class="goods-content__detail b-f"> |
|
|
|
<mp-html :content="goods.content" /> |
|
|
|
</view> |
|
|
|
</block> |
|
|
|
<empty v-else tips="亲,暂无商品描述" /> |
|
|
|
</view> |
|
|
|
|
|
|
|
<!-- 底部选项卡 --> |
|
|
|
<view class="footer-fixed"> |
|
|
|
<view class="footer-container"> |
|
|
|
<!-- 导航图标 --> |
|
|
|
<view class="foo-item-fast"> |
|
|
|
<!-- 首页 --> |
|
|
|
<view class="fast-item fast-item--home" @click="onTargetHome"> |
|
|
|
<view class="fast-icon"> |
|
|
|
<text class="iconfont icon-shouye"></text> |
|
|
|
</view> |
|
|
|
<view class="fast-text"> |
|
|
|
<text>首页</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<!-- 客服 (仅微信小程序端显示) --> |
|
|
|
<!-- #ifdef MP-WEIXIN --> |
|
|
|
<button class="btn-normal" open-type="contact"> |
|
|
|
<view class="fast-item"> |
|
|
|
<view class="fast-icon"> |
|
|
|
<text class="iconfont icon-kefu1"></text> |
|
|
|
</view> |
|
|
|
<view class="fast-text"> |
|
|
|
<text>客服</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</button> |
|
|
|
<!-- #endif --> |
|
|
|
<!-- 购物车 --> |
|
|
|
<view class="fast-item fast-item--cart" @click="onTargetCart"> |
|
|
|
<view v-if="cartTotal > 0" class="fast-badge fast-badge--fixed">{{ cartTotal > 99 ? '99+' : cartTotal }} |
|
|
|
</view> |
|
|
|
<view class="fast-icon"> |
|
|
|
<text class="iconfont icon-gouwuche"></text> |
|
|
|
</view> |
|
|
|
<view class="fast-text"> |
|
|
|
<text>购物车</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<!-- 操作按钮 --> |
|
|
|
<view class="foo-item-btn"> |
|
|
|
<view class="btn-wrapper"> |
|
|
|
<view class="btn-item btn-item-deputy" @click="onShowSkuPopup(2)"> |
|
|
|
<text>加入购物车</text> |
|
|
|
</view> |
|
|
|
<view class="btn-item btn-item-main" @click="onShowSkuPopup(3)"> |
|
|
|
<text>立即购买</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<empty v-else tips="亲,暂无描述" /> |
|
|
|
</view> |
|
|
|
|
|
|
|
<!-- 快捷导航 --> |
|
|
|
@ -283,6 +230,10 @@ |
|
|
|
<style> |
|
|
|
page { |
|
|
|
background: #fafafa; |
|
|
|
|
|
|
|
} |
|
|
|
.container{ |
|
|
|
min-height: 100vh; |
|
|
|
} |
|
|
|
</style> |
|
|
|
<style lang="scss" scoped> |
|
|
|
|