| | |
| | | <!--pages/bookServices/examination/questionOptions/index.wxml--> |
| | | <view |
| | | class="page-bottom" |
| | | style="color: {{isNight ? '#fff' : '#000'}}; background-color:{{isNight ? '#000' : '#fff'}}" |
| | | style="color: {{isNight ? '#fff' : '#000'}}; background-color:{{isNight ? '#202020' : '#fff'}}" |
| | | > |
| | | <view |
| | | class="li-option" |
| | | bind:tap="setCollect" |
| | | style="color: {{isNight ? '#fff' : '#000'}};" |
| | | > |
| | | <t-image |
| | | <image |
| | | src="{{ questionDataList[currentIndex].isCollect ? '/static/images/bookService/detail/collecting.png' : '/static/images/bookService/examination/collect.png'}}" |
| | | > |
| | | </t-image> |
| | | /> |
| | | 收藏 |
| | | </view> |
| | | <view |
| | |
| | | bind:tap="handlePopup" |
| | | style="color: {{isNight ? '#fff' : '#000'}};" |
| | | > |
| | | <t-image |
| | | src="/static/images/bookService/examination/questionCard.png" |
| | | ></t-image> |
| | | <image src="/static/images/bookService/examination/questionCard.png" /> |
| | | 答题卡 |
| | | </view> |
| | | <view |
| | |
| | | bind:tap="setUpBtn" |
| | | style="color: {{isNight ? '#fff' : '#000'}};" |
| | | > |
| | | <t-image src="/static/images/bookService/examination/setting.png"></t-image> |
| | | <image src="/static/images/bookService/examination/setting.png" /> |
| | | 设置 |
| | | </view> |
| | | <view |
| | |
| | | wx:if="{{answerType == 'option' || (answerType == 'mock' && !submitStatus)}}" |
| | | style="color: {{isNight ? '#fff' : '#000'}};" |
| | | > |
| | | <t-image src="/static/images/bookService/examination/reset.png"></t-image> |
| | | <image src="/static/images/bookService/examination/reset.png" /> |
| | | 重做 |
| | | </view> |
| | | <view class="bottom-submit"> |
| | |
| | | </view> |
| | | </view> |
| | | <view class="question-card-list"> |
| | | <view wx:for="{{cardList}}" class="card-box"> |
| | | <view wx:for="{{cardList}}" wx:key="index" class="card-box"> |
| | | <!-- 题型 --> |
| | | <view class="question-title"> |
| | | <text class="color-box"></text> |
| | |
| | | <t-slider |
| | | value="{{sliderValue}}" |
| | | theme="capsule" |
| | | step="{{10}}" |
| | | min="{{14}}" |
| | | max="{{100}}" |
| | | step="{{7}}" |
| | | bind:change="onChangeSlider" |
| | | /> |
| | | <!-- <slider |
| | | value="{{sliderValue}}" |
| | | min="{{10}}" |
| | | step="{{10}}" |
| | | activeColor="#ff6c00" |
| | | bind:chang="onChangeSlider" |
| | | /> --> |
| | | </view> |
| | | |
| | | <text>A+</text> |
| | |
| | | <view class="card {{radioItem == 'daytime' ? 'card--active' : ''}}"> |
| | | <t-radio value="daytime" icon="none" borderless> |
| | | <view class="radio-content" slot="content"> |
| | | <t-image |
| | | src="{{ radioItem == 'daytime' ? '/static/images/bookService/examination/rijian.png' : '/static/images/bookService/detail/notest.png'}}" |
| | | ></t-image> |
| | | <image |
| | | src="{{ radioItem == 'daytime' ? '/static/images/bookService/examination/rijian-click.png' : '/static/images/bookService/examination/rijian.png'}}" |
| | | /> |
| | | <text style="color: {{radioItem == 'daytime' ? '#fff':''}};" |
| | | >日间模式</text |
| | | > |
| | |
| | | <view class="card {{radioItem == 'night' ? 'card--active' : ''}}"> |
| | | <t-radio value="night" icon="none" borderless> |
| | | <view class="radio-content" slot="content"> |
| | | <t-image |
| | | src="{{ radioItem == 'night' ? '/static/images/bookService/detail/practice-icon.png' : '/static/images/bookService/examination/yejian.png'}}" |
| | | ></t-image> |
| | | <image |
| | | src="{{ radioItem == 'night' ? '/static/images/bookService/examination/yejian-click.png' : '/static/images/bookService/examination/yejian.png'}}" |
| | | /> |
| | | <text style="color: {{radioItem == 'night' ? '#fff':''}};" |
| | | >夜间模式</text |
| | | > |