forked from fdzcxy212206243/machine
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.
15 lines
562 B
15 lines
562 B
<view class="list">
|
|
<view class="item" wx:for="{{ goodsData }}" wx:key="index">
|
|
<navigator url="/pages/details/details?id={{ item.id }}">
|
|
<view class="goods_img">
|
|
<image mode="widthFix" src="{{ item.url }}"></image>
|
|
</view>
|
|
<view class="goods_info">
|
|
<text class="goods_name">{{ item.title }}</text>
|
|
<view class="goods_price">
|
|
¥<text>{{ item.price }}</text>.00
|
|
</view>
|
|
</view>
|
|
</navigator>
|
|
</view>
|
|
</view> |