goodsDetail.wxml 754 B

1234567891011121314151617181920212223242526
  1. <!-- 轮播 -->
  2. <view class="page-section">
  3. <swiper
  4. indicator-dots="{{true}}"
  5. indicator-color="rgba(130, 130, 130, 1)"
  6. indicator-active-color="#FFF"
  7. autoplay="{{false}}">
  8. <block wx:for="{{background}}" wx:key="*this">
  9. <swiper-item>
  10. <view class="swiper-item {{item}}">
  11. <image src=""></image>
  12. </view>
  13. </swiper-item>
  14. </block>
  15. </swiper>
  16. </view>
  17. <view class="main-information">
  18. <view class="tag-list">
  19. <text>蔬菜</text>
  20. </view>
  21. <text selectable>桃形李桃形李桃形李桃形李桃形李桃形李桃形李桃形李桃形李桃形李桃形李桃形李</text>
  22. <view class="unit-price">
  23. <text class="price">¥23.00</text>
  24. <text class="unit">/ kg</text>
  25. </view>
  26. </view>