12345678910111213141516171819202122 |
- <!--index.wxml-->
- <view class="wrapper">
- <view class='avatar flex-horizontal'>
- <image class="avatar-img" src="{{ student.avatar_url }}" />
- <text class="avatar-text">{{ student.nickname }}</text>
- </view>
- <zan-cell title="我的课程" class="userinfo-list__item" is-link url="/pages/mycourse/mycourse">
- <view class="userinfo-list__icon" slot="icon">
- <image mode="aspectFit" src="../../images/icon_kecheng01@2x.png" />
- </view>
- </zan-cell>
- <zan-cell title="我的学习时间" class="userinfo-list__item" is-link url="/pages/my-log/my-log">
- <view class="userinfo-list__icon" slot="icon">
- <image src="../../images/icon_xuexishijian@2x.png" />
- </view>
- </zan-cell>
- <zan-cell title="我要请假" class="userinfo-list__item" is-link url="/pages/apply-leave/apply-leave">
- <view class="userinfo-list__icon" slot="icon">
- <image src="../../images/icon_qingjia@2x.png" />
- </view>
- </zan-cell>
- </view>
|