caseList.wxml
1.5 KB
<!--pages/caseList/caseList.wxml-->
<view class='case_list_wrap'>
<view class='case_list_box'>
<view class='case_list' wx:for="{{caseList}}" wx:key='index'>
<view class='case_top'>
<view class='case_title' bindtap='jumpFun' data-id="{{item.id}}">{{item.title}}</view>
<view class='case_lable_box'>
<view class='case_lable_list' wx:for="{{item.label}}" wx:key='index'>{{item.name}}</view>
</view>
</view>
<view class='case_list_content'>
<video wx:if="{{item.video_type}}" src='{{item.video}}'></video>
<image wx:else src='{{item.first}}'></image>
</view>
<view class='case_bottom_list'>
<view class='case_bottom_banner' wx:for="{{item.image}}" wx:key='index'>
<image mode='widthFix' src='{{item.url}}'></image>
</view>
</view>
</view>
</view>
<!-- 客服 -->
<cover-view class='chat_peo'>
<button open-type="contact" class='contacButton'>
<cover-image src='http://pjq0ww1cj.bkt.clouddn.com/chat_peo.png'></cover-image>
</button>
</cover-view>
<!-- 返回顶部 -->
<cover-view class='chat_peo return_top' wx:if="{{scrollTop>minscreenHeight}}" bindtap='goTop'>
<cover-image src='http://pjq0ww1cj.bkt.clouddn.com/dingbu.png'></cover-image>
</cover-view>
</view>