2024-12-27 17:35:38 +08:00

16 lines
798 B
Plaintext

<!-- components/recentlyPlayed/index.wxml -->
<view class="" style="width:100%;height:140rpx" hidden="{{!show}}"></view>
<view class="recently" hidden="{{!show}}" bind:tap="openDetail" data-item="{{data}}">
<image class="recently-bg" src="/static/images/recently-bg.png" mode="" />
<view class="main">
<i class="iconfont icon-guanbianniu" style="font-size: 40rpx;" catch:tap="onClose" />
<view style="margin-left: 16rpx;">
<image class="info-bg" src="{{data.cover}}" mode="heightFix" />
</view>
<view class="info">
<view class="info-title text-ellipsis">{{data.name}}</view>
<view class="info-subtitle text-ellipsis">上次观看到第 {{ data.order || 0}} 集</view>
</view>
<i class="iconfont icon-play" style="font-size: 68rpx;" />
</view>
</view>