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.
30 lines
1.9 KiB
30 lines
1.9 KiB
<!--pages/feiyi/list/index.wxml-->
|
|
<!-- 非遗列表页面 -->
|
|
<!-- <wxs src="../../../../utils/filter.wxs" module="tool" /> -->
|
|
<title wx:if="{{info}}" title="{{info.shop_name}}"></title>
|
|
<common-image wx:if="{{info}}" class="heaimg" src="{{info.banner_img}}" mode="widthFix"></common-image>
|
|
<!-- <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">
|
|
<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" 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.market_price}}" class="old-price" wx:if="{{item.market_price && item.market_price!=0 && item.market_price>item.price}}">¥{{item.market_price/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://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image>
|
|
<view>暂无内容</view>
|
|
</view>
|