45 lines
1.9 KiB
Plaintext
45 lines
1.9 KiB
Plaintext
<!--pages/activity/activity.wxml-->
|
|
<!-- 顶部排序 -->
|
|
<!--index.wxml-->
|
|
<view>
|
|
<view class="custom-bar" style="height:{{navHeight}}px">
|
|
<view class="custom-bar__wrapper" style="margin-top:{{searchMarginTop}}px; height: {{searchHeight}}px;width: {{searchWidth}}px" >
|
|
<view style="height:24rpx;width:24rpx;border-right: 2px solid black;border-top: 2px solid black;transform: rotate(-135deg);margin-left:10px" bindtap="back"></view>
|
|
<view class="search-group">
|
|
<icon class="icon-small searchicon" type="search" size="38rpx"></icon>
|
|
<input class="search-group__input" bindblur='changeSearch' bindconfirm='changeSearch' bindinput='changeSearch' placeholder="搜索"/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- <view style="display:flex;justify-content: space-around;margin-bottom:23rpx;margin-top:{{navHeight}}px;font-size:24rpx;color: #585858;">
|
|
<view>西安市</view>
|
|
<view>智能排序</view>
|
|
<view>分类</view>
|
|
</view> -->
|
|
|
|
|
|
<view class="order-list" style="margin-top: 160rpx;" wx:if="{{order_list.length}}">
|
|
<view wx:for="{{order_list}}" wx:key="{{index}}" wx:for-item="item">
|
|
<view class="Group" bindtap="activity" data-id="{{item.id}}">
|
|
<view class="Group-image">
|
|
<image src="{{item.index_img}}"></image>
|
|
</view>
|
|
<view class="content">
|
|
<view class="title1">{{item.goods_name}}</view>
|
|
<view class="title2">
|
|
<view class="house">
|
|
<image src="/pages/image/address.png"/>
|
|
</view>
|
|
<view >{{item.mechanism_name}}</view>
|
|
</view>
|
|
<view class="Price">
|
|
<view class="Price1">¥{{item.price}}</view>
|
|
<view class="Price2">¥{{item.original_price}}</view>
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |