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.
19 lines
848 B
19 lines
848 B
<!--components/spu-preview/index.wxml-->
|
|
<!-- <wxs src="../../wxs/price.wxs" module="p"></wxs> //这里是将折扣前后价格的逻辑放在了price.wxs内部 -->
|
|
<view class="card">
|
|
<view class="type">{{data.type === 1 ? '视频' : '文章'}}</view>
|
|
<!-- <view></view> -->
|
|
<image style="width: 334rpx;height: 250rpx;background: linear-gradient(180deg, #599FFF 0%, #C4DDFF 100%);border-radius: 16rpx 16rpx 0rpx 0rpx;" src="/pages/index/shortimage/img_xingtuy@2x.png"></image>
|
|
<view class="tip">
|
|
<image wx:if="{{data.type === 1}}" style="width: 16rpx;height: 18rpx;margin-right: 5rpx;" src="/images/img_bofang@2x.png"></image>
|
|
{{data.count}}
|
|
<view wx:if="{{data.type === 1}}" class="time">{{data.time}}</view>
|
|
</view>
|
|
<view class="title">
|
|
{{data.title}}
|
|
</view>
|
|
<view class="date">
|
|
{{data.date}}
|
|
</view>
|
|
</view>
|