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.
34 lines
1.9 KiB
34 lines
1.9 KiB
|
5 years ago
|
<!--pages/user/likes/index.wxml-->
|
||
|
|
<title title="我的收藏"></title>
|
||
|
|
<view class="types">
|
||
|
|
<view class="type{{type==1?' active':''}}" bindtap="changeType" data-type="1">产品</view>
|
||
|
|
<view class="type{{type==2?' active':''}}" bindtap="changeType" data-type="2">景点</view>
|
||
|
|
</view>
|
||
|
|
<view style="height:87rpx"></view>
|
||
|
|
<view wx:if="{{type==1}}" wx:for="{{list}}" class="goods-item {{item.isTouchMove ? 'touch-move-active' : ''}}" bindtouchstart='touchStart' bindtouchmove='touchmove' data-index="{{index}}">
|
||
|
|
<view class="item" bindtap="gotoDetail" data-item="{{item}}">
|
||
|
|
<image src="{{item.product.headimg}}" mode="aspectFill"></image>
|
||
|
|
<view class="right-info">
|
||
|
|
<view class="title textOver">{{item.product.title}}</view>
|
||
|
|
<view class="price">¥{{item.product.price/100}}</view>
|
||
|
|
<view class="location"><text class="iconfont icon-location"></text> {{item.product.address}}</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class='del' catchtap="del1" data-index="{{index}}">删除</view>
|
||
|
|
</view>
|
||
|
|
<view wx:if="{{type==2}}" wx:for="{{list}}" class="goods-item {{item.isTouchMove ? 'touch-move-active' : ''}}" bindtouchstart='touchStart' bindtouchmove='touchmove' data-index="{{index}}">
|
||
|
|
<view class="item" bindtap="gotoDetail" data-item="{{item}}">
|
||
|
|
<image src="{{item.scene.headimg}}" mode="aspectFill"></image>
|
||
|
|
<view class="right-info">
|
||
|
|
<view class="title textOver">{{item.scene.title}}</view>
|
||
|
|
<view class="price">¥{{item.scene.price/100}}</view>
|
||
|
|
<view class="location"><text class="iconfont icon-location"></text> {{item.scene.address}}</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class='del' catchtap="del2" data-index="{{index}}">删除</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1">
|
||
|
|
<image mode="widthFix" src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/other/nodata.png"></image>
|
||
|
|
<view>暂无内容</view>
|
||
|
|
</view>
|