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.
24 lines
1.2 KiB
24 lines
1.2 KiB
|
5 years ago
|
<!--pages/feiyi/list/index.wxml-->
|
||
|
|
<!-- 非遗列表页面 -->
|
||
|
|
<!-- <wxs src="../../../../utils/filter.wxs" module="tool" /> -->
|
||
|
|
<search></search>
|
||
|
|
<swiper class="swiper" wx:if="{{info.listImgs.length>0}}" indicator-dots="true" indicator-color="rgba(255,255,255,0.5)" indicator-active-color="white" autoplay="true" interval="5000" duration="500">
|
||
|
|
<block wx:for="{{info.listImgs}}" wx:key="*this">
|
||
|
|
<swiper-item>
|
||
|
|
<common-image width="100%" height="246rpx" mode="aspectFill" originalImage="{{item}}"></common-image>
|
||
|
|
</swiper-item>
|
||
|
|
</block>
|
||
|
|
</swiper>
|
||
|
|
<!-- <common-image class="top-img" wx:if="{{info}}" originalImage="{{info.logo}}" width="100%" mode="widthFix" defaultImage="/images/empty2.png"></common-image> -->
|
||
|
|
<view class="feiyi-list">
|
||
|
|
<navigator url="/" class="feiyi-item" wx:for="{{5}}">
|
||
|
|
<common-image class="main-img" originalImage="{{item.headImg}}" width="340rpx" height="224rpx" mode="aspectFill"></common-image>
|
||
|
|
<view class="info-box">
|
||
|
|
<view class="title">{{item.title}}</view>
|
||
|
|
<view class="price-box">
|
||
|
|
<view class="price-box-left"><text>¥{{item.salePrice/100}}</text><text class="old-price">¥{{item.linethroughPrice/100}}</text></view>
|
||
|
|
<view class="btn">抢购</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</navigator>
|
||
|
|
</view>
|