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.
 

27 lines
1.7 KiB

<!--pages/feiyi/list/index.wxml-->
<!-- 非遗列表页面 -->
<!-- <wxs src="../../../../utils/filter.wxs" module="tool" /> -->
<search bind:onload="search"></search>
<image class="heaimg" src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/listtop/techan.png" mode="widthFix"></image>
<view class="night-types">
<view class="night-type {{type==19?'active':''}}" bindtap="changeType" data-type="19">文创</view>
<view class="night-type {{type==20?'active':''}}" bindtap="changeType" data-type="20">特产</view>
</view>
<!-- <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">
<view bindtap="gotoDetail" data-item="{{item}}" url="/pages/info/postProductInfo/index?id={{item.id}}" class="feiyi-item" wx:for="{{list}}">
<image src="{{item.headimg}}" class="main-img" width="340rpx" height="224rpx" mode="aspectFill"></image>
<!-- <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.price/100}}</text><text wx:if="{{item.linethroughPrice}}" class="old-price">¥{{item.linethroughPrice/100}}</text></view>
<view class="btn">抢购</view>
</view>
</view>
</view>
</view>
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1;top:300rpx">
<image mode="widthFix" src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/other/nodata.png"></image>
<view>暂无内容</view>
</view>