71 lines
2.8 KiB
Plaintext
71 lines
2.8 KiB
Plaintext
<view class="container list">
|
|
<view class="top">
|
|
<picker bindchange="bindPickerChange2" value="{{ship}}" range="{{options}}" range-key="label">
|
|
<view class="picker">
|
|
<input class="search-input" disabled="true" value="{{options[ship].label}}" bindinput="bindKeyInput" placeholder-class="search-placeholder" />
|
|
</view>
|
|
</picker>
|
|
<picker bindchange="bindPickerweight" value="{{weight}}" range="{{optionsweight}}" range-key="label">
|
|
<view class="picker">
|
|
<input class="search-input" disabled="true" value="{{optionsweight[weight].label}}" bindinput="bindKeyInput" placeholder-class="search-placeholder" />
|
|
</view>
|
|
</picker>
|
|
<picker bindchange="bindPickerwork" value="{{type}}" range="{{optionsWork}}" range-key="label">
|
|
<view class="picker">
|
|
<input class="search-input" disabled="true" value="{{optionsWork[type].label}}" bindinput="bindKeyInput" placeholder-class="search-placeholder" />
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
<view class="content">
|
|
<view
|
|
class="datalist"
|
|
data-id="{{item.id}}"
|
|
data-video="{{item.video}}"
|
|
wx:for="{{dataList}}" wx:key="index" bindtap='handleModel'
|
|
>
|
|
<view class="bgpic">
|
|
<image mode="aspectFill" src="{{item.cover}}"></image>
|
|
</view>
|
|
<view class="bottom">
|
|
<view class="left">
|
|
<view class="logo"></view>
|
|
<view class="title">{{ index + 1 }}.{{ item.name }}</view>
|
|
</view>
|
|
<view class="right" wx:if="{{false}}">已观看45%</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view
|
|
class="model"
|
|
wx:if="{{modelShow}}"
|
|
style="background:{{ video == '1' ? 'rgba(0, 0, 0, 0.5)' : 'rgba(0, 0, 0, 1)'}}"
|
|
>
|
|
<view class="contents" wx:if="{{video == '1' ? true : false}}">
|
|
<view class="title">提示</view>
|
|
<view class="text">
|
|
您的观看次数以达到限制,如需要解锁更多视频请联系:
|
|
</view>
|
|
<view class="people">
|
|
<view class="name">
|
|
<van-icon name="phone-o" class="icon" />
|
|
<span>沈健</span>
|
|
</view>
|
|
<text decode="true" class="phone">187 0255 8956</text>
|
|
</view>
|
|
<view class="people">
|
|
<view class="name">
|
|
<van-icon name="phone-o" class="icon" />
|
|
<span>钱春和</span>
|
|
</view>
|
|
<text class="phone" decode="true">181 0159 8061</text>
|
|
</view>
|
|
<view class="handleTrue" bindtap="handleClose">确认</view>
|
|
</view>
|
|
<view class="video" wx:else>
|
|
<view class="top">
|
|
<van-icon name="close" class="icon" bindtap="handleClose" />
|
|
</view>
|
|
<video src="{{videoSrc}}" controls autoplay></video>
|
|
</view>
|
|
</view>
|
|
</view> |