index.wxml 865 B

12345678910111213141516171819202122232425
  1. <view
  2. class='home acea-row row-middle {{homeActive==true?"on":""}}'
  3. style=" top:{{top*2}}rpx;"
  4. catchtouchmove="setTouchMove"
  5. >
  6. <view class='homeCon acea-row row-between-wrapper {{homeActive==true?"on":""}}'>
  7. <navigator
  8. hover-class="none"
  9. url="/pages/index/index"
  10. open-type="switchTab"
  11. class="iconfont icon-shouye-xianxing"
  12. ></navigator>
  13. <navigator
  14. hover-class="none"
  15. url="/pages/order_addcart/order_addcart"
  16. open-type="switchTab"
  17. class="iconfont icon-caigou-xianxing"
  18. ></navigator>
  19. <navigator hover-class="none" url="/pages/user/user" open-type="switchTab" class="iconfont icon-yonghu1">
  20. </navigator>
  21. </view>
  22. <view class='pictrue {{homeActive==true?"on":""}}' bindtap="open">
  23. <image src='{{homeActive==false?"/images/close.gif":"/images/open.gif"}}'></image>
  24. </view>
  25. </view>