|
|
|
|
<!--pages/feiyi/list/index.wxml-->
|
|
|
|
|
<!-- 非遗列表页面 -->
|
|
|
|
|
<wxs src="../../../utils/filter.wxs" module="tool" />
|
|
|
|
|
<title title="文创特产"></title>
|
|
|
|
|
<image lazy-load class="heaimg" src="https://static.ticket.sz-trip.com/xcxImages/techan/top1.png" mode="widthFix"></image>
|
|
|
|
|
<view style="position:relative;margin-top: -107rpx;">
|
|
|
|
|
<image lazy-load mode="widthFix" class="classimg" src="https://static.ticket.sz-trip.com/xcxImages/techan/class.png"></image>
|
|
|
|
|
<view class="type-text" bindtap="changeType" data-type="3"><text>特</text><text>产</text></view>
|
|
|
|
|
<view class="type-text" bindtap="changeType" data-type="2" style="left:auto;right:135rpx"><text>文</text><text>创</text></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="list">
|
|
|
|
|
<view class="item" wx:for="{{list}}">
|
|
|
|
|
<view class="top-info" bindtap="goShop" data-id="{{item.id}}">
|
|
|
|
|
<common-image mode="aspectFill" src="{{item.headimg}}"></common-image>
|
|
|
|
|
<view class="supplier-info">
|
|
|
|
|
<view class="supplier-name textOver">{{item.shop_name}}</view>
|
|
|
|
|
<view class="mid-box">
|
|
|
|
|
<view class="supplier-tags">
|
|
|
|
|
<view class="supplier-tag textOver" wx:for="{{item.display_tags}}">{{item}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="supplier-price"><text>¥</text><text>{{(item.start_price/100)}}</text><text>起</text></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="bottom-box">
|
|
|
|
|
<view class="supplier-address supplier-tags"><text class="iconfont icon-location"></text><text style="max-width: 300rpx;" class="textOver">{{item.address}}</text></view>
|
|
|
|
|
<view class="btn">
|
|
|
|
|
进店看看
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="product-list">
|
|
|
|
|
<view data-item="{{item}}" bindtap="goodsDetail" data-goods="{{item}}" class="product-item" wx:for="{{item.product}}">
|
|
|
|
|
<image lazy-load src="{{item.headimg}}" mode="aspectFill"></image>
|
|
|
|
|
<view class="product-title textOver2">{{item.title}}</view>
|
|
|
|
|
<view class="supplier-price"><text>¥</text><text style="font-size:30rpx">{{(item.price/100)}}</text><text class="market_price" wx:if="{{item.market_price && item.market_price!=0 && item.market_price>item.price}}">{{item.market_price/100}}</text></view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1;top:700rpx">
|
|
|
|
|
<!-- <image lazy-load mode="widthFix" src="https://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image> -->
|
|
|
|
|
<view>暂无内容</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|