<view class="main_app">
|
<buoyClient showPurpose="1" />
|
<detailFooter bindenjoy="handleEnjoy" path="0" info="{{info}}" />
|
<!-- banner轮播 -->
|
<swiper class="banner_swiper" circular indicator-dots autoplay style="height:{{bannerHeight}}rpx" duration>
|
<block wx:for="{{ info.bannerImgList }}">
|
<swiper-item>
|
<image bindload="bannerbindload" mode="widthFix" src="{{ item }}"></image>
|
</swiper-item>
|
</block>
|
</swiper>
|
<view class="main_content">
|
<view class="title">{{ info.title }}</view>
|
<view class="desc" wx:if="{{ info.subtitle }}">{{ info.subtitle }}</view>
|
<view class="text">{{ info.intro }}</view>
|
</view>
|
<!-- video -->
|
<view wx:if="{{ info.video }}" class="video">
|
<view class="title" >产品视频</view>
|
<view class="img_wrap">
|
<image class="img" src="{{ info.coverImage }}" mode="widthFix"></image>
|
<view bindtap="playVideo" class="play">播放</view>
|
</view>
|
</view>
|
<view class="detail">
|
<view class="title" bind:tap="goTestPage">产品详情</view>
|
<view class="line" wx:for="{{ info.productParamList }}">
|
<view class="label">{{ item.paramName }}:</view>
|
<view class="val">{{ item.paramValue }}</view>
|
</view>
|
</view>
|
<!-- 富文本 -->
|
<view wx:if="{{info.content}}">
|
<mp-html content="{{info.content}}"></mp-html>
|
</view>
|
<view class="spaceList">
|
<view class="item" wx:for="{{ info.spaceList }}">
|
<!-- <view class="name">{{ item.spaceName }}</view> -->
|
<image src="{{ item.spaceImg }}" mode="widthFix" class="img"></image>
|
<!-- <mp-html content="{{item.spaceContent}}"></mp-html> -->
|
</view>
|
</view>
|
</view>
|