index.wxml 957 B

1234567891011121314151617181920212223242526272829
  1. <view class="pageContainer">
  2. <!--index.wxml-->
  3. <scroll-view class="scrollarea" bounces="{{ false }}" enhanced scroll-y="{{popupShow ? false : true}}" type="list">
  4. <view class="container">
  5. <view class="goodsSection">
  6. <view class="goodsIntro">
  7. <view class="images">
  8. <block wx:for="{{goodsImgList}}" wx:key="index">
  9. <!-- bind:tap="onPreivewGoodsImg" -->
  10. <image mode="widthFix" data-src="{{item}}" src="{{item}}"></image>
  11. </block>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="bottom-section">
  16. <view class="orders" bind:tap="onOrder">
  17. <image src="./images/icon-order.png" />
  18. <text>我的订单</text>
  19. </view>
  20. <view class="orders" bind:tap="onBuyGoods">
  21. <image src="./images/icon-buy.png" />
  22. <text>申请加入</text>
  23. </view>
  24. </view>
  25. </view>
  26. </scroll-view>
  27. </view>