group.wxml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <wxs module="filter" src="../../../wxs/exam-fun.wxs"></wxs>
  2. <view class="cate-section">
  3. <navigator class="cate-item" url="/pages/exam/answerIndex/index?groupId={{groupId}}" >
  4. <i-icon type="other" size="40" color="#e96900a0" />
  5. <text>顺序答题</text>
  6. </navigator>
  7. <navigator class="cate-item" url="/pages/exam/collection/index?groupId={{groupId}}" >
  8. <i-icon type="close" size="40" color="#e96900a0" />
  9. <text>我的错题</text>
  10. </navigator>
  11. <navigator class="cate-item" url="/pages/exam/do/index?id={{groupId}}" >
  12. <i-icon type="shop_fill" size="40" color="#e96900a0" />
  13. <text>模拟考试</text>
  14. </navigator>
  15. </view>
  16. <view class="p20" >
  17. <i-cell-group i-class="my-group-margin">
  18. <i-cell title="{{item.title}}" wx:for="{{tableData}}"
  19. is-link
  20. url="/pages/exam/paper/paper?paperId={{item.paperId}}&title={{item.title}}"
  21. value="{{item.answerNumber}}"
  22. size="20">
  23. <i-icon slot="icon" type="activity" size="28" color="#80848f" />
  24. </i-cell>
  25. </i-cell-group>
  26. </view>