deguodaigou/components/classify/list/index.wxml

38 lines
1.6 KiB
Plaintext
Raw Normal View History

2019-12-13 07:39:55 +00:00
<scroll-view class="list" scroll-y="{{true}}" >
2019-12-19 09:22:23 +00:00
<view class="commodity" bindtap="todetail" wx:for="{{list}}" wx:for-index="j" wx:key="{{j}}" data-id="{{item.goods_id}}">
2019-12-13 07:39:55 +00:00
<view class="content">
2019-12-19 09:22:23 +00:00
<image class="imgthumb " src="{{item.image}}"></image>
2019-12-13 07:39:55 +00:00
<view class="introduce">
2019-12-19 09:22:23 +00:00
<text class="towline">{{item.goods_name}}</text>
2019-12-13 07:39:55 +00:00
<view>
2019-12-19 09:22:23 +00:00
<text>¥{{item.shop_price}}</text>
2019-12-13 07:39:55 +00:00
<text>加入购物车</text>
</view>
</view>
</view>
</view>
2019-12-19 09:22:23 +00:00
<!-- <view class="commodity" bindtap="todetail">
2019-12-13 07:39:55 +00:00
<view class="content">
<image class="imgthumb "></image>
<view class="introduce">
<text>产品名称产品名称产品名称产品名称产品名称产品</text>
<view>
<text>¥657</text>
<text>加入购物车</text>
</view>
</view>
</view>
</view>
2019-12-16 11:56:41 +00:00
<view class="commodity" bindtap="todetail">
2019-12-13 07:39:55 +00:00
<view class="content">
<image class="imgthumb "></image>
<view class="introduce">
<text>产品名称产品名称产品名称产品名称产品名称产品</text>
<view>
<text>¥657</text>
<text>加入购物车</text>
</view>
</view>
</view>
2019-12-19 09:22:23 +00:00
</view> -->
2019-12-13 07:39:55 +00:00
</scroll-view>