瑞梦思预约小程序
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.

18 lines
639 B

3 years ago
<!--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>
3 years ago
<view class="goods-info">
<view class="name line2">{{item.storeName}}</view>
<view class="desc">{{item.storeInfo}}</view>
3 years ago
<view class="price">
<text class="s-word">¥</text>
<text>{{item.price}}</text>
3 years ago
</view>
</view>
</view>
</view>
<view class="loading-status">{{loadingStatus}}</view>
3 years ago
</view>