mys.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--pages/my/my.wxml-->
  2. <template name="mys">
  3. <view class="nav">
  4. <block wx:for="{{myData.nav}}" wx:key="{{index}}">
  5. <view class="{{index == myData.myInd ? 'slecte-nav' : ''}}" bindtap="myChoice" data-index="{{index}}">{{item}}</view>
  6. </block>
  7. </view>
  8. <scroll-view class="scroll-view" scroll-y>
  9. <swiper current="{{myData.myInd}}" bindchange="mySlide" style="height: 100%;">
  10. <swiper-item>
  11. <view class="my-information">
  12. <view class="information-item">
  13. <image class="head" src=""></image>
  14. <view class="set-name">
  15. <text class="name">阿杰</text>
  16. <text bindtap="setName">点击修改头像和名字</text>
  17. </view>
  18. </view>
  19. <view class="shaiwa">如何使用电视上的晒娃功能</view>
  20. <view class="mengwa">萌娃相册</view>
  21. </view>
  22. </swiper-item>
  23. <swiper-item>
  24. <view class="my-collection">
  25. <view class="collection-item">
  26. 收藏
  27. </view>
  28. </view>
  29. </swiper-item>
  30. <swiper-item>
  31. 历史
  32. </swiper-item>
  33. </swiper>
  34. </scroll-view>
  35. </template>