index.axml 835 B

123456789101112131415161718192021222324252627282930313233343536
  1. <view class="page">
  2. <swiper
  3. style="height:150px"
  4. class="swiper-banner"
  5. indicator-dots="true"
  6. autoplay="true"
  7. interval="2000"
  8. circular="true"
  9. >
  10. <block>
  11. <swiper-item class="swiper-view" a:for="{{banner}}">
  12. <image class="swiper-view" src="{{item}}"></image>
  13. </swiper-item>
  14. </block>
  15. </swiper>
  16. <view class="product-list">
  17. <view class="product-view" a:for="{{beer_list}}" onTap="toTaobao">
  18. <image mode="scaleToFill" src="{{item.img}}" />
  19. <text>{{item.name}}</text>
  20. <text>{{item.msg}}</text>
  21. <view class="product-price">
  22. <text style="font-size: 26rpx;margin-right:10rpx;">¥</text>
  23. <text style="font-size: 36rpx;">{{item.price}}</text>
  24. <text>¥{{item.original_p}}</text>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="slogn">
  29. — TOKTOK·精酿到家·生啤更好喝 -
  30. </view>
  31. </view>