You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.1 KiB

3 years ago
<!--components/spu-preview/index.wxml-->
<!-- <wxs src="../../wxs/price.wxs" module="p"></wxs> //这里是将折扣前后价格的逻辑放在了price.wxs内部 -->
3 years ago
<view class="card" bindtap="detail" data-cycle_id="{{data}}">
<!-- <view class="type">{{data.type === 1 ? '视频' : '文章'}}</view> -->
<view class="type" wx:if="{{data.type === 1}}">视频</view>
<view class="type" wx:if="{{data.type === 2}}">图片</view>
<view class="type" wx:if="{{data.type === 3}}">文章</view>
3 years ago
<!-- <view></view> -->
3 years ago
<image mode="aspectFill" style="width: 334rpx;height: 250rpx;border-radius: 16rpx 16rpx 0rpx 0rpx;" src="{{cdn+(data.cover)}}"></image>
3 years ago
<view class="tip">
3 years ago
<view class="crad_right_num">
<image style="width: 16rpx;height: 18rpx;margin-right: 5rpx;" src="{{data.type===1?'/images/img_bofang@2x.png':''}}" bindload="time"></image>
{{data.count}}
{{data.type === 1 ? data.playNum+'次播放' : data.playNum+'次阅读'}}
3 years ago
</view>
3 years ago
<view wx:if="{{data.type === 1}}" class="time">{{se}}</view>
3 years ago
</view>
<view class="title">
3 years ago
{{data.title}}
3 years ago
</view>
<view class="date">
3 years ago
{{data.creatAt}}
3 years ago
</view>
3 years ago
</view>