12345678910111213141516171819202122232425262728 |
- <!--pages/myInfo/myInfo.wxml-->
- <view class="wrapper">
- <view class="top-index">
- <view class="top-title">
- <image src="../../images/zly.jpeg"></image>
- <text class="top-nick">你好</text>
- </view>
- <text class="top-text" bindtap="exitLogin">退出账号</text>
- </view>
- <view class="infoList">
- <text class="infoList-text" bindtap="myAppointment">我的预约</text>
- <text class="infoList-text" bindtap="appointment">我被预约</text>
- <text class="infoList-text" bindtap="myLessons">我的课程</text>
- <text class="infoList-text" bindtap="myNeed">我的需求</text>
- <text class="infoList-text" bindtap="myTeacher">我收藏的老师</text>
- <text class="infoList-text" bindtap="myStudent">我收藏的学生</text>
- <text class="infoList-text" bindtap="myComplaint">我的投诉</text>
- <text class="infoList-text" bindtap="mySuggest">我的建议</text>
- <text class="infoList-text" bindtap="refund">退款记录</text>
- <text class="infoList-text" bindtap="teacherAuthentication">老师认证</text>
- <text class="infoList-text" bindtap="delete">删除账号</text>
- </view>
- <view class="recommendMoney">
- <text bindtap="cashBack">推荐返现</text>
- </view>
- </view>
|