1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <view
- class="list"
- wx:for="{{listData}}"
- wx:key="id"
- data-item="{{item}}"
- bind:tap="jumpGoodsDetail">
- <view class="goods-cover-wrap">
- <image
- class="goods-cover"
- mode="widthFix"
- src="{{item.product_img_url}}"></image>
- </view>
- <view class="goods-describe">
- <view class="name-wrap {{item.product_sale_at === 0 ? 'has-tag' : ''}}">
- <view class="name">{{item.product_title}}</view>
- <view class="tag" wx:if="{{item.product_sale_at === 0}}">预售</view>
- </view>
- <view class="price-wrap">
- <view class="now">
- <view class="unit">¥</view>
- <view class="yuan">{{tools.fen2YuanAndJiao(item.product_all_price).yuan}}</view>
- <view class="jiao">{{tools.fen2YuanAndJiao(item.product_all_price).jiao}}</view>
- </view>
- <view class="old">{{tools.fen2Yuan(item.product_price)}}</view>
- </view>
- <!-- todo -->
- <view class="star-words">
- <text
- class="word"
- wx:for="{{['8斤打底', '9成熟', '货车运输三天内到达']}}"
- wx:key="index">{{item}}</text>
- </view>
- <view class="key-words-list">
- <view
- class="key-words"
- wx:for="{{2}}"
- wx:key="item">
- <image class="label" src=""></image>
- <text class="value">销量高销量高销量高销量高</text>
- </view>
- </view>
- </view>
- </view>
- <wxs src="../../components/wxs/index.wxs" module="tools"></wxs>
|