teacher.wxml 800 B

123456789101112131415161718192021222324
  1. <view class="container">
  2. <van-image width="750rpx" height="300rpx" src="/images/ic_teacher-bg.png" class="container-bg"/>
  3. <view class="teacher-bg">
  4. <view class="teacher-name">{{info.teacherName}}</view>
  5. <edu-mark text="个人简介" custom-class="tag"/>
  6. <view class="content">
  7. {{info.teacherProfile}}
  8. </view>
  9. <edu-mark text="研究方向" custom-class="tag"/>
  10. <view class="content">
  11. {{info.fieldsName}}
  12. </view>
  13. <edu-mark text="荣誉称号" custom-class="tag"/>
  14. <view class="content">
  15. {{info.honoraryTitle || ''}}
  16. </view>
  17. </view>
  18. <view class="teacher-avater-bg">
  19. <van-image width="129rpx" height="129rpx" round src="{{info.photoUrl}}"/>
  20. </view>
  21. </view>