123456789101112131415161718192021222324252627282930 |
- <wxs module="filter" src="../../../wxs/exam-fun.wxs"></wxs>
- <view class="cate-section">
- <navigator class="cate-item" url="/pages/exam/answerIndex/index?groupId={{groupId}}" >
- <i-icon type="other" size="40" color="#e96900a0" />
- <text>顺序答题</text>
- </navigator>
- <navigator class="cate-item" url="/pages/exam/collection/index?groupId={{groupId}}" >
- <i-icon type="close" size="40" color="#e96900a0" />
- <text>我的错题</text>
- </navigator>
- <navigator class="cate-item" url="/pages/exam/do/index?id={{groupId}}" >
- <i-icon type="shop_fill" size="40" color="#e96900a0" />
- <text>模拟考试</text>
- </navigator>
- </view>
- <view class="p20" >
- <i-cell-group i-class="my-group-margin">
- <i-cell title="{{item.title}}" wx:for="{{tableData}}"
- is-link
- url="/pages/exam/paper/paper?paperId={{item.paperId}}&title={{item.title}}"
- value="{{item.answerNumber}}"
- size="20">
- <i-icon slot="icon" type="activity" size="28" color="#80848f" />
- </i-cell>
- </i-cell-group>
- </view>
|