From 7ea1bc543cd9ad231122d3882ee917d93bb975dc Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期一, 25 三月 2024 09:49:52 +0800
Subject: [PATCH] 图书详情,答题器bug修改

---
 packageBookService/pages/bookServices/examination/questionOptions/index.wxml |   40 +++++++++++++++++++++++-----------------
 1 files changed, 23 insertions(+), 17 deletions(-)

diff --git a/packageBookService/pages/bookServices/examination/questionOptions/index.wxml b/packageBookService/pages/bookServices/examination/questionOptions/index.wxml
index 69c72da..af3583d 100644
--- a/packageBookService/pages/bookServices/examination/questionOptions/index.wxml
+++ b/packageBookService/pages/bookServices/examination/questionOptions/index.wxml
@@ -1,17 +1,16 @@
 <!--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
@@ -19,9 +18,7 @@
     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
@@ -29,7 +26,7 @@
     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
@@ -38,7 +35,7 @@
     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">
@@ -74,7 +71,7 @@
       </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>
@@ -115,9 +112,18 @@
         <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>
@@ -134,9 +140,9 @@
         <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
               >
@@ -146,9 +152,9 @@
         <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
               >

--
Gitblit v1.9.1