闫增涛
2024-03-11 f4425543db1c8db8c47a34c53ef477e72cfe318e
1
2
3
4
5
6
7
8
9
10
11
12
13
<!--pages/bookServices/examination/questionList/index.wxml-->
<view class="question-list">
  <!-- 题型title -->
  <view class="question-title">
    <text class="title-name">单选题</text><text class="title-score">(每题2分)</text>
  </view>
  <!-- 题目列表 -->
  <swiper>
    <swiper-item wx:for="{{questionList}}">
      <text>{{item.stem.stemTxt}}</text>
    </swiper-item>
  </swiper>
</view>