index.wxml 3.6 KB

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