1234567891011121314151617181920212223242526272829303132333435 |
- <!--pages/my/my.wxml-->
- <template name="mys">
- <view class="nav">
- <block wx:for="{{myData.nav}}" wx:key="{{index}}">
- <view class="{{index == myData.myInd ? 'slecte-nav' : ''}}" bindtap="myChoice" data-index="{{index}}">{{item}}</view>
- </block>
- </view>
- <scroll-view class="scroll-view" scroll-y>
- <swiper current="{{myData.myInd}}" bindchange="mySlide" style="height: 100%;">
- <swiper-item>
- <view class="my-information">
- <view class="information-item">
- <image class="head" src=""></image>
- <view class="set-name">
- <text class="name">阿杰</text>
- <text bindtap="setName">点击修改头像和名字</text>
- </view>
- </view>
- <view class="shaiwa">如何使用电视上的晒娃功能</view>
- <view class="mengwa">萌娃相册</view>
- </view>
- </swiper-item>
- <swiper-item>
- <view class="my-collection">
- <view class="collection-item">
- 收藏
- </view>
- </view>
- </swiper-item>
- <swiper-item>
- 历史
- </swiper-item>
- </swiper>
- </scroll-view>
- </template>
|