From 3b22db15cfc9f3704c4654df9d694ebfc16875bf Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期二, 09 四月 2024 18:46:28 +0800 Subject: [PATCH] 图书详情,答题器修改 --- packageBookService/pages/bookServices/examination/examination.wxml | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/packageBookService/pages/bookServices/examination/examination.wxml b/packageBookService/pages/bookServices/examination/examination.wxml index 3d3051b..1770099 100644 --- a/packageBookService/pages/bookServices/examination/examination.wxml +++ b/packageBookService/pages/bookServices/examination/examination.wxml @@ -54,6 +54,7 @@ bind:onChangeRadio="onChangeRadio" bind:onChangeInput="onChangeInput" bind:changeSwiper="changeSwiper" + bind:viewParsing="viewParsing" ></question-list> <view class="lodaing-box" wx:if="{{loading}}"> <t-loading @@ -66,7 +67,11 @@ <!-- 搴曢儴鍖哄煙--> -<view class="page-bottom" style="background-color:{{isNight ? '#202020' : ''}}"> +<view + class="page-bottom" + style="background-color:{{isNight ? '#202020' : ''}}" + wx:if="{{answerType !== 'errorQuestion' || (answerType == 'errorQuestion' && !loading)}}" +> <question-options id="question-options" isNight="{{isNight}}" @@ -87,5 +92,14 @@ bind:goQuestion="goQuestion" bind:changeBGColor="changeBGColor" bind:onChangeSlider="onChangeSlider" + bind:changeLoadingState="changeLoadingState" ></question-options> </view> + +<page-container + wx:if="{{(answerType == 'mock' || answerType == 'option') && !submitStatus}}" + show="{{true}}" + duration="{{false}}" + overlay="{{false}}" + bind:beforeleave="beforeleave" +></page-container> -- Gitblit v1.9.1