Browse Source

历史小bug修复

刘洋 10 months ago
parent
commit
2d9f018846
1 changed files with 7 additions and 3 deletions
  1. 7 3
      src/modules/quality/subjective-check/index.vue

+ 7 - 3
src/modules/quality/subjective-check/index.vue

@@ -35,7 +35,13 @@
           <p v-if="currentSubjectiveCheck" class="absolute mark-score">{{ currentSubjectiveCheck.markScore }}</p>
           <!-- <right-button class="next-button" @click="checkNext" /> -->
           <div class="flex-1 p-base scroll-auto mark-content-paper img-wrap">
-            <img :src="dataUrl" alt="" class="paper-img" :style="{ 'background-color': frontColor }" />
+            <img
+              v-if="!!currentSubjectiveCheck"
+              :src="dataUrl"
+              alt=""
+              class="paper-img"
+              :style="{ 'background-color': frontColor }"
+            />
           </div>
           <!-- <scoring-panel-with-confirm
           :id="currentSubjectiveCheck?.taskId"
@@ -53,8 +59,6 @@
             v-model:score="modelScore"
             :main-number="currentSubjectiveCheck?.mainNumber"
             :subject-code="formModel.subjectCode"
-            modal
-            :auto-visible="false"
             @submit="onSubmit"
           ></scoring-panel-with-confirm>
         </pane>