123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template name="my">
- <view class='mine-container'>
- <view class='mine-center'>
- <view class='mine-info'>
- <view class='mine-bg'>
- <view class='mine-avatar'>
- <image class='avatar-image' src='{{ myData.user.avatar }}'></image>
- </view>
- </view>
- <view class='mine-edit' bindtap='toMyEdit' data-title='{{ myData.title }}'>
- <view class='edit-image'>
- <image class='edit-img' src='../../static/image/_edit.png'></image>
- </view>
- <view class='edit-text'>修改个人资料</view>
- </view>
- </view>
- <view class='mine-detail'>
- <text class='mine-title'>{{ myData.user.wechatName }}</text>
- <view class='mine-address'>{{ myData.schoolCity }},{{ myData.schoolName }}</view>
- <view class='mine-line'></view>
- </view>
- <view class='mine-category'>
- <view class='play-count'>
- <view>3232</view>
- <view class='border-right'>
- <view class='play-img'>
- <image src='../../static/image/play.png'></image>
- </view>
- <text>播放量</text>
- </view>
- </view>
- <view class='follow-count'>
- <view class='color'>5200</view>
- <view class='border-right'>
- <view class='play-img'>
- <image src='../../static/image/follow.png'></image>
- </view>
- <text>关注</text>
- </view>
- </view>
- <view class='point-count'>
- <view class='color'>300</view>
- <view class='border-right'>
- <view class='play-img'>
- <image src='../../static/image/point.png'></image>
- </view>
- <text>赞</text>
- </view>
- </view>
- <view class='flower-count'>
- <view class='color'>100</view>
- <view class='border-right'>
- <view class='play-img'>
- <image src='../../static/image/flower.png'></image>
- </view>
- <text>红花</text>
- </view>
- </view>
- </view>
- <view class='wallet-module' bindtap='toMyWallet' data-title='{{ myData.wallet }}'>
- <view class='wallet-center'>
- <view class='wallet-left'>
- <view class='icon-box'>
- <image src='../../static/image/wallet.png'></image>
- </view>
- <text>钱包</text>
- </view>
- <view class='wallet-right'>
- <image src='../../static/image/to.png'></image>
- </view>
- </view>
- </view>
- <view class='course-module' bindtap='toMyCourse' data-title='{{ myData.course }}'>
- <view class='wallet-center'>
- <view class='wallet-left'>
- <view class='icon-box'>
- <image src='../../static/image/courses.png'></image>
- </view>
- <text>我的课程</text>
- </view>
- <view class='wallet-right'>
- <image src='../../static/image/to.png'></image>
- </view>
- </view>
- </view>
- <view class='group-module'>
- <view class='wallet-center'>
- <view class='wallet-left'>
- <view class='icon-box'>
- <image src='../../static/image/group.png'></image>
- </view>
- <text>我的拼团</text>
- </view>
- <view class='wallet-right'>
- <image src='../../static/image/to.png'></image>
- </view>
- </view>
- </view>
- <view class='reading-module' bindtap='toMyRead' data-title='{{ myData.read }}'>
- <view class='wallet-center'>
- <view class='wallet-left'>
- <view class='icon-box'>
- <image src='../../static/image/record.png'></image>
- </view>
- <text>我的朗读</text>
- </view>
- <view class='wallet-right'>
- <image src='../../static/image/to.png'></image>
- </view>
- </view>
- </view>
- <view class='keep-module' bindtap='toMyKeep' data-title='{{ myData.keep }}'>
- <view class='wallet-center'>
- <view class='wallet-left'>
- <view class='icon-box'>
- <image src='../../static/image/keep.png'></image>
- </view>
- <text>我的收藏</text>
- </view>
- <view class='wallet-right'>
- <image src='../../static/image/to.png'></image>
- </view>
- </view>
- </view>
- <view class='myfollow-module' bindtap='toMyConcern' data-title='{{ myData.concern }}'>
- <view class='wallet-center'>
- <view class='wallet-left'>
- <view class='icon-box'>
- <image src='../../static/image/myfollow.png'></image>
- </view>
- <text>我的关注</text>
- </view>
- <view class='wallet-right'>
- <image src='../../static/image/to.png'></image>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
|