index.wxml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <view class="container">
  2. <view class="scoreBox">
  3. <!-- 星星区域 -->
  4. <view class="lightBox">
  5. <image src="/static/{{score.myOverall>=10?'stars-1.png':'stars-2.png'}}" class="stars stars-1" mode="" />
  6. <image src="/static/{{score.myOverall>=30?'stars-1.png':'stars-2.png'}}" class="stars stars-2" mode="" />
  7. <image src="/static/{{score.myOverall>=50?'stars-1.png':'stars-2.png'}}" class="stars stars-3" mode="" />
  8. <image src="/static/{{score.myOverall>=70?'stars-1.png':'stars-2.png'}}" class="stars stars-4" mode="" />
  9. <image src="/static/{{score.myOverall>=90?'stars-1.png':'stars-2.png'}}" class="stars stars-5" mode="" />
  10. <image src="/static/light.png" class="light" mode="" />
  11. </view>
  12. <!-- 主体得分区域 -->
  13. <view class="score">
  14. <view class="avatarBox">
  15. <image src="{{userInfo.avatar}}" class="avatar" mode="" />
  16. </view>
  17. <view class="nickName">
  18. {{userInfo.nickName||userInfo.eid}}
  19. </view>
  20. <view class="totalScore">
  21. <text>综合得分:</text>
  22. <text class="num">{{score.myOverall}}</text>
  23. </view>
  24. <view class="progressBox">
  25. <view class="row">
  26. <view class="name">完整度</view>
  27. <progress class="progress" active percent='{{score.integrity}}' stroke-width="18"
  28. activeColor="#70D9FF" />
  29. <view class="scoreInfo">
  30. {{score.integrity}}/100
  31. </view>
  32. </view>
  33. <view class="row">
  34. <view class="name">正确率</view>
  35. <progress class="progress" active percent='{{score.accuracy}}' stroke-width="18"
  36. activeColor="#918EFD" />
  37. <view class="scoreInfo">
  38. {{score.accuracy}}/100
  39. </view>
  40. </view>
  41. <view class="row">
  42. <view class="name">流利度</view>
  43. <progress class="progress" active percent='{{score.fluency}}' stroke-width="18"
  44. activeColor="#FE9500" />
  45. <view class="scoreInfo">
  46. {{score.fluency}}/100
  47. </view>
  48. </view>
  49. <view class="row" wx:if="{{score.businessType==0}}">
  50. <view class="name">语调</view>
  51. <progress class="progress" active percent='{{score.tone}}' stroke-width="18"
  52. activeColor="#9BE74B " />
  53. <view class="scoreInfo">
  54. {{score.tone}}/100
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. <!-- 底部 -->
  61. <view class="footer">
  62. <view class="stBtn" bindtap="backReading">试听</view>
  63. <uploadFile readingType='{{readingType}}' activityId='{{activityId}}' bindtap="hideFooter" />
  64. </view>
  65. <canvas id='share' type="2d"> </canvas>
  66. </view>