xiaofei 1 vuosi sitten
vanhempi
commit
0209dde5b0

+ 1 - 0
src/modules/mark/components/markDetail/MarkDetailArbitration.vue

@@ -101,6 +101,7 @@
           <template slot-scope="scope">
             <el-button
               class="btn-primary"
+              :disabled="scope.row.status === 'MARKED'"
               type="text"
               @click="toDone(scope.row)"
               >处理</el-button

+ 1 - 0
src/modules/mark/components/markDetail/MarkDetailIssue.vue

@@ -121,6 +121,7 @@
           <template slot-scope="scope">
             <el-button
               class="btn-primary"
+              :disabled="scope.row.status === 'BACK'"
               type="text"
               @click="toSimpleReset(scope.row)"
               >处理</el-button

+ 1 - 1
src/modules/mark/components/report/ReportSummary.vue

@@ -48,7 +48,7 @@
           <th>占比(%)</th>
         </tr>
         <tr v-for="(item, ind) in scoreRange" :key="ind">
-          <td>{{ item.minScore }}-</td>
+          <td>{{ item.minScore }}-{{ item.maxScore }}</td>
           <td>{{ item.studentCount }}</td>
           <td>{{ item.rate }}</td>
         </tr>