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.
17 lines
639 B
17 lines
639 B
<!--pages/goodsList/index.wxml--> |
|
<view class="goodsList-page"> |
|
<view class="goods-list"> |
|
<view class="goods-item acea-row" wx:for="{{products}}" wx:key="index" bindtap="toDetail" data-id="{{item.id}}"> |
|
<image src="{{item.image}}" mode="aspectFill"></image> |
|
<view class="goods-info"> |
|
<view class="name line2">{{item.storeName}}</view> |
|
<view class="desc">{{item.storeInfo}}</view> |
|
<view class="price"> |
|
<text class="s-word">¥</text> |
|
<text>{{item.price}}</text> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="loading-status">{{loadingStatus}}</view> |
|
</view>
|
|
|