caseList.wxml 1.4 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 == true" src='{{item.video}}'></video>
                <image wx:else src='http://pjq0ww1cj.bkt.clouddn.com/case_list.png'></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>
    <!--  客服  -->
    <view class='chat_peo'>
        <button open-type="contact" class='contacButton'>
            <image src='http://pjq0ww1cj.bkt.clouddn.com/chat_peo.png'></image>
        </button>
    </view>
    <!--  返回顶部  -->
    <view class='chat_peo return_top' >
        <image src='http://pjq0ww1cj.bkt.clouddn.com/dingbu.png'></image>
    </view>
</view>