index.wxml 1020 B

123456789101112131415161718192021222324252627282930313233343536
  1. <view class="list">
  2. <view class="goods-cover-wrap">
  3. <image
  4. class="goods-cover"
  5. mode="widthFix" src=""></image>
  6. </view>
  7. <view class="goods-describe">
  8. <view class="name-wrap has-tag">
  9. <view class="name">名字名字名字</view>
  10. <view class="tag">预售</view>
  11. </view>
  12. <view class="price-wrap">
  13. <view class="now">
  14. <view class="unit">¥</view>
  15. <view class="yuan">99999</view>
  16. <view class="jiao">.50</view>
  17. </view>
  18. <view class="old">¥99999.00</view>
  19. </view>
  20. <view class="star-words">
  21. <text
  22. class="word"
  23. wx:for="{{['8斤打底', '9成熟', '货车运输三天内到达']}}"
  24. wx:key="index">{{item}}</text>
  25. </view>
  26. <view class="key-words-list">
  27. <view
  28. class="key-words"
  29. wx:for="{{2}}"
  30. wx:key="item">
  31. <image class="label" src=""></image>
  32. <text class="value">销量高销量高销量高销量高</text>
  33. </view>
  34. </view>
  35. </view>
  36. </view>